bonfire-context
4
总安装量
4
周安装量
#52990
全站排名
安装命令
npx skills add https://github.com/vieko/bonfire --skill bonfire-context
Agent 安装分布
claude-code
4
command-code
2
kilo
2
windsurf
2
antigravity
2
Skill 文档
Bonfire Context
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.
When to Use This Skill
Read session context when the user:
- Asks about previous work or decisions
- References “last time”, “previously”, “before”
- Wants to know about blockers or pending issues
- Asks what the project status is
- Starts a significant task that might have prior context
Instructions
-
Find the git root:
git rev-parse --show-toplevel -
Check if
.bonfire/index.mdexists at the git root -
If it exists, read it to understand:
- Current project status and recent work
- Active decisions and their rationale
- Known blockers or pending issues
- Links to relevant specs or documentation
-
Check
.bonfire/specs/if the user asks about implementation specs -
Check
.bonfire/docs/if the user asks about documented topics
File Structure
.bonfire/
âââ index.md # Main session context (read this first)
âââ config.json # Project settings
âââ archive/ # Completed work history
âââ docs/ # Topic documentation
âââ specs/ # Implementation specs
Important
- This skill is for reading context, not updating it
- Session updates happen via
/bonfire-endcommand - Don’t modify
.bonfire/index.mdunless explicitly asked - If
.bonfire/doesn’t exist, the project may not use this pattern