-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.claude-agents.json
More file actions
151 lines (136 loc) · 4.97 KB
/
.claude-agents.json
File metadata and controls
151 lines (136 loc) · 4.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"version": "1.0.0",
"project": "macbook-dev-setup",
"description": "Structured metadata for the 7 native sub-agents",
"agents": {
"product-strategist": {
"name": "Product Strategist",
"description": "Full-lifecycle product strategist. Idea validation, discovery, MVP, PMF, positioning, growth.",
"enabled": true,
"priority": "high",
"tools": ["Read", "Write", "Edit", "Bash", "Grep", "Glob", "WebSearch", "WebFetch"],
"triggers": ["new_product_idea", "market_validation", "pmf_assessment", "positioning"],
"outputs": ["product-lab/"]
},
"product-tactician": {
"name": "Product Tactician",
"description": "Per-feature product thinking. Defines problems, scopes solutions, prioritizes work, and evaluates outcomes.",
"enabled": true,
"priority": "high",
"tools": ["Read", "Grep", "Glob", "Bash"],
"triggers": ["new_feature", "prioritization_needed", "scope_question", "post_launch_eval"],
"outputs": ["product-brief.md"]
},
"researcher": {
"name": "Researcher",
"description": "Deep codebase exploration before planning. Use for any task touching 3+ files.",
"enabled": true,
"priority": "high",
"model": "haiku",
"tools": ["Read", "Grep", "Glob", "Bash"],
"triggers": ["complex_task", "unfamiliar_code", "multi_file_change"],
"outputs": ["research.md"]
},
"planner": {
"name": "Planner",
"description": "Create detailed implementation plans from research. Supports annotation cycles.",
"enabled": true,
"priority": "high",
"tools": ["Read", "Grep", "Glob"],
"triggers": ["after_research", "plan_needed", "complex_task"],
"outputs": ["plan.md"]
},
"implementer": {
"name": "Implementer",
"description": "Execute implementation plans step by step. Use for feature code or test code.",
"enabled": true,
"priority": "high",
"tools": ["Read", "Write", "Edit", "Bash", "Grep", "Glob"],
"isolation": "worktree",
"triggers": ["plan_approved", "task_assigned"],
"outputs": ["code_changes", "checkpoint_commits"]
},
"reviewer": {
"name": "Reviewer",
"description": "Verify implementation quality, security, and test coverage. Run after implementation.",
"enabled": true,
"priority": "critical",
"tools": ["Read", "Grep", "Glob", "Bash"],
"triggers": ["after_implementation", "before_pr"],
"outputs": ["review_summary"]
},
"designer": {
"name": "Designer",
"description": "Design system specialist. Produces design specs, visual QA, and UX patterns.",
"enabled": true,
"priority": "high",
"tools": ["Read", "Write", "Edit", "Bash", "Grep", "Glob"],
"triggers": ["ui_change", "design_task", "visual_qa", "new_page"],
"outputs": ["design-spec.md", "design_review"]
}
},
"workflows": {
"standard": {
"description": "Sequential workflow: product-tactician → research → plan → implement → review",
"phases": ["product-tactician", "researcher", "planner", "implementer", "reviewer"]
},
"parallel_implementation": {
"description": "Parallel implementation with multiple implementers in worktree isolation",
"phases": {
"research": "researcher",
"plan": "planner",
"implement": {
"parallel": true,
"agent": "implementer",
"max_concurrent": 3
},
"review": "reviewer"
}
},
"design_aware": {
"description": "Parallel design + engineering workflow for UI tasks",
"phases": {
"research": { "parallel": true, "agents": ["researcher", "designer"] },
"plan": "planner",
"implement": { "parallel": true, "agent": "implementer", "max_concurrent": 3 },
"review": { "parallel": true, "agents": ["reviewer", "designer"] }
}
},
"product_aware": {
"description": "Full product-led workflow with strategy, define, and evaluate phases",
"phases": {
"strategy": "product-strategist",
"define": "product-tactician",
"research": { "parallel": true, "agents": ["researcher", "designer"] },
"plan": "planner",
"implement": { "parallel": true, "agent": "implementer", "max_concurrent": 3 },
"review": { "parallel": true, "agents": ["reviewer", "designer"] },
"evaluate": "product-tactician"
}
}
},
"coordination": {
"max_parallel_agents": 3,
"orchestrator_pattern": true,
"retry_on_failure": true,
"max_retries": 2
},
"quality_gates": {
"pre_pr": {
"required_agents": ["reviewer"],
"optional_agents": ["designer"],
"failure_blocks_pr": true
}
},
"reporting": {
"generate_reports": true,
"report_format": "markdown",
"include_metrics": true,
"output_directory": "reports/agents/"
},
"experimental": {
"auto_trigger_agents": false,
"learn_from_patterns": false,
"adaptive_thresholds": false
}
}