扫描报告
5 /100
novel-writer
章节正文生成器 - 根据章节大纲、Voice Profile 和角色档案构建 LLM 提示词,用于生成章节正文
A legitimate novel writing assistant that reads local configuration files and generates LLM prompts without any network access or credential handling.
可以安装
No action required. This skill is safe to use.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | READ | READ | ✓ 一致 | write_chapter.py:62-90 - Reads style.yml, characters/*.yml, and outline files on… |
| 网络访问 | NONE | NONE | — | No network libraries imported or used |
| 命令执行 | NONE | NONE | — | No subprocess or os.system calls found |
| 环境变量 | NONE | NONE | — | No os.environ access |
| 技能调用 | NONE | NONE | — | Standalone script, no skill invocation |
| 剪贴板 | NONE | NONE | — | No clipboard operations |
| 浏览器 | NONE | NONE | — | No browser automation |
| 数据库 | NONE | NONE | — | No database connections |
目录结构
3 文件 · 19.2 KB · 657 行 Python 1f · 408L
Markdown 1f · 247L
Text 1f · 2L
├─
▾
scripts
│ ├─
requirements.txt
Text
│ └─
write_chapter.py
Python
└─
SKILL.md
Markdown
依赖分析 2 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
rich | * | pip | 否 | Version not pinned but a widely-used, trusted library |
PyYAML | * | pip | 否 | Version not pinned but a widely-used, trusted library |
安全亮点
✓ Documentation explicitly states 'no network calls, no credentials, runs locally'
✓ All declared capabilities match actual implementation
✓ Uses only standard, well-known libraries (rich, PyYAML)
✓ No credential harvesting, no data exfiltration, no obfuscation
✓ Clean code structure without suspicious patterns
✓ Proper exception handling throughout