Scan Report
5 /100
node-auto-debugger
Scan Node.js/Express/Next.js projects for bugs, security issues, and anti-patterns
Node.js 自动调试器工具,扫描项目代码检查 bug、安全问题和配置完整性,功能与声明完全一致,无恶意行为。
Safe to install
可直接使用。工具仅扫描本地项目文件并生成报告,npm build 仅在用户显式传递 --build 标志时执行。
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | READ | ✓ Aligned | scripts/auto-debug.js:32-41 findFiles() |
| Filesystem | WRITE | WRITE | ✓ Aligned | scripts/auto-debug.js:320 fs.writeFileSync() |
| Shell | WRITE | WRITE | ✓ Aligned | scripts/auto-debug.js:195 spawnSync('npm', ['run', 'build']) - 仅 --build 时 |
| Network | NONE | NONE | — | 无网络请求代码 |
File Tree
2 files · 16.8 KB · 415 lines JavaScript 1f · 335L
Markdown 1f · 80L
├─
▾
scripts
│ └─
auto-debug.js
JavaScript
└─
SKILL.md
Markdown
Security Positives
✓ 功能声明与代码实现完全一致
✓ npm build 仅在用户显式传递 --build 标志时执行
✓ 仅扫描本地项目,无外部网络通信
✓ 不外传任何敏感信息
✓ 排除 node_modules/.next/dist 等目录,避免误报
✓ 报告仅写入项目内的 AUTO-DEBUG-REPORT.md
✓ 错误处理完善,spawnSync 有 timeout 和 stdio 控制