bmad-method 6.0.0-Beta.5 → 6.0.0-Beta.7
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.
- package/.claude/skills/changelog-social/SKILL.md +178 -0
- package/.claude/skills/changelog-social/examples/discord-example.md +53 -0
- package/.claude/skills/changelog-social/examples/linkedin-example.md +49 -0
- package/.claude/skills/changelog-social/examples/twitter-example.md +55 -0
- package/.claude/skills/changelog-social.skill +0 -0
- package/.claude/skills/draft-changelog/SKILL.md +2 -2
- package/.claude/skills/draft-changelog/prompts/instructions.md +25 -1
- package/.claude/skills/gh-triage/SKILL.md +1 -1
- package/.claude/skills/release-module/SKILL.md +1 -1
- package/.claude/skills/release-module/prompts/instructions.md +0 -4
- package/.github/workflows/quality.yaml +3 -0
- package/.vscode/settings.json +1 -2
- package/CHANGELOG.md +65 -1
- package/docs/bmgd/game-types.md +1 -0
- package/docs/bmgd/index.md +1 -1
- package/docs/bmgd/quick-flow-workflows.md +1 -0
- package/docs/reference/agents.md +22 -0
- package/docs/reference/commands.md +34 -0
- package/docs/reference/testing.md +21 -0
- package/docs/reference/workflow-map.md +1 -1
- package/package.json +5 -2
- package/src/bmm/agents/analyst.agent.yaml +11 -5
- package/src/bmm/agents/dev.agent.yaml +0 -1
- package/src/bmm/agents/pm.agent.yaml +3 -6
- package/src/bmm/agents/{quinn.agent.yaml → qa.agent.yaml} +3 -3
- package/src/bmm/module-help.csv +13 -20
- package/src/bmm/workflows/1-analysis/create-product-brief/workflow.md +0 -1
- package/src/bmm/workflows/1-analysis/research/workflow-domain-research.md +54 -0
- package/src/bmm/workflows/1-analysis/research/workflow-market-research.md +54 -0
- package/src/bmm/workflows/1-analysis/research/workflow-technical-research.md +54 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/data/domain-complexity.csv +2 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-create-prd.md +63 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-edit-prd.md +65 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-validate-prd.md +65 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +0 -1
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md +0 -1
- package/src/bmm/workflows/3-solutioning/create-architecture/data/domain-complexity.csv +2 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/workflow.md +0 -1
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md +0 -1
- package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +0 -3
- package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +0 -4
- package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +0 -4
- package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +0 -4
- package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +0 -3
- package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +0 -4
- package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +0 -6
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md +0 -1
- package/src/bmm/workflows/document-project/workflow.yaml +0 -8
- package/src/bmm/workflows/qa/automate/workflow.yaml +0 -2
- package/src/core/tasks/editorial-review-prose.xml +14 -12
- package/src/core/tasks/editorial-review-structure.xml +28 -28
- package/src/core/tasks/help.md +36 -16
- package/src/core/tasks/index-docs.xml +1 -1
- package/src/core/tasks/review-adversarial-general.xml +2 -2
- package/src/core/tasks/shard-doc.xml +1 -2
- package/src/core/tasks/workflow.xml +1 -1
- package/src/core/workflows/advanced-elicitation/workflow.xml +1 -1
- package/test/test-installation-components.js +1 -1
- package/tools/build-docs.js +21 -1
- package/tools/cli/bmad-cli.js +42 -3
- package/tools/cli/installers/lib/core/config-collector.js +5 -1
- package/tools/cli/installers/lib/core/dependency-resolver.js +1 -1
- package/tools/cli/installers/lib/core/installer.js +1 -6
- package/tools/cli/installers/lib/core/manifest-generator.js +149 -125
- package/tools/cli/installers/lib/custom/handler.js +1 -1
- package/tools/cli/installers/lib/ide/_base-ide.js +25 -15
- package/tools/cli/installers/lib/ide/_config-driven.js +79 -9
- package/tools/cli/installers/lib/ide/codex.js +7 -1
- package/tools/cli/installers/lib/ide/manager.js +8 -2
- package/tools/cli/installers/lib/ide/platform-codes.yaml +0 -3
- package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +2 -2
- package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +14 -3
- package/tools/cli/installers/lib/ide/shared/path-utils.js +9 -2
- package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +126 -29
- package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +2 -2
- package/tools/cli/installers/lib/ide/templates/combined/default-task.md +10 -0
- package/tools/cli/installers/lib/ide/templates/combined/default-tool.md +10 -0
- package/tools/cli/installers/lib/ide/templates/combined/gemini-task.toml +11 -0
- package/tools/cli/installers/lib/ide/templates/combined/gemini-tool.toml +11 -0
- package/tools/cli/installers/lib/modules/manager.js +3 -6
- package/tools/cli/lib/agent/installer.js +1 -1
- package/tools/cli/lib/prompts.js +192 -6
- package/tools/cli/lib/ui.js +124 -72
- package/tools/schema/agent.js +0 -1
- package/tools/validate-file-refs.js +480 -0
- package/website/astro.config.mjs +1 -35
- package/src/bmm/workflows/1-analysis/research/workflow.md +0 -173
- package/src/bmm/workflows/2-plan-workflows/create-prd/validation-report-prd-workflow.md +0 -433
- package/src/bmm/workflows/2-plan-workflows/create-prd/workflow.md +0 -150
- package/src/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-library.json +0 -90
- package/src/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-templates.yaml +0 -127
- package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/checklist.md +0 -39
- package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/instructions.md +0 -130
- package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/workflow.yaml +0 -27
- package/src/bmm/workflows/excalidraw-diagrams/create-diagram/checklist.md +0 -43
- package/src/bmm/workflows/excalidraw-diagrams/create-diagram/instructions.md +0 -141
- package/src/bmm/workflows/excalidraw-diagrams/create-diagram/workflow.yaml +0 -27
- package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/checklist.md +0 -49
- package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/instructions.md +0 -241
- package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/workflow.yaml +0 -27
- package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/checklist.md +0 -38
- package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/instructions.md +0 -133
- package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/workflow.yaml +0 -27
- package/src/core/resources/excalidraw/README.md +0 -160
- package/src/core/resources/excalidraw/excalidraw-helpers.md +0 -127
- package/src/core/resources/excalidraw/library-loader.md +0 -50
- package/src/core/resources/excalidraw/validate-json-instructions.md +0 -79
- package/tools/flattener/aggregate.js +0 -76
- package/tools/flattener/binary.js +0 -80
- package/tools/flattener/discovery.js +0 -71
- package/tools/flattener/files.js +0 -35
- package/tools/flattener/ignoreRules.js +0 -172
- package/tools/flattener/main.js +0 -483
- package/tools/flattener/projectRoot.js +0 -201
- package/tools/flattener/prompts.js +0 -44
- package/tools/flattener/stats.helpers.js +0 -368
- package/tools/flattener/stats.js +0 -75
- package/tools/flattener/test-matrix.js +0 -409
- package/tools/flattener/xml.js +0 -82
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: bmad-os-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
|
+
**CRITICAL: ALWAYS write to files** - Create files in `_bmad-output/social/` directory:
|
|
158
|
+
|
|
159
|
+
1. `{repo-name}-discord-{version}.md` - Discord announcement
|
|
160
|
+
2. `{repo-name}-twitter-{version}.md` - Twitter post
|
|
161
|
+
3. `{repo-name}-linkedin-{version}.md` - LinkedIn post (if applicable)
|
|
162
|
+
|
|
163
|
+
Also present a preview in the chat:
|
|
164
|
+
|
|
165
|
+
```markdown
|
|
166
|
+
## Discord Announcement
|
|
167
|
+
|
|
168
|
+
[paste Discord content here]
|
|
169
|
+
|
|
170
|
+
## Twitter Post
|
|
171
|
+
|
|
172
|
+
[paste Twitter content here]
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
Files created:
|
|
176
|
+
- `_bmad-output/social/{filename}`
|
|
177
|
+
|
|
178
|
+
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
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: draft-changelog
|
|
3
|
-
description: Analyzes changes since
|
|
2
|
+
name: bmad-os-draft-changelog
|
|
3
|
+
description: Analyzes changes since last release and updates CHANGELOG.md ONLY. Does NOT trigger releases.
|
|
4
4
|
disable-model-invocation: true
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Draft Changelog Execution
|
|
2
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
|
+
|
|
3
15
|
## Input
|
|
4
16
|
Project path (or run from project root)
|
|
5
17
|
|
|
@@ -53,6 +65,18 @@ Guidelines:
|
|
|
53
65
|
- Clear, concise language
|
|
54
66
|
- For breaking changes, clearly indicate impact
|
|
55
67
|
|
|
56
|
-
## Step 4: Present Draft
|
|
68
|
+
## Step 4: Present Draft & Update CHANGELOG.md
|
|
57
69
|
|
|
58
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
|
|
@@ -42,10 +42,6 @@ Publish the package.
|
|
|
42
42
|
|
|
43
43
|
Create release with changelog notes using `gh release create`.
|
|
44
44
|
|
|
45
|
-
### Step 10: Confirm Completion
|
|
46
|
-
|
|
47
|
-
Show npm and GitHub links.
|
|
48
|
-
|
|
49
45
|
## Error Handling
|
|
50
46
|
|
|
51
47
|
Stop immediately on any step failure. Inform user and suggest fix.
|
package/.vscode/settings.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,70 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [6.0.0-Beta.7]
|
|
4
|
+
|
|
5
|
+
**Release: February 4, 2026**
|
|
6
|
+
|
|
7
|
+
### 🌟 Key Highlights
|
|
8
|
+
|
|
9
|
+
1. **Direct Workflow Invocation** — Agent workflows can now be run directly via slash commands instead of only through agent orchestration
|
|
10
|
+
2. **Installer Workflow Support** — Installer now picks up `workflow-*.md` files, enabling multiple workflow files per directory
|
|
11
|
+
|
|
12
|
+
### 🎁 Features
|
|
13
|
+
|
|
14
|
+
* **Slash Command Workflow Access** — Research and PRD workflows now accessible via direct slash commands: `/domain-research`, `/market-research`, `/technical-research`, `/create-prd`, `/edit-prd`, `/validate-prd` (bd620e38, 731bee26)
|
|
15
|
+
* **Version Checking** — CLI now checks npm for newer versions and displays a warning banner when updates are available (d37ee7f2)
|
|
16
|
+
|
|
17
|
+
### ♻️ Refactoring
|
|
18
|
+
|
|
19
|
+
* **Workflow File Splitting** — Split monolithic `workflow.md` files into specific `workflow-*.md` files for individual workflow invocation (bd620e38)
|
|
20
|
+
* **Installer Multi-Workflow Support** — Installer manifest generator now supports `workflow-*.md` pattern, allowing multiple workflow files per directory (731bee26)
|
|
21
|
+
* **Internal Skill Renaming** — Renamed internal project skills to use `bmad-os-` prefix for consistent naming (5276d58b)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## [6.0.0-Beta.6]
|
|
26
|
+
|
|
27
|
+
**Release: February 4, 2026**
|
|
28
|
+
|
|
29
|
+
### 🌟 Key Highlights
|
|
30
|
+
|
|
31
|
+
1. **Cross-File Reference Validator**: Comprehensive tool to detect broken file references, preventing 59 known bugs (~25% of historical issues)
|
|
32
|
+
2. **New AutocompleteMultiselect Prompt**: Searchable multi-select with improved tool/IDE selection UX
|
|
33
|
+
3. **Critical Installer Fixes**: Windows CRLF parsing, Gemini CLI TOML support, file extension preservation
|
|
34
|
+
4. **Codebase Cleanup**: Removed dead Excalidraw/flattener artifacts (-3,798 lines)
|
|
35
|
+
|
|
36
|
+
### 🎁 Features
|
|
37
|
+
|
|
38
|
+
* **Cross-File Reference Validator** — Validates ~483 references across ~217 source files, detecting absolute path leaks and broken references (PR #1494)
|
|
39
|
+
* **AutocompleteMultiselect Prompt** — Upgraded `@clack/prompts` to v1.0.0 with custom searchable multiselect, Tab-to-fill-placeholder behavior, and improved tool/IDE selection UX (PR #1514)
|
|
40
|
+
* **OT Domains** — Added `process_control` and `building_automation` domains with high complexity ratings (PR #1510)
|
|
41
|
+
* **Documentation Reference Pages** — Added `docs/reference/agents.md`, `commands.md`, and `testing.md` (PR #1525)
|
|
42
|
+
|
|
43
|
+
### 🐛 Bug Fixes
|
|
44
|
+
|
|
45
|
+
* **Critical Installer Fixes** — Fixed CRLF line ending parsing on Windows, Gemini CLI TOML support, file extension preservation, Codex task generation, Windows path handling, and CSV parsing (PR #1492)
|
|
46
|
+
* **Double Tool Questioning** — Removed redundant tool questioning during installation (df176d42)
|
|
47
|
+
* **QA Agent Rename** — Renamed Quinn agent to `qa` for naming consistency (PR #1508)
|
|
48
|
+
* **Documentation Organization** — Fixed documentation ordering and links, hide BMGD pages from main LLM docs (PR #1525)
|
|
49
|
+
|
|
50
|
+
### ♻️ Refactoring
|
|
51
|
+
|
|
52
|
+
* **Excalidraw/Flattener Removal** — Removed dead artifacts no longer supported beyond beta: Excalidraw workflows, flattener tool, and 12+ diagram creation workflows (-3,798 lines) (f699a368)
|
|
53
|
+
* **Centralized Constants** — Centralized `BMAD_FOLDER_NAME` to reduce hardcoded strings (PR #1492)
|
|
54
|
+
* **Cross-Platform Paths** — Fixed path separator inconsistencies in agent IDs (PR #1492)
|
|
55
|
+
|
|
56
|
+
### 📚 Documentation
|
|
57
|
+
|
|
58
|
+
* **BMGD Diataxis Refactor** — Refactored BMGD documentation using Diataxis principles for better organization (PR #1502)
|
|
59
|
+
* **Generate Project Context** — Restored `generate-project-context` workflow for brownfield project analysis (PR #1491)
|
|
60
|
+
|
|
61
|
+
### 🔧 Maintenance
|
|
62
|
+
|
|
63
|
+
* **Dependency Updates** — Upgraded `@clack/prompts` from v0.11.0 to v1.0.0 and added `@clack/core` (PR #1514)
|
|
64
|
+
* **CI Integration** — Added `validate:refs` to CI quality workflow with warning annotations (PR #1494)
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
3
68
|
## [6.0.0-Beta.5]
|
|
4
69
|
|
|
5
70
|
### 🎁 Features
|
|
@@ -1201,7 +1266,6 @@ Located in `src/modules/bmb/workflows/agent/data/`:
|
|
|
1201
1266
|
|
|
1202
1267
|
- **Workflow Vendoring**: Web bundler performs automatic cross-module dependency vendoring
|
|
1203
1268
|
- **BMGD Module Extraction**: Game development split into standalone 4-phase structure
|
|
1204
|
-
- **Enhanced Dependency Resolution**: Better handling of web_bundle: false workflows
|
|
1205
1269
|
- **Advanced Elicitation Fix**: Added missing CSV files to workflow bundles
|
|
1206
1270
|
- **Claude Code Fix**: Resolved README slash command installation regression
|
|
1207
1271
|
|
package/docs/bmgd/game-types.md
CHANGED
package/docs/bmgd/index.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
title: "BMGD Quick Guide"
|
|
3
3
|
description: Quick reference for BMad Game Dev Studio
|
|
4
|
+
draft: true
|
|
4
5
|
---
|
|
5
6
|
|
|
6
7
|

|
|
@@ -110,4 +111,3 @@ Each template provides genre-specific GDD sections, mechanics patterns, testing
|
|
|
110
111
|
|
|
111
112
|
- [Game Types Guide](game-types.md)
|
|
112
113
|
- [Quick-Flow Guide](quick-flow-workflows.md)
|
|
113
|
-
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Agents
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
This page lists the default BMM (Agile suite) agents that install with BMAD Method, along with their menu triggers and primary workflows.
|
|
6
|
+
|
|
7
|
+
Notes:
|
|
8
|
+
- Triggers are the short menu codes (e.g., `CP`) and fuzzy matches shown in each agent menu.
|
|
9
|
+
- Slash commands are generated separately. See `docs/reference/commands.md` for the slash command list and where they are defined.
|
|
10
|
+
- QA (Quinn) is the lightweight test automation agent in BMM. The full Test Architect (TEA) lives in its own module.
|
|
11
|
+
|
|
12
|
+
| Agent | Triggers | Primary workflows |
|
|
13
|
+
| --------------------------- | ---------------------------------- | --------------------------------------------------------------------------------------------------- |
|
|
14
|
+
| Analyst (Mary) | `BP`, `RS`, `CB`, `DP` | Brainstorm Project, Research, Create Brief, Document Project |
|
|
15
|
+
| Product Manager (John) | `CP`, `VP`, `EP`, `CE`, `IR`, `CC` | Create/Validate/Edit PRD, Create Epics and Stories, Implementation Readiness, Correct Course |
|
|
16
|
+
| Architect (Winston) | `CA`, `IR` | Create Architecture, Implementation Readiness |
|
|
17
|
+
| Scrum Master (Bob) | `SP`, `CS`, `ER`, `CC` | Sprint Planning, Create Story, Epic Retrospective, Correct Course |
|
|
18
|
+
| Developer (Amelia) | `DS`, `CR` | Dev Story, Code Review |
|
|
19
|
+
| QA Engineer (Quinn) | `QA` | Automate (generate tests for existing features) |
|
|
20
|
+
| Quick Flow Solo Dev (Barry) | `QS`, `QD`, `CR` | Quick Spec, Quick Dev, Code Review |
|
|
21
|
+
| UX Designer (Sally) | `CU` | Create UX Design |
|
|
22
|
+
| Technical Writer (Paige) | `DP`, `WD`, `US`, `MG`, `VD`, `EC` | Document Project, Write Document, Update Standards, Mermaid Generate, Validate Doc, Explain Concept |
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Commands
|
|
3
|
+
description: How BMAD commands are generated and where to find them.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Commands
|
|
7
|
+
|
|
8
|
+
BMAD slash commands are generated by the installer for your IDE and **reflect the modules you have installed**.
|
|
9
|
+
That means the authoritative list lives **in your project**, not in a static docs page.
|
|
10
|
+
|
|
11
|
+
## How to Discover Commands (Recommended)
|
|
12
|
+
|
|
13
|
+
- Type `/bmad` in your IDE and use autocomplete to browse agents/workflows.
|
|
14
|
+
- Run `/bmad-help` to get guided next steps and context-aware recommendations.
|
|
15
|
+
|
|
16
|
+
## Where Commands Are Generated
|
|
17
|
+
|
|
18
|
+
The installer writes command files into your project (example paths for Claude Code):
|
|
19
|
+
|
|
20
|
+
- `.claude/commands/bmad/<module>/agents/`
|
|
21
|
+
- `.claude/commands/bmad/<module>/workflows/`
|
|
22
|
+
|
|
23
|
+
These folders are the **canonical, project-specific command list**.
|
|
24
|
+
|
|
25
|
+
## Common Commands
|
|
26
|
+
|
|
27
|
+
- `/bmad-help` - Interactive help and next-step guidance
|
|
28
|
+
- `/bmad:<module>:agents:<agent>` - Load an agent (e.g. `/bmad:bmm:agents:dev`)
|
|
29
|
+
- `/bmad:<module>:workflows:<workflow>` - Run a workflow (e.g. `/bmad:bmm:workflows:create-prd`)
|
|
30
|
+
|
|
31
|
+
## Why This Page Is Short
|
|
32
|
+
|
|
33
|
+
BMAD is modular, so the exact commands vary by install.
|
|
34
|
+
Use your IDE's autocomplete or the generated command folders above to see *everything* available.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Testing Options
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Testing Options
|
|
6
|
+
|
|
7
|
+
BMad provides a built-in QA agent for quick test automation and a separate Test Architect (TEA) module for advanced testing.
|
|
8
|
+
|
|
9
|
+
## Built-in QA (Quinn)
|
|
10
|
+
|
|
11
|
+
Use the built-in QA agent for fast, straightforward test coverage:
|
|
12
|
+
|
|
13
|
+
- Trigger: `QA` or `bmad-bmm-qa-automate`
|
|
14
|
+
- Best for: small projects, quick coverage, standard patterns
|
|
15
|
+
|
|
16
|
+
## Test Architect (TEA) Module
|
|
17
|
+
|
|
18
|
+
TEA is a standalone module with advanced testing workflows (test design, ATDD, automate, review, trace, NFR assessment).
|
|
19
|
+
|
|
20
|
+
- Documentation: <https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/>
|
|
21
|
+
- Install: `npx bmad-method@alpha install` and select the TEA module
|
|
@@ -58,7 +58,7 @@ Build it, one story at a time.
|
|
|
58
58
|
| `correct-course` | Handle significant mid-sprint changes | Updated plan or re-routing |
|
|
59
59
|
| `retrospective` | Review after epic completion | Lessons learned |
|
|
60
60
|
|
|
61
|
-
**Quinn (QA Agent):** Built-in QA agent for test automation. Trigger with `QA` or `bmad-bmm-automate`. Generates standard API and E2E tests using your project's test framework. Beginner-friendly, no configuration needed. For advanced test strategy, install [Test Architect (TEA)](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/) module.
|
|
61
|
+
**Quinn (QA Agent):** Built-in QA agent for test automation. Trigger with `QA` or `bmad-bmm-qa-automate`. Generates standard API and E2E tests using your project's test framework. Beginner-friendly, no configuration needed. For advanced test strategy, install [Test Architect (TEA)](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/) module.
|
|
62
62
|
|
|
63
63
|
## Quick Flow (Parallel Track)
|
|
64
64
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "bmad-method",
|
|
4
|
-
"version": "6.0.0-Beta.
|
|
4
|
+
"version": "6.0.0-Beta.7",
|
|
5
5
|
"description": "Breakthrough Method of Agile AI-driven Development",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"agile",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"test:coverage": "c8 --reporter=text --reporter=html npm run test:schemas",
|
|
50
50
|
"test:install": "node test/test-installation-components.js",
|
|
51
51
|
"test:schemas": "node test/test-agent-schema.js",
|
|
52
|
+
"validate:refs": "node tools/validate-file-refs.js",
|
|
52
53
|
"validate:schemas": "node tools/validate-agent-schema.js"
|
|
53
54
|
},
|
|
54
55
|
"lint-staged": {
|
|
@@ -68,7 +69,8 @@
|
|
|
68
69
|
]
|
|
69
70
|
},
|
|
70
71
|
"dependencies": {
|
|
71
|
-
"@clack/
|
|
72
|
+
"@clack/core": "^1.0.0",
|
|
73
|
+
"@clack/prompts": "^1.0.0",
|
|
72
74
|
"@kayvan/markdown-tree-parser": "^1.6.1",
|
|
73
75
|
"boxen": "^5.1.2",
|
|
74
76
|
"chalk": "^4.1.2",
|
|
@@ -81,6 +83,7 @@
|
|
|
81
83
|
"ignore": "^7.0.5",
|
|
82
84
|
"js-yaml": "^4.1.0",
|
|
83
85
|
"ora": "^5.4.1",
|
|
86
|
+
"picocolors": "^1.1.1",
|
|
84
87
|
"semver": "^7.6.3",
|
|
85
88
|
"wrap-ansi": "^7.0.0",
|
|
86
89
|
"xml2js": "^0.6.2",
|