AI Security Review
scanned 9d ago · by lpm-firewall-aiNo confirmed malicious attack surface was found. The package exposes powerful agent runtime capabilities, but they are package-aligned and activated by explicit CLI/daemon/agent use rather than installation or import.
Decision evidence
public snapshot- dist/runtime/agent/bootstrap.js defines user/agent-invoked shell_run using /bin/sh and returns stdout/stderr.
- dist/runtime/agent/bootstrap.js defines http_request that can inject vault credentials into outbound requests.
- dist/runtime/supervisor/bootstrap.js can spawn bundled connector gateway processes with vault-derived env vars.
- dist/runtime/install/upgrade-runner.js can run npm install -g and restart the daemon when upgrade flow is triggered.
- package.json has no install/postinstall/preinstall lifecycle hooks; bin is explicit 2200 CLI.
- dist/index.js only reads package.json to export VERSION.
- Dangerous primitives are part of an advertised always-on agent runtime and are gated by CLI/daemon/agent task flows, not import/install time.
- Credential code stores secrets in encrypted vault files and redacts injected credential values from http_request responses.
- Network endpoints are package-aligned LLM/search/platform APIs rather than hardcoded exfiltration hosts.
Source & flagged code
6 flagged · loading sourcePackage source references child process execution.
dist/runtime/install/upgrade-runner.jsView on unpkg · L1Source executes local commands and sends command output to an external endpoint.
dist/runtime/agent/bootstrap.jsView on unpkg · L1Package source references weak cryptographic algorithms.
dist/runtime/agent/bootstrap.jsView on unpkg · L1Source launches a detached bundled service that exposes a broad-bound HTTP listener.
dist/runtime/supervisor/bootstrap.jsView on unpkg · L3A package entrypoint or install-time lifecycle script reaches a source file with blocking dangerous behavior.
dist/cli/main.jsView on unpkg · L6Package contains source files above the static scanner size ceiling.
dist/connectors/discord/gateway.cjsView on unpkg