Skip to content

Latest commit

 

History

History
113 lines (113 loc) · 3.06 KB

File metadata and controls

113 lines (113 loc) · 3.06 KB

{ "$schema": "https://opencode.ai/config.json", "permission": { "external_directory": { "<YOUR_WORKSPACE_PATH>/": "allow", "<YOUR_CONFIG_PATH>/agents/": "allow" } }, "plugin": [ "superpowers@git+https://github.com/obra/superpowers.git" ], "agent": { "explore": { "disable": true }, "general": { "disable": true }, "debug": { "description": "Debug expert - investigate errors, analyze stack traces, find root cause and propose fixes", "prompt": "{file:./agents/debug.md}", "mode": "primary", "color": "error", "permission": { "read": "allow", "bash": "allow", "edit": "deny" } }, "review": { "description": "Senior code reviewer - check quality, security, performance, and suggest improvements", "prompt": "{file:./agents/review.md}", "mode": "primary", "color": "warning", "permission": { "read": "allow", "bash": "deny", "edit": "deny" } }, "pr-checker": { "description": "Pull Request checker - analyze diff, evaluate impact, check breaking changes and prepare PR description", "prompt": "{file:./agents/pr-checker.md}", "mode": "primary", "color": "info", "permission": { "read": "allow", "bash": "allow", "edit": "deny" } }, "pr-merger": { "description": "Pull Request merger - execute merge after review and pr-checker approval", "prompt": "{file:./agents/pr-merger.md}", "mode": "primary", "color": "success", "permission": { "read": "allow", "bash": "allow", "edit": "allow" } }, "plan": { "description": "Planning expert - analyze requirements, create PRD, break work into issues, stress-test plans", "prompt": "{file:./agents/plan.md}", "mode": "primary", "color": "success", "permission": { "read": "allow", "bash": "allow", "edit": "allow" } }, "build": { "description": "Build/deploy expert - implement features, build Docker images, deploy applications", "prompt": "{file:./agents/build.md}", "mode": "primary", "color": "accent", "permission": { "read": "allow", "bash": "allow", "edit": "allow", "task": { "*": "deny", "test": "allow" } } }, "test": { "description": "Testing expert - write and run tests, report coverage, receive tasks from build agent", "prompt": "{file:./agents/test.md}", "mode": "all", "color": "info", "permission": { "read": "allow", "bash": "allow", "edit": "allow" } } }, "mcp": { "_comment": "Add your MCP servers here. Example for Gitea:", "_gitea_example": { "type": "local", "command": ["npx", "-y", "@gitea/mcp-server"], "enabled": false, "environment": { "GITEA_URL": "https://your-gitea-instance.com", "GITEA_TOKEN": "your-token-here" } } } }