bmad-method 6.11.1-next.32 → 6.11.1-next.34

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 CHANGED
@@ -25,7 +25,7 @@ Open your project in your AI coding tool, invoke `bmad-build` with what you want
25
25
 
26
26
  **[Build your first project with BMad →](https://docs.bmad-method.org/start/build-your-first-change/)**
27
27
 
28
- **[Add BMad to an existing codebase →](https://docs.bmad-method.org/how-to/established-projects/)**
28
+ **[Add BMad to an existing codebase →](https://docs.bmad-method.org/existing-codebases/start-in-an-existing-codebase/)**
29
29
 
30
30
  BMad is free and open source, with no paywalled workflows or gated community. For installation prerequisites, updates, prerelease builds, and the installer's live automation help, see the [installation guide](https://docs.bmad-method.org/start/install-bmad/).
31
31
 
@@ -40,7 +40,7 @@ Coding assistants are effective at implementation, but they often turn unstated
40
40
  - **Guided collaboration** — Use structured workflows and multiple-agent discussions without handing over judgment.
41
41
  - **One delivery path** — Move from early thinking through reviewed implementation, correction, and learning.
42
42
 
43
- [See how the workflows fit together →](https://docs.bmad-method.org/reference/workflow-map/)
43
+ [See how much planning a change needs →](https://docs.bmad-method.org/plan/choose-a-planning-path/)
44
44
 
45
45
  ## BMad Ecosystem
46
46
 
@@ -62,9 +62,8 @@ Install the core method or add official modules for specialized work.
62
62
  ## Documentation
63
63
 
64
64
  - **[Build Your First Change](https://docs.bmad-method.org/start/build-your-first-change/)** — Install BMad and build a small project.
65
- - **[Workflow Map](https://docs.bmad-method.org/reference/workflow-map/)** — Understand the available paths and outputs.
66
- - **[Established Projects](https://docs.bmad-method.org/how-to/established-projects/)** — Add BMad to an existing codebase.
67
- - **[Upgrade to V6](https://docs.bmad-method.org/how-to/upgrade-to-v6/)** — Migrate from an earlier version.
65
+ - **[Choose a Planning Path](https://docs.bmad-method.org/plan/choose-a-planning-path/)** — Pick how much planning a change needs and see what each planning skill produces.
66
+ - **[Start in an Existing Codebase](https://docs.bmad-method.org/existing-codebases/start-in-an-existing-codebase/)** — Add BMad to an existing codebase.
68
67
 
69
68
  ## Community
70
69
 
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.11.1-next.32",
4
+ "version": "6.11.1-next.34",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -32,6 +32,8 @@ A claims check runs as Step 5.
32
32
  - If `also_consider` input was provided, incorporate those areas into the analysis
33
33
  - Walk all branching paths: control flow (conditionals, loops, error handlers, early returns) and domain boundaries (where values, states, or conditions transition). Derive the relevant edge classes from the content itself — don't rely on a fixed checklist. Examples: missing else/default, unguarded inputs, off-by-one loops, arithmetic overflow, implicit type coercion, race conditions, timeout gaps
34
34
  - Consider implicit branches: the diff special-cases or changes the handling of one or more members of a fixed set of values — enums, status codes, sentinels, type tags, flags, value ranges. The rest of the set is implicit branches (e.g. the diff changes the `RED` and `YELLOW` cases of a `RED`/`YELLOW`/`GREEN` enum; `GREEN` is the implicit branch)
35
+ - Consider handle lifetime: when the changed code re-checks, re-fetches, or re-validates something it already held — a handle, index, id, pointer — the re-check exists because an intervening call can invalidate it. Identify that call, what it does to the thing held, and what the changed code silently skips when the re-check fails
36
+ - For each call site the diff adds or changes — in test files as well as production code — read the callee's declaration and check the call against it: argument count, order, types, and defaults. Report any mismatch
35
37
  - For each path: determine whether the content handles it
36
38
  - Collect only the unhandled paths as findings — discard handled ones silently
37
39
 
@@ -32,6 +32,8 @@ A claims check runs as Step 5.
32
32
  - If `also_consider` input was provided, incorporate those areas into the analysis
33
33
  - Walk all branching paths: control flow (conditionals, loops, error handlers, early returns) and domain boundaries (where values, states, or conditions transition). Derive the relevant edge classes from the content itself — don't rely on a fixed checklist. Examples: missing else/default, unguarded inputs, off-by-one loops, arithmetic overflow, implicit type coercion, race conditions, timeout gaps
34
34
  - Consider implicit branches: the diff special-cases or changes the handling of one or more members of a fixed set of values — enums, status codes, sentinels, type tags, flags, value ranges. The rest of the set is implicit branches (e.g. the diff changes the `RED` and `YELLOW` cases of a `RED`/`YELLOW`/`GREEN` enum; `GREEN` is the implicit branch)
35
+ - Consider handle lifetime: when the changed code re-checks, re-fetches, or re-validates something it already held — a handle, index, id, pointer — the re-check exists because an intervening call can invalidate it. Identify that call, what it does to the thing held, and what the changed code silently skips when the re-check fails
36
+ - For each call site the diff adds or changes — in test files as well as production code — read the callee's declaration and check the call against it: argument count, order, types, and defaults. Report any mismatch
35
37
  - For each path: determine whether the content handles it
36
38
  - Collect only the unhandled paths as findings — discard handled ones silently
37
39
 
@@ -32,6 +32,8 @@ A claims check runs as Step 5 when the launch message names a claims file.
32
32
  - If `also_consider` input was provided, incorporate those areas into the analysis
33
33
  - Walk all branching paths: control flow (conditionals, loops, error handlers, early returns) and domain boundaries (where values, states, or conditions transition). Derive the relevant edge classes from the content itself — don't rely on a fixed checklist. Examples: missing else/default, unguarded inputs, off-by-one loops, arithmetic overflow, implicit type coercion, race conditions, timeout gaps
34
34
  - Consider implicit branches: the diff special-cases or changes the handling of one or more members of a fixed set of values — enums, status codes, sentinels, type tags, flags, value ranges. The rest of the set is implicit branches (e.g. the diff changes the `RED` and `YELLOW` cases of a `RED`/`YELLOW`/`GREEN` enum; `GREEN` is the implicit branch)
35
+ - Consider handle lifetime: when the changed code re-checks, re-fetches, or re-validates something it already held — a handle, index, id, pointer — the re-check exists because an intervening call can invalidate it. Identify that call, what it does to the thing held, and what the changed code silently skips when the re-check fails
36
+ - For each call site the diff adds or changes — in test files as well as production code — read the callee's declaration and check the call against it: argument count, order, types, and defaults. Report any mismatch
35
37
  - For each path: determine whether the content handles it
36
38
  - Collect only the unhandled paths as findings — discard handled ones silently
37
39
 
@@ -18,6 +18,8 @@ Walk every branching path and boundary condition within scope — report only un
18
18
  - If `also_consider` areas were provided, incorporate them into the analysis
19
19
  - Walk all branching paths: control flow (conditionals, loops, error handlers, early returns) and domain boundaries (where values, states, or conditions transition). Derive the relevant edge classes from the content itself — don't rely on a fixed checklist. Examples: missing else/default, unguarded inputs, off-by-one loops, arithmetic overflow, implicit type coercion, race conditions, timeout gaps
20
20
  - Consider implicit branches: the diff special-cases or changes the handling of one or more members of a fixed set of values — enums, status codes, sentinels, type tags, flags, value ranges. The rest of the set is implicit branches (e.g. the diff changes the `RED` and `YELLOW` cases of a `RED`/`YELLOW`/`GREEN` enum; `GREEN` is the implicit branch)
21
+ - Consider handle lifetime: when the changed code re-checks, re-fetches, or re-validates something it already held — a handle, index, id, pointer — the re-check exists because an intervening call can invalidate it. Identify that call, what it does to the thing held, and what the changed code silently skips when the re-check fails
22
+ - For each call site the diff adds or changes — in test files as well as production code — read the callee's declaration and check the call against it: argument count, order, types, and defaults. Report any mismatch
21
23
  - For each path: determine whether the content handles it
22
24
  - Collect only the unhandled paths as findings — discard handled ones silently
23
25
 
@@ -288,6 +288,12 @@ platforms:
288
288
  target_dir: .agents/skills
289
289
  global_target_dir: ~/.agents/skills
290
290
 
291
+ polytoken:
292
+ name: "Polytoken"
293
+ preferred: false
294
+ installer:
295
+ target_dir: .agents/skills
296
+
291
297
  qoder:
292
298
  name: "Qoder"
293
299
  preferred: false