Scan Report
0 /100
taskboard-cli
Lightweight task management CLI for multi-agent workflows. SQLite backend, no external dependencies or credentials.
纯本地 SQLite 任务管理 CLI,无网络调用、无凭证访问、无外部依赖,代码行为与文档声明完全一致。
Safe to install
该技能安全可信,可直接使用。hooks 机制仅打印指令文本,由调用方决定执行,无自动执行风险。
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | WRITE | WRITE | ✓ Aligned | SKILL.md:scripts/taskboard.py create/read/write SQLite DB |
| Network | NONE | NONE | — | taskboard.py 全代码扫描:无 urllib/requests/httpx/socket 等网络调用 |
| Environment | NONE | NONE | — | taskboard.py 仅用 os.path.Path,无 os.environ 敏感访问 |
| Shell | NONE | NONE | — | taskboard.py 无 subprocess/os.system/popen 调用 |
| Database | WRITE | WRITE | ✓ Aligned | taskboard.py:43 使用 sqlite3 读写本地 DB |
1 findings
Medium External URL 外部 URL
https://discord.com/api/webhooks/... references/webhook-integration.md:54 File Tree
6 files · 29.6 KB · 935 lines Python 1f · 496L
Markdown 4f · 394L
SQL 1f · 45L
├─
▾
references
│ ├─
github-backend.md
Markdown
│ ├─
taskboard-setup.md
Markdown
│ └─
webhook-integration.md
Markdown
├─
▾
scripts
│ ├─
schema.sql
SQL
│ └─
taskboard.py
Python
└─
SKILL.md
Markdown
Security Positives
✓ 无网络调用,完全离线运行
✓ 无凭证或环境变量访问
✓ 无 shell/subprocess 执行
✓ 仅使用 Python 标准库(sqlite3、argparse、json、pathlib),无第三方依赖
✓ hooks 机制仅打印指令到 stdout,无自动执行
✓ 代码结构清晰,496 行易于审查
✓ schema.sql 完整定义表结构,无隐藏字段
✓ references/ 文档仅提供参考集成方案,不在发布包中自动执行