-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
79 lines (79 loc) · 1.81 KB
/
Copy pathconfig.example.json
File metadata and controls
79 lines (79 loc) · 1.81 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
{
"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",
"pr_comments": {
"enabled": true,
"mention": "@coding-agent",
"search_limit": 30,
"max_age": "168h",
"ack_reaction": "eyes",
"done_reaction": "+1",
"allowed_authors": [],
"allowed_associations": [
"OWNER",
"MEMBER",
"COLLABORATOR"
]
}
},
"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": {},
"env": {
"PATH": "/usr/local/go/bin:/usr/local/bin:/usr/bin:/bin"
}
},
"server": {
"addr": "127.0.0.1:8787",
"ui": true,
"password": ""
},
"store": {
"path": "~/.agent-loop/state.db"
},
"discord": {
"enabled": false,
"webhook_url": ""
},
"git": {
"author_name": "coding-agent-loop[bot]",
"author_email": "coding-agent-loop@users.noreply.github.com"
},
"models_path": "models.json"
}