bmad-method 6.0.0-Beta.4 → 6.0.0-Beta.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (132) hide show
  1. package/.claude/skills/changelog-social/SKILL.md +169 -0
  2. package/.claude/skills/changelog-social/examples/discord-example.md +53 -0
  3. package/.claude/skills/changelog-social/examples/linkedin-example.md +49 -0
  4. package/.claude/skills/changelog-social/examples/twitter-example.md +55 -0
  5. package/.claude/skills/changelog-social.skill +0 -0
  6. package/.claude/skills/draft-changelog/SKILL.md +7 -0
  7. package/.claude/skills/draft-changelog/prompts/instructions.md +82 -0
  8. package/.claude/skills/gh-triage/README.md +14 -0
  9. package/.claude/skills/gh-triage/SKILL.md +12 -0
  10. package/.claude/skills/gh-triage/prompts/agent-prompt.md +60 -0
  11. package/.claude/skills/gh-triage/prompts/instructions.md +74 -0
  12. package/.claude/skills/release-module/README.md +24 -0
  13. package/.claude/skills/release-module/SKILL.md +7 -0
  14. package/.claude/skills/release-module/prompts/instructions.md +73 -0
  15. package/.github/ISSUE_TEMPLATE/bug-report.yaml +124 -0
  16. package/.github/ISSUE_TEMPLATE/documentation.yaml +55 -0
  17. package/.github/workflows/quality.yaml +3 -0
  18. package/.vscode/settings.json +1 -2
  19. package/CHANGELOG.md +75 -0
  20. package/README.md +8 -7
  21. package/docs/bmgd/bmgd-logo.png +0 -0
  22. package/docs/bmgd/game-types.md +375 -0
  23. package/docs/bmgd/index.md +113 -0
  24. package/docs/bmgd/quick-flow-workflows.md +161 -0
  25. package/docs/bmgd/workflow.jpg +0 -0
  26. package/docs/reference/agents.md +22 -0
  27. package/docs/reference/commands.md +34 -0
  28. package/docs/reference/testing.md +21 -0
  29. package/docs/reference/workflow-map.md +1 -1
  30. package/docs/tutorials/getting-started.md +40 -36
  31. package/package.json +8 -5
  32. package/src/bmm/agents/dev.agent.yaml +0 -1
  33. package/src/bmm/agents/{quinn.agent.yaml → qa.agent.yaml} +3 -3
  34. package/src/bmm/agents/quick-flow-solo-dev.agent.yaml +2 -3
  35. package/src/bmm/agents/tech-writer/tech-writer.agent.yaml +3 -3
  36. package/src/bmm/module-help.csv +17 -15
  37. package/src/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +1 -1
  38. package/src/bmm/workflows/2-plan-workflows/create-prd/data/domain-complexity.csv +2 -0
  39. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-11-polish.md +1 -1
  40. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-04-complete.md +1 -1
  41. package/src/bmm/workflows/2-plan-workflows/create-prd/validation-report-prd-workflow.md +3 -3
  42. package/src/bmm/workflows/3-solutioning/create-architecture/data/domain-complexity.csv +2 -0
  43. package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +0 -1
  44. package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +0 -2
  45. package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +0 -2
  46. package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +0 -2
  47. package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +0 -1
  48. package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +0 -2
  49. package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +0 -3
  50. package/src/bmm/workflows/document-project/workflow.yaml +0 -6
  51. package/src/bmm/workflows/generate-project-context/project-context-template.md +21 -0
  52. package/src/bmm/workflows/generate-project-context/steps/step-01-discover.md +184 -0
  53. package/src/bmm/workflows/generate-project-context/steps/step-02-generate.md +318 -0
  54. package/src/bmm/workflows/generate-project-context/steps/step-03-complete.md +278 -0
  55. package/src/bmm/workflows/generate-project-context/workflow.md +49 -0
  56. package/src/core/module-help.csv +8 -8
  57. package/src/core/tasks/editorial-review-prose.xml +14 -12
  58. package/src/core/tasks/editorial-review-structure.xml +28 -28
  59. package/src/core/tasks/help.md +36 -16
  60. package/src/core/tasks/index-docs.xml +1 -1
  61. package/src/core/tasks/review-adversarial-general.xml +2 -2
  62. package/src/core/tasks/shard-doc.xml +1 -2
  63. package/src/core/tasks/workflow.xml +2 -2
  64. package/src/core/workflows/advanced-elicitation/workflow.xml +1 -1
  65. package/test/test-installation-components.js +1 -1
  66. package/tools/build-docs.js +21 -1
  67. package/tools/cli/installers/lib/core/config-collector.js +5 -1
  68. package/tools/cli/installers/lib/core/dependency-resolver.js +1 -1
  69. package/tools/cli/installers/lib/core/installer.js +1 -6
  70. package/tools/cli/installers/lib/core/manifest-generator.js +141 -89
  71. package/tools/cli/installers/lib/custom/handler.js +1 -1
  72. package/tools/cli/installers/lib/ide/_base-ide.js +25 -15
  73. package/tools/cli/installers/lib/ide/_config-driven.js +81 -9
  74. package/tools/cli/installers/lib/ide/codex.js +8 -1
  75. package/tools/cli/installers/lib/ide/manager.js +8 -2
  76. package/tools/cli/installers/lib/ide/platform-codes.yaml +0 -3
  77. package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +2 -2
  78. package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +14 -3
  79. package/tools/cli/installers/lib/ide/shared/path-utils.js +9 -2
  80. package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +127 -29
  81. package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +2 -2
  82. package/tools/cli/installers/lib/ide/templates/agent-command-template.md +1 -0
  83. package/tools/cli/installers/lib/ide/templates/combined/default-agent.md +1 -0
  84. package/tools/cli/installers/lib/ide/templates/combined/default-task.md +10 -0
  85. package/tools/cli/installers/lib/ide/templates/combined/default-tool.md +10 -0
  86. package/tools/cli/installers/lib/ide/templates/combined/default-workflow-yaml.md +1 -0
  87. package/tools/cli/installers/lib/ide/templates/combined/default-workflow.md +1 -0
  88. package/tools/cli/installers/lib/ide/templates/combined/gemini-task.toml +11 -0
  89. package/tools/cli/installers/lib/ide/templates/combined/gemini-tool.toml +11 -0
  90. package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +1 -0
  91. package/tools/cli/installers/lib/ide/templates/workflow-commander.md +1 -0
  92. package/tools/cli/installers/lib/modules/manager.js +5 -4
  93. package/tools/cli/lib/activation-builder.js +5 -3
  94. package/tools/cli/lib/agent/installer.js +1 -1
  95. package/tools/cli/lib/prompts.js +192 -6
  96. package/tools/cli/lib/ui.js +124 -72
  97. package/tools/schema/agent.js +0 -1
  98. package/tools/validate-agent-schema.js +1 -1
  99. package/tools/validate-file-refs.js +480 -0
  100. package/website/astro.config.mjs +1 -35
  101. package/src/bmm/workflows/1-analysis/research/market-steps/step-02-customer-insights.md +0 -200
  102. package/src/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-library.json +0 -90
  103. package/src/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-templates.yaml +0 -127
  104. package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/checklist.md +0 -39
  105. package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/instructions.md +0 -130
  106. package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/workflow.yaml +0 -27
  107. package/src/bmm/workflows/excalidraw-diagrams/create-diagram/checklist.md +0 -43
  108. package/src/bmm/workflows/excalidraw-diagrams/create-diagram/instructions.md +0 -141
  109. package/src/bmm/workflows/excalidraw-diagrams/create-diagram/workflow.yaml +0 -27
  110. package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/checklist.md +0 -49
  111. package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/instructions.md +0 -241
  112. package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/workflow.yaml +0 -27
  113. package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/checklist.md +0 -38
  114. package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/instructions.md +0 -133
  115. package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/workflow.yaml +0 -27
  116. package/src/core/resources/excalidraw/README.md +0 -160
  117. package/src/core/resources/excalidraw/excalidraw-helpers.md +0 -127
  118. package/src/core/resources/excalidraw/library-loader.md +0 -50
  119. package/src/core/resources/excalidraw/validate-json-instructions.md +0 -79
  120. package/tools/flattener/aggregate.js +0 -76
  121. package/tools/flattener/binary.js +0 -80
  122. package/tools/flattener/discovery.js +0 -71
  123. package/tools/flattener/files.js +0 -35
  124. package/tools/flattener/ignoreRules.js +0 -172
  125. package/tools/flattener/main.js +0 -483
  126. package/tools/flattener/projectRoot.js +0 -201
  127. package/tools/flattener/prompts.js +0 -44
  128. package/tools/flattener/stats.helpers.js +0 -368
  129. package/tools/flattener/stats.js +0 -75
  130. package/tools/flattener/test-matrix.js +0 -409
  131. package/tools/flattener/xml.js +0 -82
  132. /package/.github/ISSUE_TEMPLATE/{feature_request.md → feature-request.md} +0 -0
@@ -0,0 +1,169 @@
1
+ ---
2
+ name: changelog-social
3
+ description: Generate social media announcements for Discord, Twitter, and LinkedIn from the latest changelog entry. Use when user asks to create release announcements, social posts, or share changelog updates. Reads CHANGELOG.md in current working directory. Reference examples/ for tone and format.
4
+ disable-model-invocation: true
5
+ ---
6
+
7
+ # Changelog Social
8
+
9
+ Generate engaging social media announcements from changelog entries.
10
+
11
+ ## Workflow
12
+
13
+ ### Step 1: Extract Changelog Entry
14
+
15
+ Read `./CHANGELOG.md` and extract the latest version entry. The changelog follows this format:
16
+
17
+ ```markdown
18
+ ## [VERSION]
19
+
20
+ ### 🎁 Features
21
+ * **Title** — Description
22
+
23
+ ### 🐛 Bug Fixes
24
+ * **Title** — Description
25
+
26
+ ### 📚 Documentation
27
+ * **Title** — Description
28
+
29
+ ### 🔧 Maintenance
30
+ * **Title** — Description
31
+ ```
32
+
33
+ Parse:
34
+ - **Version number** (e.g., `6.0.0-Beta.5`)
35
+ - **Features** - New functionality, enhancements
36
+ - **Bug Fixes** - Fixes users will care about
37
+ - **Documentation** - New or improved docs
38
+ - **Maintenance** - Dependency updates, tooling improvements
39
+
40
+ ### Step 2: Get Git Contributors
41
+
42
+ Use git log to find contributors since the previous version. Get commits between the current version tag and the previous one:
43
+
44
+ ```bash
45
+ # Find the previous version tag first
46
+ git tag --sort=-version:refname | head -5
47
+
48
+ # Get commits between versions with PR numbers and authors
49
+ git log <previous-tag>..<current-tag> --pretty=format:"%h|%s|%an" --grep="#"
50
+ ```
51
+
52
+ Extract PR numbers from commit messages that contain `#` followed by digits. Compile unique contributors.
53
+
54
+ ### Step 3: Generate Discord Announcement
55
+
56
+ **Limit: 2,000 characters per message.** Split into multiple messages if needed.
57
+
58
+ Use this template style:
59
+
60
+ ```markdown
61
+ 🚀 **BMad vVERSION RELEASED!**
62
+
63
+ 🎉 [Brief hype sentence]
64
+
65
+ 🪥 **KEY HIGHLIGHT** - [One-line summary]
66
+
67
+ 🎯 **CATEGORY NAME**
68
+ • Feature one - brief description
69
+ • Feature two - brief description
70
+ • Coming soon: Future teaser
71
+
72
+ 🔧 **ANOTHER CATEGORY**
73
+ • Fix or feature
74
+ • Another item
75
+
76
+ 📚 **DOCS OR OTHER**
77
+ • Item
78
+ • Item with link
79
+
80
+ 🌟 **COMMUNITY PHILOSOPHY** (optional - include for major releases)
81
+ • Everything is FREE - No paywalls
82
+ • Knowledge shared, not sold
83
+
84
+ 📊 **STATS**
85
+ X commits | Y PRs merged | Z files changed
86
+
87
+ 🙏 **CONTRIBUTORS**
88
+ @username1 (X PRs!), @username2 (Y PRs!)
89
+ @username3, @username4, username5 + dependabot 🛡️
90
+ Community-driven FTW! 🌟
91
+
92
+ 📦 **INSTALL:**
93
+ `npx bmad-method@VERSION install`
94
+
95
+ ⭐ **SUPPORT US:**
96
+ 🌟 GitHub: github.com/bmad-code-org/BMAD-METHOD/
97
+ 📺 YouTube: youtube.com/@BMadCode
98
+ ☕ Donate: buymeacoffee.com/bmad
99
+
100
+ 🔥 **Next version tease!**
101
+ ```
102
+
103
+ **Content Strategy:**
104
+ - Focus on **user impact** - what's better for them?
105
+ - Highlight **annoying bugs fixed** that frustrated users
106
+ - Show **new capabilities** that enable workflows
107
+ - Keep it **punchy** - use emojis and short bullets
108
+ - Add **personality** - excitement, humor, gratitude
109
+
110
+ ### Step 4: Generate Twitter Post
111
+
112
+ **Limit: 25,000 characters per tweet (Premium).** With Premium, use a single comprehensive post matching the Discord style (minus Discord-specific formatting). Aim for 1,500-3,000 characters for better engagement.
113
+
114
+ **Threads are optional** — only use for truly massive releases where you want multiple engagement points.
115
+
116
+ See `examples/twitter-example.md` for the single-post Premium format.
117
+
118
+ ## Content Selection Guidelines
119
+
120
+ **Include:**
121
+ - New features that change workflows
122
+ - Bug fixes for annoying/blocking issues
123
+ - Documentation that helps users
124
+ - Performance improvements
125
+ - New agents or workflows
126
+ - Breaking changes (call out clearly)
127
+
128
+ **Skip/Minimize:**
129
+ - Internal refactoring
130
+ - Dependency updates (unless user-facing)
131
+ - Test improvements
132
+ - Minor style fixes
133
+
134
+ **Emphasize:**
135
+ - "Finally fixed" issues
136
+ - "Faster" operations
137
+ - "Easier" workflows
138
+ - "Now supports" capabilities
139
+
140
+ ## Examples
141
+
142
+ Reference example posts in `examples/` for tone and formatting guidance:
143
+
144
+ - **discord-example.md** — Full Discord announcement with emojis, sections, contributor shout-outs
145
+ - **twitter-example.md** — Twitter thread format (5 tweets max for major releases)
146
+ - **linkedin-example.md** — Professional post for major/minor releases with significant features
147
+
148
+ **When to use LinkedIn:**
149
+ - Major version releases (e.g., v6.0.0 Beta, v7.0.0)
150
+ - Minor releases with exceptional new features
151
+ - Community milestone announcements
152
+
153
+ Read the appropriate example file before generating to match the established style and voice.
154
+
155
+ ## Output Format
156
+
157
+ Present both announcements in clearly labeled sections:
158
+
159
+ ```markdown
160
+ ## Discord Announcement
161
+
162
+ [paste Discord content here]
163
+
164
+ ## Twitter Post
165
+
166
+ [paste Twitter content here]
167
+ ```
168
+
169
+ Offer to make adjustments if the user wants different emphasis, tone, or content.
@@ -0,0 +1,53 @@
1
+ 🚀 **BMad v6.0.0-alpha.23 RELEASED!**
2
+
3
+ 🎉 Huge update - almost beta!
4
+
5
+ 🪟 **WINDOWS INSTALLER FIXED** - Menu arrows issue should be fixed! CRLF & ESM problems resolved.
6
+
7
+ 🎯 **PRD WORKFLOWS IMPROVED**
8
+ • Validation & Edit workflows added!
9
+ • PRD Cohesion check ensures document flows beautifully
10
+ • Coming soon: Use of subprocess optimization (context saved!)
11
+ • Coming soon: Final format polish step in all workflows - Human consumption OR hyper-optimized LLM condensed initially!
12
+
13
+ 🔧 **WORKFLOW CREATOR & VALIDATOR**
14
+ • Subprocess support for advanced optimization
15
+ • Path violation checks ensure integrity
16
+ • Beyond error checking - offers optimization & flow suggestions!
17
+
18
+ 📚 **NEW DOCS SITE** - docs.bmad-method.org
19
+ • Diataxis framework: Tutorials, How-To, Explanations, References
20
+ • Current docs still being revised
21
+ • Tutorials, blogs & explainers coming soon!
22
+
23
+ 💡 **BRAINSTORMING REVOLUTION**
24
+ • 100+ idea goal (quantity-first!)
25
+ • Anti-bias protocol (pivot every 10 ideas)
26
+ • Chain-of-thought + simulated temperature prompts
27
+ • Coming soon: SubProcessing (on-the-fly sub agents)
28
+
29
+ 🌟 **COMMUNITY PHILOSOPHY**
30
+ • Everything is FREE - No paywalls, no gated content
31
+ • Knowledge shared, not sold
32
+ • No premium tiers - full access to our ideas
33
+
34
+ 📊 **27 commits | 217 links converted | 42+ docs created**
35
+
36
+ 🙏 **17 Community PR Authors in this release!**
37
+ @lum (6 PRs!), @q00 (3 PRs!), @phil (2 PRs!)
38
+ @mike, @alex, @ramiz, @sjennings + dependabot 🛡️
39
+ Community-driven FTW! 🌟
40
+
41
+ 📦 **INSTALL ALPHA:**
42
+ `npx bmad-method install`
43
+
44
+ ⭐ **SUPPORT US:**
45
+ 🌟 GitHub: github.com/bmad-code-org/BMAD-METHOD/
46
+ 📺 YouTube: youtube.com/@BMadCode
47
+
48
+ 🎤 **SPEAKING & MEDIA**
49
+ Available for conferences, podcasts, media appearances!
50
+ Topics: AI-Native Organizations (Any Industry), BMad Method
51
+ DM on Discord for inquiries!
52
+
53
+ 🔥 **V6 Beta is DAYS away!** January 22nd ETA - new features such as xyz and abc bug fixes!
@@ -0,0 +1,49 @@
1
+ 🚀 **Announcing BMad Method v6.0.0 Beta - AI-Native Agile Development Framework**
2
+
3
+ I'm excited to share that BMad Method, the open-source AI-driven agile development framework, is entering Beta! After 27 alpha releases and countless community contributions, we're approaching a major milestone.
4
+
5
+ **What's New in v6.0.0-alpha.23**
6
+
7
+ 🪟 **Windows Compatibility Fixed**
8
+ We've resolved the installer issues that affected Windows users. The menu arrows problem, CRLF handling, and ESM compatibility are all resolved.
9
+
10
+ 🎯 **Enhanced PRD Workflows**
11
+ Our Product Requirements Document workflows now include validation and editing capabilities, with a new cohesion check that ensures your documents flow beautifully. Subprocess optimization is coming soon to save even more context.
12
+
13
+ 🔧 **Workflow Creator & Validator**
14
+ New tools for creating and validating workflows with subprocess support, path violation checks, and optimization suggestions that go beyond simple error checking.
15
+
16
+ 📚 **New Documentation Platform**
17
+ We've launched docs.bmad-method.org using the Diataxis framework - providing clear separation between tutorials, how-to guides, explanations, and references. Our documentation is being continuously revised and expanded.
18
+
19
+ 💡 **Brainstorming Revolution**
20
+ Our brainstorming workflows now use research-backed techniques: 100+ idea goals, anti-bias protocols, chain-of-thought reasoning, and simulated temperature prompts for higher divergence.
21
+
22
+ **Our Philosophy**
23
+
24
+ Everything in BMad Method is FREE. No paywalls, no gated content, no premium tiers. We believe knowledge should be shared, not sold. This is community-driven development at its finest.
25
+
26
+ **The Stats**
27
+ - 27 commits in this release
28
+ - 217 documentation links converted
29
+ - 42+ new documents created
30
+ - 17 community PR authors contributed
31
+
32
+ **Get Started**
33
+
34
+ ```
35
+ npx bmad-method@alpha install
36
+ ```
37
+
38
+ **Learn More**
39
+ - GitHub: github.com/bmad-code-org/BMAD-METHOD
40
+ - YouTube: youtube.com/@BMadCode
41
+ - Docs: docs.bmad-method.org
42
+
43
+ **What's Next?**
44
+
45
+ Beta is just days away with an ETA of January 22nd. We're also available for conferences, podcasts, and media appearances to discuss AI-Native Organizations and the BMad Method.
46
+
47
+ Have you tried BMad Method yet? I'd love to hear about your experience in the comments!
48
+
49
+ #AI #SoftwareDevelopment #Agile #OpenSource #DevTools #LLM #AgentEngineering
@@ -0,0 +1,55 @@
1
+ 🚀 **BMad v6.0.0-alpha.23 RELEASED!**
2
+
3
+ Huge update - we're almost at Beta! 🎉
4
+
5
+ 🪟 **WINDOWS INSTALLER FIXED** - Menu arrows issue should be fixed! CRLF & ESM problems resolved.
6
+
7
+ 🎯 **PRD WORKFLOWS IMPROVED**
8
+ • Validation & Edit workflows added!
9
+ • PRD Cohesion check ensures document flows beautifully
10
+ • Coming soon: Subprocess optimization (context saved!)
11
+ • Coming soon: Final format polish step in all workflows
12
+
13
+ 🔧 **WORKFLOW CREATOR & VALIDATOR**
14
+ • Subprocess support for advanced optimization
15
+ • Path violation checks ensure integrity
16
+ • Beyond error checking - offers optimization & flow suggestions!
17
+
18
+ 📚 **NEW DOCS SITE** - docs.bmad-method.org
19
+ • Diataxis framework: Tutorials, How-To, Explanations, References
20
+ • Current docs still being revised
21
+ • Tutorials, blogs & explainers coming soon!
22
+
23
+ 💡 **BRAINSTORMING REVOLUTION**
24
+ • 100+ idea goal (quantity-first!)
25
+ • Anti-bias protocol (pivot every 10 ideas)
26
+ • Chain-of-thought + simulated temperature prompts
27
+ • Coming soon: SubProcessing (on-the-fly sub agents)
28
+
29
+ 🌟 **COMMUNITY PHILOSOPHY**
30
+ • Everything is FREE - No paywalls, no gated content
31
+ • Knowledge shared, not sold
32
+ • No premium tiers - full access to our ideas
33
+
34
+ 📊 **27 commits | 217 links converted | 42+ docs created**
35
+
36
+ 🙏 **17 Community PR Authors in this release!**
37
+ @lum (6 PRs!), @q00 (3 PRs!), @phil (2 PRs!)
38
+ @mike, @alex, @ramiz, @sjennings + dependabot 🛡️
39
+ Community-driven FTW! 🌟
40
+
41
+ 📦 **INSTALL ALPHA:**
42
+ `npx bmad-method install`
43
+
44
+ ⭐ **SUPPORT US:**
45
+ 🌟 GitHub: github.com/bmad-code-org/BMAD-METHOD/
46
+ 📺 YouTube: youtube.com/@BMadCode
47
+
48
+ 🎤 **SPEAKING & MEDIA**
49
+ Available for conferences, podcasts, media appearances!
50
+ Topics: AI-Native Organizations (Any Industry), BMad Method
51
+ DM on Discord for inquiries!
52
+
53
+ 🔥 **V6 Beta is DAYS away!** January 22nd ETA!
54
+
55
+ #AI #DevTools #Agile #OpenSource #LLM #AgentEngineering
@@ -0,0 +1,7 @@
1
+ ---
2
+ name: draft-changelog
3
+ description: Analyzes changes since last release and updates CHANGELOG.md ONLY. Does NOT trigger releases.
4
+ disable-model-invocation: true
5
+ ---
6
+
7
+ Read `prompts/instructions.md` and execute.
@@ -0,0 +1,82 @@
1
+ # Draft Changelog Execution
2
+
3
+ ## ⚠️ IMPORTANT - READ FIRST
4
+
5
+ **This skill ONLY updates CHANGELOG.md. That is its entire purpose.**
6
+
7
+ - **DO** update CHANGELOG.md with the new version entry
8
+ - **DO** present the draft for user review before editing
9
+ - **DO NOT** trigger any GitHub release workflows
10
+ - **DO NOT** run any other skills or workflows automatically
11
+ - **DO NOT** make any commits
12
+
13
+ After the changelog is complete, you may suggest the user can run `/release-module` if they want to proceed with the actual release — but NEVER trigger it yourself.
14
+
15
+ ## Input
16
+ Project path (or run from project root)
17
+
18
+ ## Step 1: Identify Current State
19
+ - Get the latest released tag
20
+ - Get current version
21
+ - Verify there are commits since the last release
22
+
23
+ ## Step 2: Launch Explore Agent
24
+
25
+ Use `thoroughness: "very thorough"` to analyze all changes since the last release tag.
26
+
27
+ **Key: For each merge commit, look up the merged PR/issue that was closed.**
28
+ - Use `gh pr view` or git commit body to find the PR number
29
+ - Read the PR description and comments to understand full context
30
+ - Don't rely solely on commit merge messages - they lack context
31
+
32
+ **Analyze:**
33
+
34
+ 1. **All merges/commits** since the last tag
35
+ 2. **For each merge, read the original PR/issue** that was closed
36
+ 3. **Files changed** with statistics
37
+ 4. **Categorize changes:**
38
+ - 🎁 **Features** - New functionality, new agents, new workflows
39
+ - 🐛 **Bug Fixes** - Fixed bugs, corrected issues
40
+ - ♻️ **Refactoring** - Code improvements, reorganization
41
+ - 📚 **Documentation** - Docs updates, README changes
42
+ - 🔧 **Maintenance** - Dependency updates, tooling, infrastructure
43
+ - 💥 **Breaking Changes** - Changes that may affect users
44
+
45
+ **Provide:**
46
+ - Comprehensive summary of ALL changes with PR context
47
+ - Categorization of each change
48
+ - Identification of breaking changes
49
+ - Significance assessment (major/minor/trivial)
50
+
51
+ ## Step 3: Generate Draft Changelog
52
+
53
+ Format:
54
+ ```markdown
55
+ ## v0.X.X - [Date]
56
+
57
+ * [Change 1 - categorized by type]
58
+ * [Change 2]
59
+ ```
60
+
61
+ Guidelines:
62
+ - Present tense ("Fix bug" not "Fixed bug")
63
+ - Most significant changes first
64
+ - Group related changes
65
+ - Clear, concise language
66
+ - For breaking changes, clearly indicate impact
67
+
68
+ ## Step 4: Present Draft & Update CHANGELOG.md
69
+
70
+ Show the draft with current version, last tag, commit count, and options to edit/retry.
71
+
72
+ When user accepts:
73
+ 1. Update CHANGELOG.md with the new entry (insert at top, after `# Changelog` header)
74
+ 2. STOP. That's it. You're done.
75
+
76
+ You may optionally suggest: *"When ready, you can run `/release-module` to create the actual release."*
77
+
78
+ **DO NOT:**
79
+ - Trigger any GitHub workflows
80
+ - Run any other skills
81
+ - Make any commits
82
+ - Do anything beyond updating CHANGELOG.md
@@ -0,0 +1,14 @@
1
+ # gh-triage
2
+
3
+ Fetches all GitHub issues via gh CLI and uses AI agents to deeply analyze, cluster, and prioritize issues.
4
+
5
+ ## Usage
6
+
7
+ Run from within any BMad Method repository to triage issues.
8
+
9
+ ## What It Does
10
+
11
+ 1. Fetches all open issues via `gh issue list`
12
+ 2. Splits issues into batches
13
+ 3. Launches parallel agents to analyze each batch
14
+ 4. Generates comprehensive triage report to `_bmad-output/triage-reports/`
@@ -0,0 +1,12 @@
1
+ ---
2
+ name: gh-triage
3
+ description: Fetch all GitHub issues via gh CLI and use AI agents to deeply analyze, cluster, and prioritize issues
4
+ license: MIT
5
+ disable-model-invocation: true
6
+ metadata:
7
+ author: bmad-code-org
8
+ version: "3.0.0"
9
+ compatibility: Requires gh CLI, git repository, and BMad Method with Task tool support
10
+ ---
11
+
12
+ Read `prompts/instructions.md` and execute.
@@ -0,0 +1,60 @@
1
+ You are analyzing a batch of GitHub issues for deep understanding and triage.
2
+
3
+ **YOUR TASK:**
4
+ Read the issues in your batch and provide DEEP analysis:
5
+
6
+ 1. **For EACH issue, analyze:**
7
+ - What is this ACTUALLY about? (beyond keywords)
8
+ - What component/system does it affect?
9
+ - What's the impact and severity?
10
+ - Is it a bug, feature request, or something else?
11
+ - What specific theme does it belong to?
12
+
13
+ 2. **PRIORITY ASSESSMENT:**
14
+ - CRITICAL: Blocks users, security issues, data loss, broken installers
15
+ - HIGH: Major functionality broken, important features missing
16
+ - MEDIUM: Workarounds available, minor bugs, nice-to-have features
17
+ - LOW: Edge cases, cosmetic issues, questions
18
+
19
+ 3. **RELATIONSHIPS:**
20
+ - Duplicates: Near-identical issues about the same problem
21
+ - Related: Issues connected by theme or root cause
22
+ - Dependencies: One issue blocks or requires another
23
+
24
+ **YOUR BATCH:**
25
+ [Paste the batch of issues here - each with number, title, body, labels]
26
+
27
+ **OUTPUT FORMAT (JSON only, no markdown):**
28
+ {
29
+ "issues": [
30
+ {
31
+ "number": 123,
32
+ "title": "issue title",
33
+ "deep_understanding": "2-3 sentences explaining what this is really about",
34
+ "affected_components": ["installer", "workflows", "docs"],
35
+ "issue_type": "bug/feature/question/tech-debt",
36
+ "priority": "CRITICAL/HIGH/MEDIUM/LOW",
37
+ "priority_rationale": "Why this priority level",
38
+ "theme": "installation/workflow/integration/docs/ide-support/etc",
39
+ "relationships": {
40
+ "duplicates_of": [456],
41
+ "related_to": [789, 101],
42
+ "blocks": [111]
43
+ }
44
+ }
45
+ ],
46
+ "cross_repo_issues": [
47
+ {"number": 123, "target_repo": "bmad-builder", "reason": "about agent builder"}
48
+ ],
49
+ "cleanup_candidates": [
50
+ {"number": 456, "reason": "v4-related/outdated/duplicate"}
51
+ ],
52
+ "themes_found": {
53
+ "Installation Blockers": {
54
+ "count": 5,
55
+ "root_cause": "Common pattern if identifiable"
56
+ }
57
+ }
58
+ }
59
+
60
+ Return ONLY valid JSON. No explanations outside the JSON structure.
@@ -0,0 +1,74 @@
1
+ # GitHub Issue Triage with AI Analysis
2
+
3
+ **CRITICAL RULES:**
4
+ - NEVER include time or effort estimates in output or recommendations
5
+ - Focus on WHAT needs to be done, not HOW LONG it takes
6
+ - Use Bash tool with gh CLI for all GitHub operations
7
+
8
+ ## Execution
9
+
10
+ ### Step 1: Fetch Issues
11
+ Use `gh issue list --json number,title,body,labels` to fetch all open issues.
12
+
13
+ ### Step 2: Batch Creation
14
+ Split issues into batches of ~10 issues each for parallel analysis.
15
+
16
+ ### Step 3: Parallel Agent Analysis
17
+ For EACH batch, use the Task tool with `subagent_type=general-purpose` to launch an agent with prompt from `prompts/agent-prompt.md`
18
+
19
+ ### Step 4: Consolidate & Generate Report
20
+ After all agents complete, create a comprehensive markdown report saved to `_bmad-output/triage-reports/triage-YYYY-MM-DD.md`
21
+
22
+ ## Report Format
23
+
24
+ ### Executive Summary
25
+ - Total issues analyzed
26
+ - Issue count by priority (CRITICAL, HIGH, MEDIUM, LOW)
27
+ - Major themes discovered
28
+ - Top 5 critical issues requiring immediate attention
29
+
30
+ ### Critical Issues (CRITICAL Priority)
31
+ For each CRITICAL issue:
32
+ - **#123 - [Issue Title](url)**
33
+ - **What it's about:** [Deep understanding]
34
+ - **Affected:** [Components]
35
+ - **Why Critical:** [Rationale]
36
+ - **Suggested Action:** [Specific action]
37
+
38
+ ### High Priority Issues (HIGH Priority)
39
+ Same format as Critical, grouped by theme.
40
+
41
+ ### Theme Clusters
42
+ For each major theme:
43
+ - **Theme Name** (N issues)
44
+ - **What connects these:** [Pattern]
45
+ - **Root cause:** [If identifiable]
46
+ - **Consolidated actions:** [Bulk actions if applicable]
47
+ - **Issues:** #123, #456, #789
48
+
49
+ ### Relationships & Dependencies
50
+ - **Duplicates:** List pairs with `gh issue close` commands
51
+ - **Related Issues:** Groups of related issues
52
+ - **Dependencies:** Blocking relationships
53
+
54
+ ### Cross-Repo Issues
55
+ Issues that should be migrated to other repositories.
56
+
57
+ For each, provide:
58
+ ```
59
+ gh issue close XXX --repo CURRENT_REPO --comment "This issue belongs in REPO. Please report at https://github.com/TARGET_REPO/issues/new"
60
+ ```
61
+
62
+ ### Cleanup Candidates
63
+ - **v4-related:** Deprecated version issues with close commands
64
+ - **Stale:** No activity >30 days
65
+ - **Low priority + old:** Low priority issues >60 days old
66
+
67
+ ### Actionable Next Steps
68
+ Specific, prioritized actions:
69
+ 1. [CRITICAL] Fix broken installer - affects all new users
70
+ 2. [HIGH] Resolve Windows path escaping issues
71
+ 3. [HIGH] Address workflow integration bugs
72
+ etc.
73
+
74
+ Include `gh` commands where applicable for bulk actions.
@@ -0,0 +1,24 @@
1
+ # release-module
2
+
3
+ Automates the complete release process for npm modules.
4
+
5
+ ## Usage
6
+
7
+ Run from project root or pass project path:
8
+ ```
9
+ bmad-utility-skills:release-module
10
+ ```
11
+
12
+ ## Prerequisite
13
+
14
+ First run `draft-changelog` to analyze changes and create a draft changelog.
15
+
16
+ ## What It Does
17
+
18
+ 1. Gets and confirms changelog entry
19
+ 2. Confirms version bump type (patch/minor/major)
20
+ 3. Updates CHANGELOG.md
21
+ 4. Bumps version with `npm version`
22
+ 5. Pushes git tag
23
+ 6. Publishes to npm
24
+ 7. Creates GitHub release
@@ -0,0 +1,7 @@
1
+ ---
2
+ name: release-module
3
+ description: Automates the complete release process for npm modules - version bump, changelog, git tag, npm publish, GitHub release
4
+ disable-model-invocation: true
5
+ ---
6
+
7
+ Read `prompts/instructions.md` and execute.
@@ -0,0 +1,73 @@
1
+ # Release BMad Module Execution
2
+
3
+ ## Input
4
+ Project path (or run from project root)
5
+
6
+ ## Execution Steps
7
+
8
+ ### Step 1: Get Current State
9
+ - Verify git working tree is clean
10
+ - Get latest tag and current version
11
+ - Check for unpushed commits
12
+
13
+ ### Step 2: Get Changelog Entry
14
+
15
+ Ask the user for the changelog entry (from draft-changelog skill or manual).
16
+
17
+ ### Step 3: Confirm Changelog
18
+
19
+ Show project name, current version, proposed next version, and changelog. Get confirmation.
20
+
21
+ ### Step 4: Confirm Version Bump Type
22
+
23
+ Ask what type of bump: patch, minor, major, prerelease, or custom.
24
+
25
+ ### Step 5: Update CHANGELOG.md
26
+
27
+ Insert new entry at top, commit, and push.
28
+
29
+ ### Step 6: Bump Version
30
+
31
+ Run `npm version` to update package.json, create commit, and create tag.
32
+
33
+ ### Step 7: Push Tag
34
+
35
+ Push the new version tag to GitHub.
36
+
37
+ ### Step 8: Publish to npm
38
+
39
+ Publish the package.
40
+
41
+ ### Step 9: Create GitHub Release
42
+
43
+ Create release with changelog notes using `gh release create`.
44
+
45
+ ### Step 10: Create Social Announcement
46
+
47
+ Create a social media announcement file at `_bmad-output/social/{repo-name}-release.md`.
48
+
49
+ Format:
50
+ ```markdown
51
+ # {name} v{version} Released
52
+
53
+ ## Highlights
54
+ {2-3 bullet points of key features/changes}
55
+
56
+ ## Links
57
+ - GitHub: {release-url}
58
+ - npm: {npm-url}
59
+ ```
60
+
61
+ ### Step 11: Confirm Completion
62
+
63
+ Show npm, GitHub, and social announcement file paths.
64
+
65
+ ## Error Handling
66
+
67
+ Stop immediately on any step failure. Inform user and suggest fix.
68
+
69
+ ## Important Notes
70
+
71
+ - Wait for user confirmation before destructive operations
72
+ - Push changelog commit before version bump
73
+ - Use explicit directory paths in commands