扫描报告
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.
可以安装
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.
安全发现 2 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Template files missing from package 文档欺骗 | templates/ |
| 低危 | Undocumented channel directories created 文档欺骗 | init_memory.py:67 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | WRITE | WRITE | ✓ 一致 | SKILL.md: 'This skill creates files in your workspace' + init_memory.py creates … |
| 网络访问 | NONE | NONE | — | init_memory.py uses only stdlib; no urllib, requests, socket, or HTTP calls |
| 命令执行 | NONE | NONE | — | init_memory.py uses no subprocess, os.system, or shell commands |
| 环境变量 | NONE | NONE | — | No os.environ iteration or credential access |
| 数据库 | NONE | NONE | — | No database access |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser automation |
| 技能调用 | NONE | NONE | — | No cross-skill invocation |
6 项发现
中危 外部 URL 外部 URL
https://ko-fi.com/theshadowrose README.md:75 中危 外部 URL 外部 URL
https://x.com/TheShadowyRose README.md:75 中危 外部 URL 外部 URL
https://www.fiverr.com/s/jjmlZ0v README.md:77 中危 外部 URL 外部 URL
https://shadowyrose.gumroad.com SKILL.md:244 中危 外部 URL 外部 URL
https://twitter.com/TheShadowyRose SKILL.md:245 提示 邮箱 邮箱地址
[email protected] SKILL.md:242 目录结构
12 文件 · 33.0 KB · 959 行 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
安全亮点
✓ 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