bmad-fh 6.0.0-alpha.23.599980af → 6.0.0-alpha.23.66f19588

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 Multi-Artifact
1
+ name: Publish
2
2
 
3
3
  on:
4
4
  push:
@@ -41,14 +41,28 @@ jobs:
41
41
  env:
42
42
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
43
43
  run: |
44
- echo "Publishing bmad-fh@${{ steps.version.outputs.version }} with tag multi-artifact"
45
- npm publish --tag multi-artifact
44
+ VERSION="${{ steps.version.outputs.version }}"
45
+ echo "Checking if bmad-fh@${VERSION} already exists..."
46
+
47
+ # Check if version already exists on npm
48
+ if npm view "bmad-fh@${VERSION}" version 2>/dev/null; then
49
+ echo "Version ${VERSION} already exists on npm, skipping publish"
50
+ echo "SKIPPED=true" >> $GITHUB_ENV
51
+ else
52
+ echo "Publishing bmad-fh@${VERSION}"
53
+ npm publish --ignore-scripts
54
+ echo "SKIPPED=false" >> $GITHUB_ENV
55
+ fi
46
56
 
47
57
  - name: Summary
48
58
  run: |
49
- echo "## Published bmad-fh@${{ steps.version.outputs.version }}" >> $GITHUB_STEP_SUMMARY
59
+ if [ "$SKIPPED" = "true" ]; then
60
+ echo "## Skipped - bmad-fh@${{ steps.version.outputs.version }} already exists" >> $GITHUB_STEP_SUMMARY
61
+ else
62
+ echo "## Published bmad-fh@${{ steps.version.outputs.version }}" >> $GITHUB_STEP_SUMMARY
63
+ fi
50
64
  echo "" >> $GITHUB_STEP_SUMMARY
51
65
  echo "### Installation" >> $GITHUB_STEP_SUMMARY
52
66
  echo "\`\`\`bash" >> $GITHUB_STEP_SUMMARY
53
- echo "npx bmad-fh@multi-artifact install" >> $GITHUB_STEP_SUMMARY
67
+ echo "npx bmad-fh install" >> $GITHUB_STEP_SUMMARY
54
68
  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@multi-artifact install
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@multi-artifact scope init
75
+ npx bmad-fh scope init
76
76
 
77
77
  # Create scopes for different services
78
- npx bmad-fh@multi-artifact scope create auth --name "Authentication Service"
79
- npx bmad-fh@multi-artifact scope create payments --name "Payment Processing" --deps auth
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@multi-artifact scope set auth
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@multi-artifact scope sync-up auth # Promote to shared layer
90
- npx bmad-fh@multi-artifact scope sync-down payments # Pull shared updates
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 | Description |
96
- | ------------------------------------------------- | ------------------------------------------- |
97
- | `npx bmad-fh@multi-artifact scope init` | Initialize the scope system in your project |
98
- | `npx bmad-fh@multi-artifact scope list` | List all scopes (alias: `ls`) |
99
- | `npx bmad-fh@multi-artifact scope create <id>` | Create a new scope (alias: `new`) |
100
- | `npx bmad-fh@multi-artifact scope info <id>` | Show scope details (alias: `show`) |
101
- | `npx bmad-fh@multi-artifact scope set [id]` | Set active scope for session (alias: `use`) |
102
- | `npx bmad-fh@multi-artifact scope unset` | Clear active scope (alias: `clear`) |
103
- | `npx bmad-fh@multi-artifact scope remove <id>` | Remove a scope (aliases: `rm`, `delete`) |
104
- | `npx bmad-fh@multi-artifact scope archive <id>` | Archive a completed scope |
105
- | `npx bmad-fh@multi-artifact scope activate <id>` | Reactivate an archived scope |
106
- | `npx bmad-fh@multi-artifact scope sync-up <id>` | Promote artifacts to shared layer |
107
- | `npx bmad-fh@multi-artifact scope sync-down <id>` | Pull shared updates into scope |
108
- | `npx bmad-fh@multi-artifact scope help [cmd]` | Show help (add command for detailed help) |
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@multi-artifact scope create auth \
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@multi-artifact scope set auth
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@multi-artifact scope help
189
+ npx bmad-fh scope help
190
190
 
191
191
  # Get detailed help for a specific command
192
- npx bmad-fh@multi-artifact scope help create
193
- npx bmad-fh@multi-artifact scope help sync-up
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.599980af",
4
+ "version": "6.0.0-alpha.23.66f19588",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -39,7 +39,6 @@
39
39
  "lint:fix": "eslint . --ext .js,.cjs,.mjs,.yaml --fix",
40
40
  "lint:md": "markdownlint-cli2 \"**/*.md\"",
41
41
  "prepare": "husky",
42
- "publish:multi-artifact": "npm publish --tag multi-artifact",
43
42
  "rebundle": "node tools/cli/bundlers/bundle-web.js rebundle",
44
43
  "release:major": "gh workflow run \"Manual Release\" -f version_bump=major",
45
44
  "release:minor": "gh workflow run \"Manual Release\" -f version_bump=minor",