Scan Report
5 /100
soul-architect
Creates STYLE_MANIFESTO persona source code for content-engine
Legitimate persona synthesis tool with no malicious indicators - only creates local documentation files using standard library Python.
Safe to install
No action required. This skill is safe to use.
Findings 1 items
| Severity | Finding | Location |
|---|---|---|
| Low | Missing allowed-tools declaration Doc Mismatch | SKILL.md:1 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | WRITE | ✓ Aligned | scripts/synthesize.py:27 - creates personas/{name}/ directory and STYLE_MANIFEST… |
| Shell | NONE | NONE | — | No subprocess or shell execution found |
| Network | NONE | NONE | — | No network requests in code |
| Environment | NONE | NONE | — | No os.environ access except standard argparse |
| credential | NONE | NONE | — | No credential access |
File Tree
3 files · 8.5 KB · 239 lines Markdown 1f · 141L
Python 1f · 65L
Ignore 1f · 33L
├─
▾
scripts
│ └─
synthesize.py
Python
├─
.gitignore
Ignore
└─
SKILL.md
Markdown
Security Positives
✓ Uses only Python standard library (os, argparse, pathlib) - no third-party dependencies
✓ File writes are scoped to personas/{name}/ directory only - no broad filesystem access
✓ No network calls or external communications
✓ No credential harvesting or environment variable abuse
✓ No obfuscation, base64 encoding, or eval() usage
✓ No shell command execution
✓ Logic is straightforward and auditable