Compare commits
7 Commits
932d672916
...
646a806d65
| Author | SHA1 | Date |
|---|---|---|
|
|
646a806d65 | |
|
|
3a24d8ffc9 | |
|
|
15f49b8bd4 | |
|
|
d51e2159e5 | |
|
|
b161491ca8 | |
|
|
98f8786060 | |
|
|
229c1c57f9 |
|
|
@ -3,7 +3,7 @@ title: '{title}'
|
||||||
type: 'feature' # feature | bugfix | refactor | chore
|
type: 'feature' # feature | bugfix | refactor | chore
|
||||||
created: '{date}'
|
created: '{date}'
|
||||||
status: 'draft' # draft | ready-for-dev | in-progress | in-review | done
|
status: 'draft' # draft | ready-for-dev | in-progress | in-review | done
|
||||||
context: [] # optional: project-wide standards/docs the implementation agent should load. Keep short — only what isn't already distilled into the spec body.
|
context: [] # optional: `{project-root}/`-prefixed paths to project-wide standards/docs the implementation agent should load. Keep short — only what isn't already distilled into the spec body.
|
||||||
---
|
---
|
||||||
|
|
||||||
<!-- Target: 900–1300 tokens. Above 1600 = high risk of context rot.
|
<!-- Target: 900–1300 tokens. Above 1600 = high risk of context rot.
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ Launch three subagents without conversation context. If no sub-agents are availa
|
||||||
1. Deduplicate all review findings.
|
1. Deduplicate all review findings.
|
||||||
2. Classify each finding. The first three categories are **this story's problem** — caused or exposed by the current change. The last two are **not this story's problem**.
|
2. Classify each finding. The first three categories are **this story's problem** — caused or exposed by the current change. The last two are **not this story's problem**.
|
||||||
- **intent_gap** — caused by the change; cannot be resolved from the spec because the captured intent is incomplete. Do not infer intent unless there is exactly one possible reading.
|
- **intent_gap** — caused by the change; cannot be resolved from the spec because the captured intent is incomplete. Do not infer intent unless there is exactly one possible reading.
|
||||||
- **bad_spec** — caused by the change, including direct deviations from spec. The spec should have been clear enough to prevent it. When in doubt between bad_spec and patch, prefer bad_spec — a spec-level fix is more likely to produce coherent code.
|
- **bad_spec** — caused by the change, including direct deviations from spec. The spec should have been clear enough to prevent it. When in doubt between bad_spec and patch, prefer bad_spec — a spec-level fix is more likely to produce coherent code. Also applies when the story's domain includes data silently dropped or never reaching its destination — the change exposed it.
|
||||||
- **patch** — caused by the change; trivially fixable without human input. Just part of the diff.
|
- **patch** — caused by the change; trivially fixable without human input. Just part of the diff.
|
||||||
- **defer** — pre-existing issue not caused by this story, surfaced incidentally by the review. Collect for later focused attention.
|
- **defer** — pre-existing issue not caused by this story, surfaced incidentally by the review. Collect for later focused attention.
|
||||||
- **reject** — noise. Drop silently. When unsure between defer and reject, prefer reject — only defer findings you are confident are real.
|
- **reject** — noise. Drop silently. When unsure between defer and reject, prefer reject — only defer findings you are confident are real.
|
||||||
|
|
|
||||||
|
|
@ -119,6 +119,20 @@ export default defineConfig({
|
||||||
autogenerate: { directory: 'reference' },
|
autogenerate: { directory: 'reference' },
|
||||||
},
|
},
|
||||||
// TEA docs moved to standalone module site; keep BMM sidebar focused.
|
// TEA docs moved to standalone module site; keep BMM sidebar focused.
|
||||||
|
{
|
||||||
|
label: 'BMad Ecosystem',
|
||||||
|
collapsed: false,
|
||||||
|
items: [
|
||||||
|
{ label: 'BMad Builder', link: 'https://bmad-builder-docs.bmad-method.org/', attrs: { target: '_blank' } },
|
||||||
|
{ label: 'Creative Intelligence Suite', link: 'https://cis-docs.bmad-method.org/', attrs: { target: '_blank' } },
|
||||||
|
{ label: 'Game Dev Studio', link: 'https://game-dev-studio-docs.bmad-method.org/', attrs: { target: '_blank' } },
|
||||||
|
{
|
||||||
|
label: 'Test Architect (TEA)',
|
||||||
|
link: 'https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/',
|
||||||
|
attrs: { target: '_blank' },
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
],
|
],
|
||||||
|
|
||||||
// Credits in footer
|
// Credits in footer
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue