bmad-method 6.4.1-next.0 → 6.5.1-next.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.
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.4.1-next.0",
4
+ "version": "6.5.1-next.0",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
package/removals.txt CHANGED
@@ -15,3 +15,40 @@ bmad-quick-spec
15
15
  bmad-quick-flow
16
16
  bmad-quick-dev-new-preview
17
17
  bmad-init
18
+
19
+ # Pre-v6.2.0 wrapper skills (module-prefixed naming, dropped in v6.2.0).
20
+ # Users upgrading from v6.0.x / v6.1.x had these installed and the cleanup
21
+ # never knew to remove them; they remained alongside the new self-contained
22
+ # skills causing duplicates and broken-file errors. See issue #2309.
23
+ bmad-agent-bmm-analyst
24
+ bmad-agent-bmm-architect
25
+ bmad-agent-bmm-dev
26
+ bmad-agent-bmm-pm
27
+ bmad-agent-bmm-qa
28
+ bmad-agent-bmm-quick-flow-solo-dev
29
+ bmad-agent-bmm-sm
30
+ bmad-agent-bmm-tech-writer
31
+ bmad-agent-bmm-ux-designer
32
+ bmad-bmm-check-implementation-readiness
33
+ bmad-bmm-code-review
34
+ bmad-bmm-correct-course
35
+ bmad-bmm-create-architecture
36
+ bmad-bmm-create-epics-and-stories
37
+ bmad-bmm-create-prd
38
+ bmad-bmm-create-product-brief
39
+ bmad-bmm-create-story
40
+ bmad-bmm-create-ux-design
41
+ bmad-bmm-dev-story
42
+ bmad-bmm-document-project
43
+ bmad-bmm-domain-research
44
+ bmad-bmm-edit-prd
45
+ bmad-bmm-generate-project-context
46
+ bmad-bmm-market-research
47
+ bmad-bmm-qa-generate-e2e-tests
48
+ bmad-bmm-quick-dev
49
+ bmad-bmm-quick-spec
50
+ bmad-bmm-retrospective
51
+ bmad-bmm-sprint-planning
52
+ bmad-bmm-sprint-status
53
+ bmad-bmm-technical-research
54
+ bmad-bmm-validate-prd
@@ -23,13 +23,10 @@ checkForUpdate().catch(() => {
23
23
 
24
24
  async function checkForUpdate() {
25
25
  try {
26
- // For beta versions, check the beta tag; otherwise check latest
27
- const isBeta =
28
- packageJson.version.includes('Beta') ||
29
- packageJson.version.includes('beta') ||
30
- packageJson.version.includes('alpha') ||
31
- packageJson.version.includes('rc');
32
- const tag = isBeta ? 'beta' : 'latest';
26
+ // Prereleases (e.g. 6.5.1-next.0) live on the `next` dist-tag; stable
27
+ // releases live on `latest`. semver.prerelease() returns null for stable,
28
+ // so this correctly routes pre-1.0-next/rc/etc. without string matching.
29
+ const tag = semver.prerelease(packageJson.version) ? 'next' : 'latest';
33
30
 
34
31
  const result = execSync(`npm view ${packageName}@${tag} version`, {
35
32
  encoding: 'utf8',