bmad-method 1.0.1 → 4.2.0

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.
@@ -56,7 +56,7 @@ You are now operating as a Documentation Indexer. Your goal is to ensure all doc
56
56
 
57
57
  The index should be organized as follows:
58
58
 
59
- ````markdown
59
+ ```markdown
60
60
  # Documentation Index
61
61
 
62
62
  ## Root Documents
@@ -88,8 +88,7 @@ Documents within the `another-folder/` directory:
88
88
  ### [Nested Document](./another-folder/document.md)
89
89
 
90
90
  Description of nested document.
91
-
92
- ````text
91
+ ```text
93
92
 
94
93
  ### Index Entry Format
95
94
 
@@ -99,8 +98,7 @@ Each entry should follow this format:
99
98
  ### [Document Title](relative/path/to/file.md)
100
99
 
101
100
  Brief description of the document's purpose and contents.
102
- ````
103
- ````
101
+ ```
104
102
 
105
103
  ### Rules of Operation
106
104
 
@@ -0,0 +1,22 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(npm run build:*)",
5
+ "Bash(rm:*)",
6
+ "Bash(ls:*)",
7
+ "Bash(cat:*)",
8
+ "Bash(npm install:*)",
9
+ "Bash(npx husky init:*)",
10
+ "Bash(chmod:*)",
11
+ "Bash(node:*)",
12
+ "Bash(git add:*)",
13
+ "Bash(npx lint-staged:*)",
14
+ "Bash(npx prettier:*)",
15
+ "Bash(git commit:*)",
16
+ "Bash(mkdir:*)",
17
+ "Bash(npm run version:minor:*)",
18
+ "Bash(npm uninstall:*)"
19
+ ],
20
+ "deny": []
21
+ }
22
+ }
package/CHANGELOG.md CHANGED
@@ -1,9 +1,15 @@
1
- ## [1.0.1](https://github.com/bmadcode/BMAD-METHOD/compare/v1.0.0...v1.0.1) (2025-06-15)
1
+ # [1.1.0](https://github.com/bmadcode/BMAD-METHOD/compare/v1.0.1...v1.1.0) (2025-06-15)
2
+
3
+
4
+ ### Features
5
+
6
+ * update badges to use dynamic NPM version ([5a6fe36](https://github.com/bmadcode/BMAD-METHOD/commit/5a6fe361d085fcaef891a1862fc67878e726949c))
2
7
 
8
+ ## [1.0.1](https://github.com/bmadcode/BMAD-METHOD/compare/v1.0.0...v1.0.1) (2025-06-15)
3
9
 
4
10
  ### Bug Fixes
5
11
 
6
- * resolve NPM token configuration ([620b09a](https://github.com/bmadcode/BMAD-METHOD/commit/620b09a556ce8d61ad1a4d8ee7c523d263abd69c))
12
+ - resolve NPM token configuration ([620b09a](https://github.com/bmadcode/BMAD-METHOD/commit/620b09a556ce8d61ad1a4d8ee7c523d263abd69c))
7
13
 
8
14
  # 1.0.0 (2025-06-15)
9
15
 
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # BMAD-METHOD
2
2
 
3
- [![Version](https://img.shields.io/badge/version-4.0.0-blue.svg)](docs/versions.md)
3
+ [![Version](https://img.shields.io/npm/v/bmad-method?color=blue&label=version)](https://www.npmjs.com/package/bmad-method)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
5
5
  [![Node.js Version](https://img.shields.io/badge/node-%3E%3D14.0.0-brightgreen)](https://nodejs.org)
6
- [![Discord](https://img.shields.io/discord/1234567890?color=7289da&label=Discord&logo=discord&logoColor=white)](https://discord.gg/g6ypHytrCB)
6
+ [![Discord](https://img.shields.io/badge/Discord-Join%20Community-7289da?logo=discord&logoColor=white)](https://discord.gg/g6ypHytrCB)
7
7
 
8
8
  **AI-Powered Agile Development Framework** - Transform your software development with specialized AI agents that work as your complete Agile team.
9
9
 
@@ -24,13 +24,13 @@
24
24
 
25
25
  **Prerequisites**: Install [Node.js](https://nodejs.org) (v14 or higher)
26
26
 
27
- ```bash
27
+ ````bash
28
28
  npx bmad-method install
29
29
  # The installer will automatically detect your project state and guide you through:
30
30
  # - Fresh installation or upgrade from v3
31
31
  # - Full installation or single agent
32
32
  # - Destination folder and IDE configuration
33
- ```
33
+ ```text
34
34
 
35
35
  This installs all agents and configures them for your IDE. If you have an existing v3 installation, it will offer to upgrade it automatically.
36
36
 
@@ -86,7 +86,7 @@ npx bmad-method install
86
86
  # Or use command line options for fresh installations
87
87
  npx bmad-method install --full --directory ./my-project --ide cursor
88
88
  npx bmad-method install --agent pm --directory ./my-project --ide claude-code
89
- ```
89
+ ````
90
90
 
91
91
  **Supported IDEs:**
92
92
 
@@ -126,7 +126,7 @@ The BMad Method works with any IDE, but has built-in integration for:
126
126
 
127
127
  After installation with `--ide` flag:
128
128
 
129
- ```bash
129
+ ````bash
130
130
  # In Cursor
131
131
  @pm Create a PRD for a task management app
132
132
 
@@ -135,7 +135,7 @@ After installation with `--ide` flag:
135
135
 
136
136
  # In Windsurf
137
137
  @dev Implement story 1.3
138
- ```
138
+ ```text
139
139
 
140
140
  ### With Web UI (ChatGPT/Claude/Gemini)
141
141
 
@@ -152,16 +152,16 @@ npx bmad-method install
152
152
 
153
153
  # Check installation status
154
154
  npx bmad-method status
155
- ```
155
+ ````
156
156
 
157
157
  ### Upgrading from V3 to V4
158
158
 
159
159
  If you have an existing BMAD-METHOD V3 project, simply run the installer in your project directory:
160
160
 
161
- ```bash
161
+ ````bash
162
162
  npx bmad-method install
163
163
  # The installer will automatically detect your V3 installation and offer to upgrade
164
- ```
164
+ ```text
165
165
 
166
166
  The upgrade process will:
167
167
 
@@ -217,7 +217,7 @@ tools/
217
217
  └── lib/ # Build utilities
218
218
 
219
219
  expansion-packs/ # Optional add-ons (DevOps, Mobile, etc.)
220
- ```
220
+ ````
221
221
 
222
222
  ## Advanced Features
223
223
 
@@ -8,7 +8,7 @@ The easiest way to release new versions is through **automatic semantic releases
8
8
 
9
9
  Use these prefixes to control what type of release happens:
10
10
 
11
- ````bash
11
+ ```bash
12
12
  fix: resolve CLI argument parsing bug # → patch release (4.1.0 → 4.1.1)
13
13
  feat: add new agent orchestration mode # → minor release (4.1.0 → 4.2.0)
14
14
  feat!: redesign CLI interface # → major release (4.1.0 → 5.0.0)
@@ -35,13 +35,13 @@ git push
35
35
 
36
36
  # That's it! Release happens automatically 🎉
37
37
  # Users can now run: npx bmad-method (and get the new version)
38
- ````
38
+ ```
39
39
 
40
40
  ### Commits That DON'T Trigger Releases
41
41
 
42
42
  These commit types won't create releases (use them for maintenance):
43
43
 
44
- ````bash
44
+ ```bash
45
45
  chore: update dependencies # No release
46
46
  docs: fix typo in readme # No release
47
47
  style: format code # No release
@@ -52,7 +52,7 @@ test: add unit tests # No release
52
52
 
53
53
  ```bash
54
54
  npm run release:test # Safe to run locally - tests the config
55
- ````
55
+ ```
56
56
 
57
57
  ---
58
58
 
@@ -31,8 +31,8 @@ persona:
31
31
  - Collaborative Operations - Work closely with development teams fostering shared responsibility for system reliability
32
32
  startup:
33
33
  - Announce: Hey! I'm Alex, your DevOps Infrastructure Specialist. I love when things run secure, stable, reliable and performant. I can help with infrastructure architecture, platform engineering, CI/CD pipelines, and operational excellence. What infrastructure challenge can I help you with today?
34
- - "List available tasks: review-infrastructure, validate-infrastructure, create infrastructure documentation"
35
- - "List available templates: infrastructure-architecture, infrastructure-platform-from-arch"
34
+ - 'List available tasks: review-infrastructure, validate-infrastructure, create infrastructure documentation'
35
+ - 'List available templates: infrastructure-architecture, infrastructure-platform-from-arch'
36
36
  - Execute selected task or stay in persona to help guided by Core DevOps Principles
37
37
  commands:
38
38
  - '*help" - Show: numbered list of the following commands to allow selection'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-method",
3
- "version": "1.0.1",
3
+ "version": "4.2.0",
4
4
  "description": "Breakthrough Method of Agile AI-driven Development",
5
5
  "main": "tools/cli.js",
6
6
  "bin": {
@@ -33,7 +33,7 @@ installer/
33
33
 
34
34
  ## Usage
35
35
 
36
- ````bash
36
+ ```bash
37
37
  # Interactive installation
38
38
  npx bmad-method install
39
39
 
@@ -55,4 +55,4 @@ npm test
55
55
 
56
56
  # Lint code
57
57
  npm run lint
58
- ````
58
+ ```