Scan Report
5 /100
better-memory
One-shot smart installation and ongoing maintenance for a native OpenClaw memory stack with L1 daily logs, L2 sidecar summaries, and L3 weekly rollups
This is a legitimate memory management skill that operates strictly within declared filesystem boundaries, uses no shell execution, makes no network requests, and accesses no sensitive credentials.
Safe to install
This skill is safe to use. No security concerns identified.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | WRITE | WRITE | ✓ Aligned | All scripts use Path.write_text/read_text within workspace scope |
| Shell | NONE | NONE | — | No subprocess calls found in any script |
| Network | NONE | NONE | — | No network requests in any script |
| Environment | NONE | NONE | — | No environment variable access for sensitive data |
| Skill Invoke | NONE | NONE | — | No cross-skill invocation detected |
| Database | NONE | NONE | — | No database access |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser automation |
File Tree
16 files · 80.8 KB · 2240 lines Python 13f · 2066L
Markdown 2f · 170L
YAML 1f · 4L
├─
▾
agents
│ └─
openai.yaml
YAML
├─
▾
references
│ └─
memory-schema.md
Markdown
├─
▾
scripts
│ ├─
apply_monthly_cleanup.py
Python
│ ├─
bootstrap_memory.py
Python
│ ├─
capture_memory.py
Python
│ ├─
emit_cron_template.py
Python
│ ├─
install_heartbeat_memory_os.py
Python
│ ├─
memory_os_common.py
Python
│ ├─
promote_legacy_memory.py
Python
│ ├─
refine_memory.py
Python
│ ├─
run_daily_review.py
Python
│ ├─
run_monthly_review.py
Python
│ ├─
run_weekly_rollup.py
Python
│ ├─
smart_install.py
Python
│ └─
uninstall_memory_os.py
Python
└─
SKILL.md
Markdown
Security Positives
✓ All filesystem writes scoped to workspace, memory/, and .openclaw-memory-os/
✓ No subprocess or shell execution - pure Python pathlib operations
✓ No network requests or external communications
✓ No credential harvesting or sensitive file access (~/.ssh, ~/.aws, .env)
✓ No code obfuscation, base64 encoding, or eval usage
✓ Comprehensive input validation on CLI arguments (time format, day validation)
✓ Monthly cleanup requires explicit user approval before applying changes
✓ Migration policy preserves existing memory - no destructive auto-import
✓ Cron templates are generated as text files, not auto-installed
✓ Documentation accurately describes all implemented functionality