bmad-fh 6.0.0-alpha.23.599980af → 6.0.0-alpha.23.6390fcb0
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name: Publish
|
|
1
|
+
name: Publish
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
@@ -41,8 +41,8 @@ jobs:
|
|
|
41
41
|
env:
|
|
42
42
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
43
43
|
run: |
|
|
44
|
-
echo "Publishing bmad-fh@${{ steps.version.outputs.version }}
|
|
45
|
-
npm publish
|
|
44
|
+
echo "Publishing bmad-fh@${{ steps.version.outputs.version }}"
|
|
45
|
+
npm publish
|
|
46
46
|
|
|
47
47
|
- name: Summary
|
|
48
48
|
run: |
|
|
@@ -50,5 +50,5 @@ jobs:
|
|
|
50
50
|
echo "" >> $GITHUB_STEP_SUMMARY
|
|
51
51
|
echo "### Installation" >> $GITHUB_STEP_SUMMARY
|
|
52
52
|
echo "\`\`\`bash" >> $GITHUB_STEP_SUMMARY
|
|
53
|
-
echo "npx bmad-fh
|
|
53
|
+
echo "npx bmad-fh install" >> $GITHUB_STEP_SUMMARY
|
|
54
54
|
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
|
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ Traditional AI tools do the thinking for you, producing average results. BMad ag
|
|
|
23
23
|
**Prerequisites**: [Node.js](https://nodejs.org) v20+
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
npx bmad-fh
|
|
26
|
+
npx bmad-fh install
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
Follow the installer prompts to configure your project. Then run:
|
|
@@ -72,45 +72,45 @@ BMad supports running multiple workflows in parallel across different terminal s
|
|
|
72
72
|
|
|
73
73
|
```bash
|
|
74
74
|
# Initialize scope system
|
|
75
|
-
npx bmad-fh
|
|
75
|
+
npx bmad-fh scope init
|
|
76
76
|
|
|
77
77
|
# Create scopes for different services
|
|
78
|
-
npx bmad-fh
|
|
79
|
-
npx bmad-fh
|
|
78
|
+
npx bmad-fh scope create auth --name "Authentication Service"
|
|
79
|
+
npx bmad-fh scope create payments --name "Payment Processing" --deps auth
|
|
80
80
|
|
|
81
81
|
# Set the active scope for your session
|
|
82
|
-
npx bmad-fh
|
|
82
|
+
npx bmad-fh scope set auth
|
|
83
83
|
|
|
84
84
|
# Run workflows in parallel (different terminals)
|
|
85
85
|
# Terminal 1: Set scope to auth, run agent workflows
|
|
86
86
|
# Terminal 2: Set scope to payments, run agent workflows
|
|
87
87
|
|
|
88
88
|
# Share artifacts between scopes
|
|
89
|
-
npx bmad-fh
|
|
90
|
-
npx bmad-fh
|
|
89
|
+
npx bmad-fh scope sync-up auth # Promote to shared layer
|
|
90
|
+
npx bmad-fh scope sync-down payments # Pull shared updates
|
|
91
91
|
```
|
|
92
92
|
|
|
93
93
|
### CLI Reference
|
|
94
94
|
|
|
95
|
-
| Command
|
|
96
|
-
|
|
|
97
|
-
| `npx bmad-fh
|
|
98
|
-
| `npx bmad-fh
|
|
99
|
-
| `npx bmad-fh
|
|
100
|
-
| `npx bmad-fh
|
|
101
|
-
| `npx bmad-fh
|
|
102
|
-
| `npx bmad-fh
|
|
103
|
-
| `npx bmad-fh
|
|
104
|
-
| `npx bmad-fh
|
|
105
|
-
| `npx bmad-fh
|
|
106
|
-
| `npx bmad-fh
|
|
107
|
-
| `npx bmad-fh
|
|
108
|
-
| `npx bmad-fh
|
|
95
|
+
| Command | Description |
|
|
96
|
+
| ---------------------------------- | ------------------------------------------- |
|
|
97
|
+
| `npx bmad-fh scope init` | Initialize the scope system in your project |
|
|
98
|
+
| `npx bmad-fh scope list` | List all scopes (alias: `ls`) |
|
|
99
|
+
| `npx bmad-fh scope create <id>` | Create a new scope (alias: `new`) |
|
|
100
|
+
| `npx bmad-fh scope info <id>` | Show scope details (alias: `show`) |
|
|
101
|
+
| `npx bmad-fh scope set [id]` | Set active scope for session (alias: `use`) |
|
|
102
|
+
| `npx bmad-fh scope unset` | Clear active scope (alias: `clear`) |
|
|
103
|
+
| `npx bmad-fh scope remove <id>` | Remove a scope (aliases: `rm`, `delete`) |
|
|
104
|
+
| `npx bmad-fh scope archive <id>` | Archive a completed scope |
|
|
105
|
+
| `npx bmad-fh scope activate <id>` | Reactivate an archived scope |
|
|
106
|
+
| `npx bmad-fh scope sync-up <id>` | Promote artifacts to shared layer |
|
|
107
|
+
| `npx bmad-fh scope sync-down <id>` | Pull shared updates into scope |
|
|
108
|
+
| `npx bmad-fh scope help [cmd]` | Show help (add command for detailed help) |
|
|
109
109
|
|
|
110
110
|
### Create Options
|
|
111
111
|
|
|
112
112
|
```bash
|
|
113
|
-
npx bmad-fh
|
|
113
|
+
npx bmad-fh scope create auth \
|
|
114
114
|
--name "Authentication Service" \
|
|
115
115
|
--description "User auth, SSO, and session management" \
|
|
116
116
|
--deps users,notifications \
|
|
@@ -168,7 +168,7 @@ Workflows (run via agent menus like `CP` for Create PRD, `DS` for Dev Story) aut
|
|
|
168
168
|
|
|
169
169
|
```bash
|
|
170
170
|
# Set scope for your terminal session
|
|
171
|
-
npx bmad-fh
|
|
171
|
+
npx bmad-fh scope set auth
|
|
172
172
|
|
|
173
173
|
# Or use environment variable (useful for CI/CD)
|
|
174
174
|
export BMAD_SCOPE=auth
|
|
@@ -186,11 +186,11 @@ export BMAD_SCOPE=auth
|
|
|
186
186
|
|
|
187
187
|
```bash
|
|
188
188
|
# Show comprehensive help for all scope commands
|
|
189
|
-
npx bmad-fh
|
|
189
|
+
npx bmad-fh scope help
|
|
190
190
|
|
|
191
191
|
# Get detailed help for a specific command
|
|
192
|
-
npx bmad-fh
|
|
193
|
-
npx bmad-fh
|
|
192
|
+
npx bmad-fh scope help create
|
|
193
|
+
npx bmad-fh scope help sync-up
|
|
194
194
|
```
|
|
195
195
|
|
|
196
196
|
See [Multi-Scope Guide](docs/multi-scope-guide.md) for complete documentation.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "bmad-fh",
|
|
4
|
-
"version": "6.0.0-alpha.23.
|
|
4
|
+
"version": "6.0.0-alpha.23.6390fcb0",
|
|
5
5
|
"description": "Breakthrough Method of Agile AI-driven Development",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"agile",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"lint:fix": "eslint . --ext .js,.cjs,.mjs,.yaml --fix",
|
|
40
40
|
"lint:md": "markdownlint-cli2 \"**/*.md\"",
|
|
41
41
|
"prepare": "husky",
|
|
42
|
-
"publish
|
|
42
|
+
"publish": "npm publish",
|
|
43
43
|
"rebundle": "node tools/cli/bundlers/bundle-web.js rebundle",
|
|
44
44
|
"release:major": "gh workflow run \"Manual Release\" -f version_bump=major",
|
|
45
45
|
"release:minor": "gh workflow run \"Manual Release\" -f version_bump=minor",
|