beadboard/.beads/templates/code-review.json
zenchantlive d727f8b548 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
2026-02-26 10:21:50 -08:00

15 lines
559 B
JSON

{
"id": "code-review",
"name": "Code Review",
"description": "Lightweight team for reviewing and improving existing code. Reviewer analyzes, Engineer makes improvements.",
"team": [
{ "archetypeId": "reviewer", "count": 1 },
{ "archetypeId": "engineer", "count": 1 }
],
"protoFormula": "Reviewer analyzes code quality → Engineer implements improvements → Reviewer validates changes",
"color": "#f59e0b",
"icon": "👁️",
"createdAt": "2026-02-25T00:00:00.000Z",
"updatedAt": "2026-02-25T00:00:00.000Z",
"isBuiltIn": true
}