bmad-enhanced 1.6.3 → 1.6.4
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/README.md +6 -1
- package/UPDATE-GUIDE.md +10 -0
- package/package.json +1 -1
- package/scripts/update/bmad-update.js +3 -0
- package/scripts/update/bmad-version.js +2 -2
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
**BMAD Method enhanced by domain-specialized agents**
|
|
14
14
|
|
|
15
|
-
[](https://github.com/amalik/BMAD-Enhanced)
|
|
16
16
|
[](docs/agents.md)
|
|
17
17
|
[](docs/agents.md)
|
|
18
18
|
[](LICENSE)
|
|
@@ -112,6 +112,11 @@ npx bmad-doctor # Diagnose issues
|
|
|
112
112
|
|
|
113
113
|
Your data in `_bmad-output/` is never touched. Automatic backups are created before every update.
|
|
114
114
|
|
|
115
|
+
> **Tip:** If `npx bmad-update` reports "Already up to date" but you know a newer version exists, npx may be serving a cached copy. Force the latest with:
|
|
116
|
+
> ```bash
|
|
117
|
+
> npx -p bmad-enhanced@latest bmad-update
|
|
118
|
+
> ```
|
|
119
|
+
|
|
115
120
|
See [UPDATE-GUIDE.md](UPDATE-GUIDE.md) for migration paths and troubleshooting.
|
|
116
121
|
|
|
117
122
|
---
|
package/UPDATE-GUIDE.md
CHANGED
|
@@ -152,6 +152,16 @@ cp -r _bmad-output/.backups/{backup-dir}/agents _bmad/bme/_vortex/
|
|
|
152
152
|
cp -r _bmad-output/.backups/{backup-dir}/workflows _bmad/bme/_vortex/
|
|
153
153
|
```
|
|
154
154
|
|
|
155
|
+
### "Already up to date" but version is outdated
|
|
156
|
+
|
|
157
|
+
npx caches package binaries. If you installed at an older version, `npx bmad-update` may keep running the cached script instead of the latest. Force-fetch the latest:
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
npx -p bmad-enhanced@latest bmad-update
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
This tells npx to download `bmad-enhanced@latest` first, then run the `bmad-update` bin from it.
|
|
164
|
+
|
|
155
165
|
### "Installation appears corrupted"
|
|
156
166
|
|
|
157
167
|
Reinstall from scratch (preserves user data):
|
package/package.json
CHANGED
|
@@ -118,6 +118,9 @@ async function main() {
|
|
|
118
118
|
case 'up-to-date':
|
|
119
119
|
console.log(chalk.green(`✓ Already up to date! (v${assessment.currentVersion})`));
|
|
120
120
|
console.log('');
|
|
121
|
+
console.log(chalk.gray('If you expected a newer version, npx may be serving a cached copy.'));
|
|
122
|
+
console.log(chalk.gray('Run: ') + chalk.cyan('npx -p bmad-enhanced@latest bmad-update'));
|
|
123
|
+
console.log('');
|
|
121
124
|
process.exit(0);
|
|
122
125
|
break;
|
|
123
126
|
|
|
@@ -80,8 +80,8 @@ async function main() {
|
|
|
80
80
|
} else if (compareVersions(currentVersion, targetVersion) < 0) {
|
|
81
81
|
console.log(chalk.yellow('Status: ⚠ Update available'));
|
|
82
82
|
console.log('');
|
|
83
|
-
console.log('Run: ' + chalk.cyan('npx bmad-update --dry-run') + ' (to preview)');
|
|
84
|
-
console.log(' ' + chalk.cyan('npx bmad-update') + ' (to apply)');
|
|
83
|
+
console.log('Run: ' + chalk.cyan('npx -p bmad-enhanced@latest bmad-update --dry-run') + ' (to preview)');
|
|
84
|
+
console.log(' ' + chalk.cyan('npx -p bmad-enhanced@latest bmad-update') + ' (to apply)');
|
|
85
85
|
} else {
|
|
86
86
|
console.log(chalk.yellow(`Status: Package version (${targetVersion}) is older than installed (${currentVersion})`));
|
|
87
87
|
}
|