From 54ab3f13d3b9f3b261c911ffa448b0ab43f5cf18 Mon Sep 17 00:00:00 2001 From: Darren Podolak Date: Tue, 30 Dec 2025 09:44:03 -0500 Subject: [PATCH] chore: Add fork docs gitignore and improve implement workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add BUG-TRACKING.md to gitignore for fork-specific documentation - Improve implement workflow doc update tasks with return instructions - PRD, architecture, and UX update tasks now remind to return to /implement - Ensures implementation proceeds after doc updates complete 🤖 Generated with [Claude Code](https://claude.ai/claude-code) Co-Authored-By: Claude Opus 4.5 --- .gitignore | 3 +++ .../bmm/workflows/implement/instructions.md | 24 ++++++++++++++++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a25ea7ec..697ec67b 100644 --- a/.gitignore +++ b/.gitignore @@ -78,3 +78,6 @@ bmad-custom-src/ # Docusaurus / Documentation Build .docusaurus/ build/ + +# Fork-specific documentation (not committed) +BUG-TRACKING.md diff --git a/src/modules/bmm/workflows/implement/instructions.md b/src/modules/bmm/workflows/implement/instructions.md index 6e519497..1e545471 100644 --- a/src/modules/bmm/workflows/implement/instructions.md +++ b/src/modules/bmm/workflows/implement/instructions.md @@ -146,7 +146,13 @@ Change context: {description} Documentation notes: {doc_impact.notes} -Please update the relevant PRD sections to reflect this change. After updates, summarize what was changed. +Please update the relevant PRD sections to reflect this change. + +After updates: +1. Summarize what was changed +2. Return to the implement workflow by running: /implement {item_id} + +IMPORTANT: You MUST return to /implement {item_id} after completing the PRD updates so the actual code implementation can proceed. @@ -163,7 +169,13 @@ Change context: {description} Documentation notes: {doc_impact.notes} -Please update the relevant architecture sections (data model, APIs, security, etc.) to reflect this change. After updates, summarize what was changed. +Please update the relevant architecture sections (data model, APIs, security, etc.) to reflect this change. + +After updates: +1. Summarize what was changed +2. Return to the implement workflow by running: /implement {item_id} + +IMPORTANT: You MUST return to /implement {item_id} after completing the architecture updates so the actual code implementation can proceed. @@ -180,7 +192,13 @@ Change context: {description} Documentation notes: {doc_impact.notes} -Please update the relevant UX spec sections (screens, flows, components, etc.) to reflect this change. After updates, summarize what was changed. +Please update the relevant UX spec sections (screens, flows, components, etc.) to reflect this change. + +After updates: +1. Summarize what was changed +2. Return to the implement workflow by running: /implement {item_id} + +IMPORTANT: You MUST return to /implement {item_id} after completing the UX updates so the actual code implementation can proceed.