-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
56 lines (56 loc) · 1.26 KB
/
Copy pathconfig.example.json
File metadata and controls
56 lines (56 loc) · 1.26 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
{
"github": {
"label": "agent-ready",
"working_label": "agent-working",
"done_label": "agent-done",
"failed_label": "agent-failed",
"plan_label": "agent-planned",
"owners": [
"your-gh-username"
],
"exclude_repos": [],
"search_limit": 50,
"poll_interval": "5m",
"binary": "gh"
},
"workspace": {
"root": "~/.agent-loop/work",
"repos_root": "~/.agent-loop/repos",
"logs_root": "~/.agent-loop/logs",
"keep_failed": true,
"branch_prefix": "agent/issue-"
},
"run": {
"max_concurrent_repos": 3,
"timeout": "45m",
"lease": "90m",
"verify_timeout": "10m",
"retry_backoff": "15m",
"retry_backoff_max": "24h"
},
"claude": {
"binary": "claude",
"permission_mode": "bypassPermissions",
"plan_permission_mode": "plan",
"extra_args": [],
"usage_poll_interval": "10m",
"usage_backoff": "10m",
"credentials_path": "~/.claude/.credentials.json",
"usage_cache_path": "~/.agent-loop/usage-cache.json"
},
"verify": {
"auto_detect": true,
"commands": {}
},
"server": {
"addr": "127.0.0.1:8787"
},
"store": {
"path": "~/.agent-loop/state.db"
},
"discord": {
"enabled": false,
"webhook_url": ""
},
"models_path": "models.json"
}