Enhanced memory management for OpenClaw. Zero external dependencies. Inspired by Claude Code's memdir architecture.
OPENCLAW_WORKSPACE — Workspace root (default: ~/.openclaw/workspace)OPENCLAW_SESSION_ID — Session identifier for temp cache (default: default)All write commands (session_state.py, session_cache.py) automatically reject inputs matching:
sk-, GitHub ghp_, ClawHub clh_*)password=, passwd:, etc.)-----BEGIN PRIVATE KEY-----)This is a hard block at the script level — the agent cannot bypass it. The regex patterns are conservative (high precision, may miss exotic formats); the agent should additionally avoid extracting any credential-like text even if not matched.
/tmp/ with sanitized session ID filenames| Layer | File | Purpose | Lifetime |
|---|---|---|---|
| ------- | ------ | --------- | ---------- |
| HOT RAM | SESSION-STATE.md | Current task, context, decisions | Session (survives compaction) |
| DAILY | memory/YYYY-MM-DD.md | Raw daily notes with type tags | 90 days → archive |
| CURATED | MEMORY.md | Promoted long-term facts | Permanent |
| ARCHIVE | memory/archive/YYYY-MM/ | Stale daily files | Forever (compressed) |
| CACHE | /tmp/openclaw-session-*.json | Session temp data | Session end / reboot |
| Action | Script |
|---|---|
| -------- | -------- |
| WAL shortcut (any command) | scripts/wal task/decide/context/pending/done/blocker/get/snapshot/restore |
| Set current task | scripts/wal task "description" |
| Log a decision | scripts/wal decide "chose X over Y" |
| Add context | scripts/wal context key value |
| Snapshot & restore | scripts/wal snapshot / scripts/wal restore |
| Session cache | python3 scripts/session_cache.py set/get/list/clear |
| Classify (summary) | python3 scripts/classify_memory.py --summary |
| Decay (promote only) | python3 scripts/memory_decay.py --promote-only |
| Health report | bash scripts/memory_health.sh |
Critical rule: Write BEFORE responding.
When the user provides information that should be remembered:
session_state.py)This prevents context loss if compaction, crash, or restart happens between response and write.
| User Action | WAL Write |
|---|---|
| ------------- | ----------- |
| States a preference | session_state.py context "pref" "value" |
| Makes a decision | session_state.py decide "chose X" |
| Gives a deadline | session_state.py context "deadline" "date" |
| Corrects agent | session_state.py decide "correction: X not Y" |
| Assigns task | session_state.py task "description" |
| Mentions blocker | session_state.py blocker "description" |
All entries tagged with a type prefix:
[PREF] — User preferences, habits, style[PROJ] — Project context, active work, goals[TECH] — Technical details, configs, system knowledge[LESSON] — Lessons learned, errors, corrections[PEOPLE] — People, relationships, social context[TEMP] — Session-scoped, auto-expiresSESSION-STATE.md for current task/contextmemory_search for relevant prior contextmemory/YYYY-MM-DD.md for today's activitymemory/YYYY-MM-DD.md with type tagsession_cache.py for transient session dataSESSION-STATE.md with final stateMEMORY.mdmemory_health.sh periodically to check hygienememory_decay.py when MEMORY.md > 200 lines or 50+ daily filesclassify_memory.py to tag orphaned entriesextract_memories.sh --auto "text" — zero token cost, pure Pythonreferences/extraction_prompt.md template — costs tokens, better quality## [PREF] Preferences
- Favorite color: 深蓝色
## [PROJ] Active Projects
- 黄金三章: /root/黄金三章/, golden3.killclaw.xyz
## [LESSON] Lessons Learned
- Verify Telegram target before building notification workflows
# 2026-03-31
## [PROJ] 黄金三章
- Fixed scoring display to 10-point scale
## Current Task
Building smart-memory skill
## Key Context
- **platform**: ClawHub
## Recent Decisions
- **2026-03-31**: Use zero-dependency approach
## Pending Actions
- [ ] Publish to ClawHub
| Script | Language | Purpose | Security |
|---|---|---|---|
| -------- | ---------- | --------- | ---------- |
session_state.py | Python | HOT RAM working memory (WAL protocol) | Sensitive data filter + sanitization |
session_cache.py | Python | Session-scoped temp key-value cache | Sensitive data filter + path-safe IDs |
extract_memories.sh | Bash | Memory extraction guide and daily file init | Read-only output |
memory_health.sh | Bash | Health report (stats, orphans, token estimate) | Read-only |
memory_decay.py | Python | Temporal decay and archival of stale files | Dry-run mode available |
classify_memory.py | Python | Keyword-based type classification | Dry-run mode available |
references/extraction_prompt.md — LLM prompt for auto-extractionreferences/memory_schema.md — Full schema and format specreferences/decay_rules.md — Decay/archival rule set共 1 个版本