Scan Report
0 /100
hui-yi
Manage a file-based cold-memory archive under memory/cold/
This is a straightforward file-based note management skill with no malicious behavior detected. All scripts operate exclusively on the declared memory/cold/ directory using only Python standard library.
Safe to install
This skill is safe to use. No action required.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | READ | ✓ Aligned | All scripts (cool.py, decay.py, rebuild.py, search.py) only read/write to memory… |
| Filesystem | WRITE | WRITE | ✓ Aligned | rebuild.py writes index.md, tags.json; decay.py modifies note confidence; cool.p… |
| Network | NONE | NONE | — | No socket, urllib, requests, or HTTP client imports in any script |
| Shell | NONE | NONE | — | No subprocess, os.system, os.popen, or shell execution found |
| Environment | NONE | NONE | — | No os.environ iteration or credential key access |
| Skill Invoke | NONE | NONE | — | No skill invocation mechanism present |
| Clipboard | NONE | NONE | — | No clipboard access code found |
| Browser | NONE | NONE | — | No browser automation or web requests |
| Database | NONE | NONE | — | No database connectivity code found |
File Tree
13 files · 53.3 KB · 1617 lines Markdown 7f · 1068L
Python 4f · 523L
YAML 1f · 21L
JSON 1f · 5L
├─
▾
references
│ ├─
cold-memory-schema.md
Markdown
│ ├─
examples.md
Markdown
│ └─
heartbeat-cooling-playbook.md
Markdown
├─
▾
scripts
│ ├─
cool.py
Python
│ ├─
decay.py
Python
│ ├─
rebuild.py
Python
│ └─
search.py
Python
├─
CHANGELOG.md
Markdown
├─
clawhub.json
JSON
├─
MANIFEST_NOTES.md
Markdown
├─
manifest.yaml
YAML
├─
README.md
Markdown
└─
SKILL.md
Markdown
Security Positives
✓ Uses only Python standard library (argparse, json, pathlib, datetime, re, shutil, sys) - no external dependencies
✓ All scripts use safe pathlib operations for file I/O
✓ Proper error handling with try/except blocks throughout
✓ Path resolution validates inputs and handles edge cases gracefully
✓ Scripts create backups (.bak) before overwriting files (rebuild.py)
✓ Documentation accurately describes all script functionality
✓ Skill explicitly warns against storing secrets/API keys in cold memory
✓ No obfuscation techniques (base64, eval, exec) used
✓ No network requests or data exfiltration indicators
✓ Scope is limited to a single directory tree (memory/cold/)