mirror of
https://github.com/IgorWarzocha/Opencode-Workflows.git
synced 2026-09-14 16:22:53 +08:00
21f0d0d79e
Add XML instructions and a task routing table to AGENTS.md. Flesh out the repository structure tree to include all agent pack subdirectories. Significantly expand the cowork README with feature details, vault structure, and agent tables.
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://opencode.ai/config.json",
|
|
"default_agent": "cowork-orchestrator",
|
|
"instructions": ["LESSONS-LEARNED.md"],
|
|
// Add any other files you want included in every agent instruction, but don't overload them with context.
|
|
|
|
"mcp": {
|
|
"playwriter": {
|
|
// For browser control.
|
|
"type": "local",
|
|
"command": ["npx", "playwriter@latest"]
|
|
}
|
|
},
|
|
|
|
"permission": {
|
|
// Allows subagents to spawn their own nested subagents.
|
|
"task": "allow",
|
|
// Allows all subagents to ask questions via question tool.
|
|
// Less automatic but will yield better results.
|
|
// For true hands-off or automation, comment this one out.
|
|
"question": "allow"
|
|
// Question is enabled by default for the primary orchestrator agent.
|
|
// Opencode disables the question tool for custom-defined agents by default.
|
|
},
|
|
|
|
"experimental": {
|
|
// Fire multiple tools at once for higher efficiency.
|
|
"batch_tool": true
|
|
},
|
|
|
|
"plugin": [
|
|
// Automatically format markdown tables in opencode.
|
|
"@franlol/opencode-md-table-formatter@latest"
|
|
],
|
|
|
|
"agent": {
|
|
// Disable specialist coding agents to prevent trigger noise in Cowork environment by setting `disable` to `true`.
|
|
// Use: opencode agent list | grep -v '^[[:space:]]' | awk '{print $1}'
|
|
"plan": {
|
|
"disable": false
|
|
}
|
|
}
|
|
}
|