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 +4 -5
- package/package.json +1 -1
- package/src/bmm-skills/plan/bmad-sprint-planning/scripts/__pycache__/sprint_plan.cpython-311.pyc +0 -0
- package/src/bmm-skills/plan/bmad-sprint-planning/scripts/tests/__pycache__/test_sprint_plan.cpython-311-pytest-9.1.1.pyc +0 -0
- package/src/bmm-skills/ship/bmad-build/review-prompts/edge-case-hunter.md +2 -0
- package/src/bmm-skills/ship/bmad-build-auto/review-prompts/edge-case-hunter.md +2 -0
- package/src/bmm-skills/ship/bmad-code-review/review-prompts/edge-case-hunter.md +2 -0
- package/src/bmm-skills/ship/bmad-retrospective/scripts/__pycache__/sprint_status.cpython-311.pyc +0 -0
- package/src/bmm-skills/ship/bmad-retrospective/scripts/tests/__pycache__/test_git_evidence.cpython-311-pytest-9.1.1.pyc +0 -0
- package/src/bmm-skills/ship/bmad-retrospective/scripts/tests/__pycache__/test_sprint_status.cpython-311-pytest-9.1.1.pyc +0 -0
- package/src/core-skills/bmad-review/references/lens-edge-case-hunter.md +2 -0
- package/src/scripts/__pycache__/config_utils.cpython-311.pyc +0 -0
- package/src/scripts/tests/__pycache__/test_config_utils.cpython-311.pyc +0 -0
- package/src/scripts/tests/__pycache__/test_resolve_config.cpython-311.pyc +0 -0
- package/src/scripts/tests/__pycache__/test_resolve_customization.cpython-311.pyc +0 -0
- package/tools/installer/ide/platform-codes.yaml +6 -0
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/
|
|
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
|
|
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
|
-
- **[
|
|
66
|
-
- **[
|
|
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
package/src/bmm-skills/plan/bmad-sprint-planning/scripts/__pycache__/sprint_plan.cpython-311.pyc
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -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
|
|
package/src/bmm-skills/ship/bmad-retrospective/scripts/__pycache__/sprint_status.cpython-311.pyc
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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
|