扫描报告
5 /100
novel-outliner
从小说大纲自动拆解逐章prompt。支持纯文本、JSON、Markdown格式大纲,一键生成每章写作指令。
Legitimate novel outline parsing tool with no malicious behavior detected.
可以安装
Skill is safe to use. No security concerns identified.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | READ,WRITE | READ,WRITE | ✓ 一致 | SKILL.md declares CLI usage; parse_outline.py reads --outline and writes to --ou… |
| 网络访问 | NONE | NONE | — | No network requests in code |
| 命令执行 | NONE | NONE | — | No subprocess or shell execution calls |
目录结构
2 文件 · 4.0 KB · 111 行 Python 1f · 80L
Markdown 1f · 31L
├─
▾
scripts
│ └─
parse_outline.py
Python
└─
SKILL.md
Markdown
安全亮点
✓ Uses only Python standard library (argparse, json, os, re, sys) - no external dependencies
✓ Documentation accurately describes functionality with no shadow features
✓ No network requests, credential access, or data exfiltration
✓ Simple, straightforward CLI tool with no obfuscation
✓ Filename sanitization prevents path traversal (line 48: re.sub removes special chars)
✓ Proper file encoding handling (UTF-8)