- Remove steps limits from all 6 agent files - Disable auto-compaction (auto: false, prune: false) - Raise temperatures (tier1: 0.5, tier2: 0.4, tier3: 0.3, tier4: 0.2, general: 0.3, explore: 0.2) - Add Context Management sections to tier1/tier2 - Add Pre-Delegation Checkpoint to tier2 - Expand all 4 MMA tier commands with full protocol documentation
76 lines
1.4 KiB
JSON
76 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://opencode.ai/config.json",
|
|
"model": "zai/glm-5",
|
|
"small_model": "zai/glm-4-flash",
|
|
"provider": {
|
|
"zai": {
|
|
"options": {
|
|
"timeout": 300000
|
|
}
|
|
}
|
|
},
|
|
"instructions": [
|
|
"CLAUDE.md",
|
|
"conductor/product.md",
|
|
"conductor/product-guidelines.md",
|
|
"conductor/workflow.md",
|
|
"conductor/tech-stack.md"
|
|
],
|
|
"default_agent": "tier2-tech-lead",
|
|
"mcp": {
|
|
"manual-slop": {
|
|
"type": "local",
|
|
"command": [
|
|
"C:\\Users\\Ed\\scoop\\apps\\uv\\current\\uv.exe",
|
|
"run",
|
|
"python",
|
|
"C:\\projects\\manual_slop\\scripts\\mcp_server.py"
|
|
],
|
|
"enabled": true
|
|
}
|
|
},
|
|
"agent": {
|
|
"build": {
|
|
"model": "zai/glm-5",
|
|
"permission": {
|
|
"edit": "ask",
|
|
"bash": "ask"
|
|
}
|
|
},
|
|
"plan": {
|
|
"model": "zai/glm-5",
|
|
"permission": {
|
|
"edit": "deny",
|
|
"bash": {
|
|
"*": "ask",
|
|
"git status*": "allow",
|
|
"git diff*": "allow",
|
|
"git log*": "allow"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"permission": {
|
|
"edit": "ask",
|
|
"bash": "ask"
|
|
},
|
|
"share": "manual",
|
|
"autoupdate": true,
|
|
"compaction": {
|
|
"auto": false,
|
|
"prune": false,
|
|
"reserved": 10000
|
|
},
|
|
"watcher": {
|
|
"ignore": [
|
|
"node_modules/**",
|
|
".venv/**",
|
|
"__pycache__/**",
|
|
"*.pyc",
|
|
".git/**",
|
|
"logs/**",
|
|
"*.log"
|
|
]
|
|
}
|
|
}
|