feat(templates): add intelligent preset templates for common workflows
- feature-dev.json: Feature development team (Architect + 2 Engineers + Reviewer + Tester) - bug-fix.json: Bug fix squad (Investigator + Engineer + Tester) - code-review.json: Code review team (2 Reviewers) - greenfield.json: Greenfield project team (full squad) - release.json: Release team (Shipper + Reviewer) - investigation.json: Investigation team (Investigator + Engineer) - refactor.json: Refactoring team (Architect + 2 Engineers + Reviewer) - full-squad.json: Full development squad - research-and-discovery.json: Research and discovery team - Update standard-app.json with enhanced configuration Each template defines team composition with archetype counts
This commit is contained in:
parent
0837d59364
commit
d727f8b548
11 changed files with 158 additions and 26 deletions
17
.beads/templates/feature-dev.json
Normal file
17
.beads/templates/feature-dev.json
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"id": "feature-dev",
|
||||
"name": "Feature Development",
|
||||
"description": "Balanced team for implementing new features. Architect plans, Engineers build, Reviewer ensures quality, Tester verifies behavior.",
|
||||
"team": [
|
||||
{ "archetypeId": "architect", "count": 1 },
|
||||
{ "archetypeId": "engineer", "count": 2 },
|
||||
{ "archetypeId": "reviewer", "count": 1 },
|
||||
{ "archetypeId": "tester", "count": 1 }
|
||||
],
|
||||
"protoFormula": "Architect designs → Engineers implement → Reviewer checks → Tester verifies → Shipper deploys",
|
||||
"color": "#3b82f6",
|
||||
"icon": "✨",
|
||||
"createdAt": "2026-02-25T00:00:00.000Z",
|
||||
"updatedAt": "2026-02-25T00:00:00.000Z",
|
||||
"isBuiltIn": true
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue