make-plan
Installation
SKILL.md
make-plan: Memory-Grounded Planning
A good plan starts from the current state, not a blank slate. Memory tells you what's been decided, what's blocking progress, and what was left mid-session.
Planning Workflow
1. Load context from memory
# What was done recently?
python3 {SKILL_DIR}/scripts/memory_store.py timeline --hours 168 --limit 30
# What's in progress / blocked?
COWORK_MEM_DB=~/mnt/.claude/.cowork-mem/memory.db \
python3 {SKILL_DIR}/scripts/vector_search.py "in progress blocked next step" --limit 10
# What did the last session summary say?
python3 {SKILL_DIR}/scripts/memory_store.py search "session summary" --type summary --limit 5