可信 — 风险评分 5/100
上次扫描:1 天前 重新扫描
5 /100
chapter-outliner
章节大纲生成器 - 基于15节拍系统生成小说章节大纲
Chapter Outliner is a benign creative writing tool with no malicious behavior, credential access, network calls, or hidden functionality.
技能名称chapter-outliner
分析耗时32.8s
引擎pi
可以安装
This skill is safe for use. Consider pinning dependencies to versions for reproducible builds.

安全发现 1 项

严重性 安全发现 位置
低危
Dependencies not version-pinned 供应链
requirements.txt lists 'rich' and 'PyYAML' without version constraints. This could lead to unexpected behavior if unpinned latest versions introduce breaking changes.
rich
PyYAML
→ Pin to known-good versions, e.g. 'rich>=13.0.0' and 'PyYAML>=6.0'
scripts/requirements.txt:1
资源类型声明权限推断权限状态证据
文件系统 READ READ ✓ 一致 SKILL.md declares book-dir parameter; code reads outline.md, style.yml, and char…
文件系统 WRITE WRITE ✓ 一致 SKILL.md declares --output parameter; code writes markdown output to specified p…
网络访问 NONE NONE No network calls in generate_outline.py; no requests, urllib, or socket usage
命令执行 NONE NONE No subprocess, os.system, or shell command execution in code
环境变量 NONE NONE No os.environ access; all parameters come from CLI args
技能调用 NONE NONE No skill invocation chain; standalone script
剪贴板 NONE NONE No clipboard access
浏览器 NONE NONE No browser or web automation
数据库 NONE NONE No database access

目录结构

3 文件 · 19.3 KB · 635 行
Python 1f · 465L Markdown 1f · 168L Text 1f · 2L
├─ 📁 scripts
│ ├─ 🐍 generate_outline.py Python 465L · 15.3 KB
│ └─ 📄 requirements.txt Text 2L · 12 B
└─ 📝 SKILL.md Markdown 168L · 4.0 KB

依赖分析 2 项

包名版本来源已知漏洞备注
rich * pip Version not pinned — minor supply chain risk
PyYAML * pip Version not pinned — minor supply chain risk

安全亮点

✓ No network requests — offline-only operation
✓ No credential or sensitive file access
✓ No subprocess or shell execution
✓ No obfuscation, base64, or eval patterns
✓ Documentation fully matches code behavior — no doc-to-code mismatch
✓ Uses yaml.safe_load() — safe YAML parsing
✓ File writes are user-controlled via explicit --output flag
✓ Input paths are validated with .exists() and .is_dir() checks
✓ Clean error handling with user-friendly messages