-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathopencode.json
More file actions
35 lines (35 loc) · 1.52 KB
/
opencode.json
File metadata and controls
35 lines (35 loc) · 1.52 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
{
"plugin": ["./dist/index.js"],
"command": {
"agent-active": {
"description": "Enable AASM active supervision",
"template": "Call the 'aasm' tool with argument { \"mode\": \"active\" }."
},
"agent-passive": {
"description": "Disable AASM supervision (passive mode)",
"template": "Call the 'aasm' tool with argument { \"mode\": \"passive\" }."
},
"agent-status": {
"description": "Check AASM status",
"template": "Call the 'aasm' tool with argument { \"mode\": \"status\" }."
},
"ctx": {
"description": "Show context window usage stats",
"template": ""
},
"agent-review": {
"description": "Generate AASM anti-pattern review report across sessions",
"template": "Immediately call the 'aasm' tool with argument { \"mode\": \"review\" }. If the user supplied a numeric argument, include it as \"limit\" (5-100). Do not ask planning questions."
},
"aasm": {
"description": "AASM command hub (status/active/passive/review)",
"template": "Call the 'aasm' tool. Map subcommands: active/passive/status/review to { \"mode\": \"...\" }. For review, pass \"limit\" if a numeric arg exists (5-100)."
},
"ban": {
"description": "Blacklist tool parts matching a file or directory path to exclude them from future context loads",
"template": "Do nothing. This command is intercepted and handled by the plugin runtime before reaching you."
}
},
"model": "github-copilot/gpt-4o",
"$schema": "https://opencode.ai/config.json"
}