- Align parsing to actual bmad-code-review output format (## headings with date)
- Make Category optional with heuristic keyword-based derivation
- Replace undefined {{item_title}} with {{description}} in subtask template
- Add {{matched_count}} computation before it is referenced
- Guard against missing/empty deferred-work.md (initialize counts to 0)
- Add deferred_work_file to create-story Input Files table
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Closes#2199. Code reviews write deferred items to deferred-work.md but
no downstream workflow ever reads them back, causing tech debt to
accumulate silently. This change integrates deferred-work.md into the
three key workflows that should consume it:
- bmad-create-story: loads deferred-work.md in step 2, matches items by
file path against the new story's scope, and folds overlapping items
into the story as Dev Notes and Tasks subtasks
- bmad-sprint-status: parses the deferred backlog, adds severity counts
to the status display, and raises risks for large or high-priority
backlogs
- bmad-retrospective: analyzes deferred items created vs resolved during
the epic, surfaces carried-forward stats in the metrics summary, and
includes the deferred work summary in the saved retro document
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* refactor: consolidate agents into phase-based skill directories
Remove separate agent/workflow/skill directories (src/bmm/agents,
src/bmm/workflows, src/core/skills, src/utility/agent-components) and
reorganize all content into phase-based structures under src/bmm-skills
(1-analysis, 2-plan-workflows, 3-solutioning, 4-implementation) and
src/core-skills. Eliminates the agent/skill distinction by treating
agents as skills within their workflow phase.
* fix: update broken file references to use new bmm-skills paths
* docs: update all references for unified bmad-quick-dev workflow
Remove all references to the old separate bmad-quick-spec and
bmad-quick-dev-new-preview workflows. The new bmad-quick-dev is a
unified workflow that handles intent clarification, planning,
implementation, review, and presentation in a single run.
Updated files across English docs, Chinese translations, source
skill manifests, website diagram, and build tooling.