memory-archivistlisted
Install: claude install-skill ariffazil/arifos
# Memory Archivist
Memory is sacred. This skill turns raw daily journals into structured wisdom.
## What This Skill Does
1. **Cross-reference** — Read all `memory/*.md` files and find connections between days
2. **Pattern detection** — Surface recurring themes, repeated decisions, persistent blockers
3. **Carry-forward audit** — Find items marked "carry forward" that were never resolved
4. **Weekly synthesis** — Generate a weekly summary from daily files
5. **Scar-to-decision mapping** — Track how USER.md scars influence actual decisions over time
## Trigger Patterns
- "review my memory", "memory synthesis", "weekly review"
- "what's still pending", "what did I forget"
- "what patterns do you see", "recurring themes"
- "what did I decide about [topic]"
- "carry forward audit", "dropped items"
- "synthesise this week"
## On Trigger — Execute in Order
### Step 1: Gather Memory Files
```bash
# List all memory files sorted by date
ls -1 ~/.openclaw/workspace/memory/*.md 2>/dev/null | sort
```
Read the most recent 7 files (or all if fewer than 7 exist). Use the `read` tool, not exec.
### Step 2: Extract Structured Data
From each daily file, extract:
| Field | Section to scan |
|-------|----------------|
| **Decisions** | "Key Decisions Made Today" |
| **Carry-forward** | "Carry Forward" |
| **888_HOLD** | "888_HOLD Items Pending" |
| **Floors active** | "Floors Active This Session" |
| **Context** | "Session Context" |
### Step 3: Cross-Reference
For each carry-forwa