Skip to content

Latest commit

Β 

History

History
51 lines (40 loc) Β· 1.86 KB

File metadata and controls

51 lines (40 loc) Β· 1.86 KB

Workflows

Mission Lifecycle

m.plan β†’ 🀝 Review mission.md β†’ m.apply β†’ 🀝 Review code β†’ [Adjustments] β†’ m.complete
(Handshake #1)                  (Handshake #2)

Steps

  1. m.plan creates mission.md with INTENT, SCOPE, PLAN, VERIFICATION
  2. 🀝 Review & approve the mission before execution (authorize the architecture)
  3. m.apply executes, polishes, and generates commit message
  4. 🀝 Review code and optionally request adjustments (verify the implementation)
  5. m.complete archives mission and creates git commit

Bugfix Workflow

m.debug β†’ 🀝 Review diagnosis.md β†’ m.plan β†’ m.apply β†’ m.complete
(Investigation)                    (Fix Planning)

Steps

  1. m.debug investigates the bug and creates diagnosis.md with root cause analysis
  2. 🀝 Review diagnosis to understand the problem (evidence-based findings)
  3. m.plan automatically consumes diagnosis.md to create a targeted fix mission
  4. m.apply implements the fix with verification
  5. m.complete archives both diagnosis and fix mission together

Project Structure

.mission/
β”œβ”€β”€ governance.md          # Core principles and workflow rules
β”œβ”€β”€ backlog.md            # Future work and refactoring opportunities
β”œβ”€β”€ mission.md            # Current active mission (auto-generated)
β”œβ”€β”€ diagnosis.md          # Current bug diagnosis (auto-generated)
β”œβ”€β”€ execution.log         # Current mission execution log
β”œβ”€β”€ completed/            # Archived missions and detailed metrics
β”œβ”€β”€ paused/               # Temporarily paused missions
└── libraries/            # Template system (embedded)

# AI-specific prompt directories:
.amazonq/prompts/         # Amazon Q prompts
.claude/commands/         # Claude commands
.kiro/prompts/           # Kiro prompts
.opencode/command/       # OpenCode commands