Scan Report
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.
Safe to install
No action required. This skill is safe to use.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | READ | ✓ Aligned | write_chapter.py:62-90 - Reads style.yml, characters/*.yml, and outline files on… |
| Network | NONE | NONE | — | No network libraries imported or used |
| Shell | NONE | NONE | — | No subprocess or os.system calls found |
| Environment | NONE | NONE | — | No os.environ access |
| Skill Invoke | NONE | NONE | — | Standalone script, no skill invocation |
| Clipboard | NONE | NONE | — | No clipboard operations |
| Browser | NONE | NONE | — | No browser automation |
| Database | NONE | NONE | — | No database connections |
File Tree
3 files · 19.2 KB · 657 lines Python 1f · 408L
Markdown 1f · 247L
Text 1f · 2L
├─
▾
scripts
│ ├─
requirements.txt
Text
│ └─
write_chapter.py
Python
└─
SKILL.md
Markdown
Dependencies 2 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
rich | * | pip | No | Version not pinned but a widely-used, trusted library |
PyYAML | * | pip | No | Version not pinned but a widely-used, trusted library |
Security Positives
✓ 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