-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathccswarm.json
More file actions
79 lines (79 loc) · 2.08 KB
/
ccswarm.json
File metadata and controls
79 lines (79 loc) · 2.08 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
{
"project": {
"name": "MyProject",
"repository": {
"url": "https://github.com/example/repo.git",
"main_branch": "main"
},
"master_claude": {
"role": "master",
"quality_threshold": 0.85,
"think_mode": "think",
"permission_level": "standard",
"claude_config": {
"model": "claude-3.5-sonnet",
"dangerously_skip_permissions": true,
"think_mode": "think",
"json_output": true,
"output_format": "Json",
"append_system_prompt": null,
"max_turns": null,
"custom_commands": [],
"mcpServers": {}
},
"enable_proactive_mode": true,
"proactive_frequency": 30,
"high_frequency": 15
}
},
"agents": {
"frontend": {
"specialization": "frontend",
"worktree": "../worktrees/frontend-agent",
"branch": "frontend-agent",
"claude_config": {
"model": "claude-3.5-sonnet",
"dangerously_skip_permissions": true,
"think_mode": "think_hard",
"json_output": true,
"output_format": "Json",
"append_system_prompt": null,
"max_turns": null,
"custom_commands": [
"npm test",
"npm run lint",
"npm run build"
],
"mcpServers": {}
},
"claude_md_template": "default"
},
"backend": {
"specialization": "backend",
"worktree": "../worktrees/backend-agent",
"branch": "backend-agent",
"claude_config": {
"model": "claude-3.5-sonnet",
"dangerously_skip_permissions": true,
"think_mode": "think_hard",
"json_output": true,
"output_format": "Json",
"append_system_prompt": null,
"max_turns": null,
"custom_commands": [
"npm test",
"npm run migrate",
"npm run api-test"
],
"mcpServers": {}
},
"claude_md_template": "default"
}
},
"coordination": {
"communication_method": "json",
"sync_interval": 30,
"quality_gate_frequency": "on_task_completion",
"master_review_trigger": "auto"
}
}