AI Security Review
scanned 22h ago · by lpm-firewall-aiNo confirmed malicious attack surface. Sensitive filesystem, subprocess, SSH, Docker, and network behavior is tied to explicit deployment/demo CLI commands for an infrastructure tool.
Decision evidence
public snapshot- package.json has no npm lifecycle hooks; only bin intentic -> dist/cli.js
- dist/cli.js only invokes stricli app routing; no import-time install mutation
- dist/init/init.js scaffolds intent/desired-state/app dirs and runs git/pnpm only when user invokes init
- dist/resolve/resolve.js dynamically imports user config and reads Cloudflare token for package-aligned zone discovery
- dist/apply/apply.command.js reconciles user artifact, writes status/access files, and posts optional user-provided Discord webhook
- dist/demo.js Docker/SSH/Cloudflare actions are demo-mode runtime behavior, not install-time execution
Source & flagged code
4 flagged · loading sourcePackage source references child process execution.
dist/init/scaffold-app.jsView on unpkg · L1Package source references dynamic require/import behavior.
dist/resolve/resolve.jsView on unpkg · L6A single source file combines environment access, network access, and code or shell execution; review context before blocking.
dist/demo.jsView on unpkg · L29Source combines command execution, command-output handling, and outbound requests; review data flow before blocking.
dist/demo.jsView on unpkg · L29