description: Read project session context from .bonfire/index.md to understand ongoing work, previous decisions, blockers, and history. Use when the user asks about project context, previous sessions, what was worked on before, architectural decisions, blockers, or when they reference "last time", "previously", "the session", or "what we decided".
This project may use the Bonfire pattern to maintain continuity across AI coding sessions. Context is stored in .bonfire/index.md rather than relying on conversation memory.
Read session context when the user:
Find the git root: git rev-parse --show-toplevel
Check if .bonfire/index.md exists at the git root
If it exists, read it to understand:
Check .bonfire/specs/ if the user asks about implementation specs
Check .bonfire/docs/ if the user asks about documented topics
.bonfire/
├── index.md # Main session context (read this first)
├── config.json # Project settings
├── archive/ # Completed work history
├── docs/ # Topic documentation
└── specs/ # Implementation specs
/bonfire:end command.bonfire/index.md unless explicitly asked.bonfire/ doesn't exist, the project may not use this pattern