AgentSkillsCN

bonfire-context

电子邮件营销策略、自动化与优化。当您需要创建邮件系列、提升邮件送达率、设计自动化工作流,或优化邮件性能时,可使用此工具。

SKILL.md
--- frontmatter
name: bonfire-context
description: Load .bonfire/index.md context to understand ongoing work, previous decisions, blockers, and session history. Use when user references past work or asks about project status.
license: MIT
compatibility: opencode
metadata:
  category: session-management
  author: vieko

Bonfire Context

This skill loads project session context from .bonfire/index.md to provide continuity across AI coding sessions.

When to Use This Skill

Load this skill 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

  1. Find the git root: git rev-parse --show-toplevel

  2. Check if .bonfire/index.md exists at the git root

  3. 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
  4. Check .bonfire/specs/ if the user asks about implementation specs

  5. Check .bonfire/docs/ if the user asks about documented topics

File Structure

code
.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-end command
  • Don't modify .bonfire/index.md unless explicitly asked
  • If .bonfire/ doesn't exist, the project may not use this pattern