forked from rayclaw/rayclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacp.example.json
More file actions
31 lines (31 loc) · 749 Bytes
/
acp.example.json
File metadata and controls
31 lines (31 loc) · 749 Bytes
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
{
"defaultAutoApprove": true,
"promptTimeoutSecs": 300,
"acpAgents": {
"claude": {
"launch": "npx",
"command": "@anthropic-ai/claude-code@latest",
"args": ["--acp"],
"env": {
"ANTHROPIC_API_KEY": "your-api-key-here"
},
"workspace": "/path/to/projects",
"auto_approve": true
},
"opencode": {
"launch": "binary",
"command": "/usr/local/bin/opencode",
"args": ["acp"],
"workspace": "/path/to/projects"
},
"gemini": {
"launch": "npx",
"command": "@google/gemini-cli@latest",
"args": ["--experimental-acp"],
"env": {
"GEMINI_API_KEY": "your-gemini-api-key-here"
},
"workspace": "/path/to/projects"
}
}
}