Scan Report
18 /100
Agent Memory — Persistent Workspace Memory System
Three-tier memory architecture for AI agents (long-term owner namespace, daily logs, session handoff) with cross-channel isolation. One command sets up the complete file structure.
A benign workspace memory initialization tool with no malicious behavior. Two minor documentation gaps exist: referenced template files are missing from the package, and undocumented channel directories are created. Neither constitutes a security risk.
Safe to install
Approve for use. The missing template files will cause init_memory.py to print warnings but it continues gracefully. Consider verifying the full template package is delivered.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | Template files missing from package Doc Mismatch | templates/ |
| Low | Undocumented channel directories created Doc Mismatch | init_memory.py:67 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | WRITE | WRITE | ✓ Aligned | SKILL.md: 'This skill creates files in your workspace' + init_memory.py creates … |
| Network | NONE | NONE | — | init_memory.py uses only stdlib; no urllib, requests, socket, or HTTP calls |
| Shell | NONE | NONE | — | init_memory.py uses no subprocess, os.system, or shell commands |
| Environment | NONE | NONE | — | No os.environ iteration or credential access |
| Database | NONE | NONE | — | No database access |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser automation |
| Skill Invoke | NONE | NONE | — | No cross-skill invocation |
6 findings
Medium External URL 外部 URL
https://ko-fi.com/theshadowrose README.md:75 Medium External URL 外部 URL
https://x.com/TheShadowyRose README.md:75 Medium External URL 外部 URL
https://www.fiverr.com/s/jjmlZ0v README.md:77 Medium External URL 外部 URL
https://shadowyrose.gumroad.com SKILL.md:244 Medium External URL 外部 URL
https://twitter.com/TheShadowyRose SKILL.md:245 Info Email 邮箱地址
[email protected] SKILL.md:242 File Tree
12 files · 33.0 KB · 959 lines Markdown 11f · 743L
Python 1f · 216L
├─
▾
templates
│ └─
▾
owner
│ ├─
decisions.md
Markdown
│ ├─
identity.md
Markdown
│ ├─
learnings.md
Markdown
│ ├─
people.md
Markdown
│ ├─
preferences.md
Markdown
│ └─
projects.md
Markdown
├─
init_memory.py
Python
├─
LICENSE.md
Markdown
├─
LIMITATIONS.md
Markdown
├─
QUICKSTART.md
Markdown
├─
README.md
Markdown
└─
SKILL.md
Markdown
Security Positives
✓ Uses Python stdlib only — no external dependencies, no pip install, no supply chain risk
✓ No network calls whatsoever — no data exfiltration possible
✓ No credential or sensitive file access (~/.ssh, ~/.aws, .env)
✓ No shell execution, subprocess, or command injection vectors
✓ No obfuscation (no base64, no eval, no atob)
✓ SKILL.md explicitly declares 'no code execution, no network calls, no external dependencies' — accurate
✓ Output is restricted to the user-specified workspace directory only
✓ Security Note in SKILL.md accurately describes the tool's behavior
✓ Open source MIT license with clear authorship