forked from AngDrew/opencode-hashline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
28 lines (28 loc) · 868 Bytes
/
opencode.json
File metadata and controls
28 lines (28 loc) · 868 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
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["hashline-routing"],
"permission": {
"*": "allow"
},
"agent": {
// Sample smoke-test agent for the simplified canonical flow.
// Keep the permissions narrow so the test exercises only the core file path.
// `patch` is intentionally omitted because the standard edit flow uses hashline refs.
// No resolver helper is granted here; this agent stays on built-in file tools only.
"hashline-test": {
"description": "Minimal smoke-test agent for hashline read/edit/write",
"mode": "primary",
"model": "proxy/gpt-5.1-codex-mini",
"permission": {
"*": "deny",
"read": "allow",
"edit": "allow",
"write": "allow",
"bash": "deny",
"glob": "deny",
"grep": "deny",
"list": "deny"
}
}
}
}