What is the Memory Bank?
The Memory Bank is a file-based storage system for all project artifacts. It maintains context across agent sessions and provides traceability between artifacts.Unlike traditional documentation that gets stale, the Memory Bank is actively used by agents. It’s the source of truth that agents read and write.
Why Memory Bank?
Context Engineering
Agents reload context from Memory Bank each session. No more lost knowledge.
Traceability
Every artifact links to its source. Inception and construction logs provide full traceability after completion.
Human Readable
All files are Markdown. Review, edit, and version control with Git.
AI Accessible
Structured format that agents can parse and update.
Structure
After project initialization:Artifact Types
Standards
Project-wide decisions that inform AI code generation:| File | Purpose |
|---|---|
tech-stack.md | Languages, frameworks, databases |
coding-standards.md | Formatting, naming, patterns |
architecture.md | System architecture decisions |
ux-guide.md | Design system, styling |
api-conventions.md | API style, versioning |
Intent Artifacts
Captured requirements and context:| File | Purpose |
|---|---|
requirements.md | User stories, acceptance criteria, NFRs |
system-context.md | Boundaries, interfaces, constraints |
units.md | Unit decomposition overview |
Unit Artifacts
Work breakdown within an intent:| File | Purpose |
|---|---|
unit-brief.md | Scope, interfaces, dependencies |
stories/*.md | Individual user stories |
bolts/*/ | Bolt execution records |
Bolt Artifacts
Implementation records:| File | Purpose |
|---|---|
domain-model.md | DDD artifacts |
technical-design.md | Architecture decisions |
adr-*.md | Architectural Decision Records |
implementation/ | Generated code |
tests/ | Test files |
Traceability
Artifacts link to each other using references:Agent Interaction
Agents read and write to the Memory Bank:Version Control
The Memory Bank is designed for Git:Schema
The Memory Bank follows a schema defined in.specsmd/aidlc/memory-bank.yaml:
Best Practices
Keep Artifacts Current
Keep Artifacts Current
Update artifacts when decisions change. Stale documentation is worse than no documentation.
Use Consistent Formatting
Use Consistent Formatting
Follow the templates. Consistent structure helps agents parse content.
Link Generously
Link Generously
Cross-reference related artifacts. Traceability prevents knowledge silos.
Version with Code
Version with Code
Commit Memory Bank changes with related code. They belong together.
Next Steps
Standards
Learn about project standards that guide AI generation
