-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
134 lines (134 loc) · 4.13 KB
/
config.json.example
File metadata and controls
134 lines (134 loc) · 4.13 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
{
"model": "claude-opus-4-6",
"boards": {
"api-bot": {
"board_id": "",
"description": "API development board. FastAPI backend. Pipeline: scout → coder → tester → elegance → reviewer.",
"failed_list_id": "",
"max_bounces": 20,
"lists": { "todo": "", "doing": "", "done": "" },
"workers": {
"api-scout": {
"label_id": "",
"repo": "[email protected]:yourgit",
"base_branch": "dev",
"repo_access": "read",
"output_mode": "update",
"allowed_tools": ["Read", "Glob", "Grep", "Bash"],
"system_prompt": "@prompts/api-bot/api-scout.md",
"sdk_timeout": 600,
"max_turns": 20
},
"api-coder": {
"label_id": "",
"repo": "[email protected]:yourgit",
"branch_prefix": "agent/api",
"base_branch": "dev",
"system_prompt": "@prompts/api-bot/api-coder.md"
},
"api-tester": {
"label_id": "",
"repo": "[email protected]:yourgit",
"branch_prefix": "agent/api",
"base_branch": "dev",
"output_mode": "pr",
"system_prompt": "@prompts/api-bot/api-tester.md",
"sdk_timeout": 1200
},
"api-elegance": {
"label_id": "",
"repo": "[email protected]:yourgit",
"branch_prefix": "agent/api",
"base_branch": "dev",
"output_mode": "pr",
"system_prompt": "@prompts/api-bot/api-elegance.md",
"sdk_timeout": 900,
"max_turns": 30
},
"api-reviewer": {
"label_id": "",
"repo": "[email protected]:yourgit",
"base_branch": "dev",
"repo_access": "read",
"output_mode": "update",
"allowed_tools": ["Read", "Glob", "Grep", "Bash", "WebFetch"],
"system_prompt": "@prompts/api-bot/api-reviewer.md",
"sdk_timeout": 900,
"max_turns": 20
}
}
},
"static-bot": {
"board_id": "",
"description": "Static site development board. It's build with React. Needs to be converted to a static site using Vite.",
"failed_list_id": "",
"lists": { "todo": "", "doing": "", "done": "" },
"workers": {
"static-coder": {
"label_id": "",
"repo": "[email protected]:yourgit",
"branch_prefix": "static-coder",
"base_branch": "dev",
"system_prompt": "You are a frontend developer. Follow CLAUDE.md coding conventions."
}
}
},
"research": {
"board_id": "",
"description": "Research board for ideation and brainstorming. It's the 100x factory.",
"failed_list_id": "",
"max_bounces": 10,
"lists": { "todo": "", "doing": "", "done": "" },
"workers": {
"triage": {
"label_id": "",
"repo_access": "none",
"output_mode": "update",
"system_prompt": "@prompts/research/triage.md",
"sdk_timeout": 900,
"max_turns": 10
},
"deep": {
"label_id": "",
"repo_access": "none",
"output_mode": "update",
"system_prompt": "@prompts/research/deep.md",
"sdk_timeout": 900,
"max_turns": 10
},
"factory": {
"label_id": "",
"repo_access": "none",
"output_mode": "update",
"system_prompt": "@prompts/research/factory.md",
"sdk_timeout": 900,
"max_turns": 10
},
"validation": {
"label_id": "",
"repo_access": "none",
"output_mode": "update",
"system_prompt": "@prompts/research/validation.md",
"sdk_timeout": 900,
"max_turns": 10
},
"verdict": {
"label_id": "",
"repo_access": "none",
"output_mode": "update",
"system_prompt": "@prompts/research/verdict.md",
"sdk_timeout": 900,
"max_turns": 10
}
}
}
},
"orchestrator": {
"repos": [
"[email protected]:yourgit",
"[email protected]:yourgit"
],
"base_branch": "dev",
"system_prompt": "@prompts/orchestrator.md"
}
}