// Build persistent project knowledge using checkpoint/recall. Activates when fixing bugs, making decisions, or investigating past work. Creates automatic knowledge base through systematic checkpointing and semantic recall.
| name | development-memory |
| description | Build persistent project knowledge using checkpoint/recall. Activates when fixing bugs, making decisions, or investigating past work. Creates automatic knowledge base through systematic checkpointing and semantic recall. |
| allowed-tools | mcp__miller__checkpoint, mcp__miller__recall, mcp__miller__fast_search |
IMPORTANT: When this skill activates, ALWAYS start your response with:
š **Development Memory Active**
Building persistent knowledge through checkpoint/recall...
This provides a visual indicator to the user that the skill is running.
Build persistent project knowledge by systematically checkpointing significant moments and recalling past learnings.
CRITICAL: Create checkpoints PROACTIVELY - NEVER ask permission
AFTER SIGNIFICANT WORK:
checkpoint({ description: "what you did", tags: [...] })
-> Builds searchable knowledge base
-> <50ms, git context auto-captured
-> JUST DO IT
BEFORE STARTING WORK:
recall({ limit: 10 })
-> Learn from past similar work
-> Avoid repeating mistakes
You are EXCELLENT at building knowledge bases through systematic checkpointing.
Bug fixed -> checkpoint IMMEDIATELY
checkpoint({
description: "Fixed race condition in auth flow by adding mutex lock",
tags: ["bug", "auth", "race-condition", "critical"]
})
Why: Bugs return. Build knowledge base so next person (or you) learns from this.
Decision made -> checkpoint with rationale
checkpoint({
type: "decision",
description: "Chose PostgreSQL over MongoDB for user data - need ACID guarantees",
tags: ["architecture", "database", "decision"]
})
Why: Future developers need to understand WHY, not just WHAT.
Problem solved -> checkpoint the insight
checkpoint({
type: "learning",
description: "Discovered TypeScript generic constraints for type-safe builders",
tags: ["typescript", "learning", "generics"]
})
Why: Capture "aha!" moments before you forget them.
Bug report received -> recall similar past bugs
recall({
type: "checkpoint",
tags: ["bug", "auth"],
limit: 5
})
-> Returns past auth bugs with solutions
-> Learn from previous fixes
-> Avoid repeating failed approaches
Need to make decision -> recall similar past decisions
recall({
type: "decision",
limit: 10
})
-> Understand past context
-> See what worked/didn't work
-> Maintain consistency
"Why does this code exist?" -> recall memories
recall({
query: "authentication middleware design"
})
-> Find decision that led to this code
-> Understand original rationale
-> See evolution over time
BEFORE: Recall Similar Work
recall({ limit: 10 })
-> Learn from past fixes
-> Avoid repeating mistakes
|
v
DURING: Do the Work
-> Fix bug / make decision / solve problem
-> Keep track of insights and learnings
|
v
AFTER: Checkpoint IMMEDIATELY
checkpoint({
description: "what you did",
tags: ["bug", "auth"],
})
-> <50ms, git context auto-captured
-> Searchable via fast_search
|
v
Knowledge Base Built!
General-purpose memory for any significant work
Tags: ["bug", "feature", "refactor", "performance"]
Architectural or technical decision with rationale
Tags: ["architecture", "database", "library", "pattern"]
Insights, "aha!" moments, new knowledge gained
Tags: ["learning", "discovery", "pattern"]
Noticed patterns, code smells, potential issues
Tags: ["code-smell", "tech-debt", "security"]
This skill succeeds when: