- 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
16 lines
617 B
JSON
16 lines
617 B
JSON
{
|
|
"id": "release",
|
|
"name": "Release Team",
|
|
"description": "Team focused on safe deployments. Tester validates, Reviewer does final check, Shipper executes deployment.",
|
|
"team": [
|
|
{ "archetypeId": "tester", "count": 1 },
|
|
{ "archetypeId": "reviewer", "count": 1 },
|
|
{ "archetypeId": "shipper", "count": 1 }
|
|
],
|
|
"protoFormula": "Tester runs full regression → Reviewer does final code review → Shipper executes staged deployment with monitoring",
|
|
"color": "#06b6d4",
|
|
"icon": "🚀",
|
|
"createdAt": "2026-02-25T00:00:00.000Z",
|
|
"updatedAt": "2026-02-25T00:00:00.000Z",
|
|
"isBuiltIn": true
|
|
}
|