Fixed format from 'qwen/...' to 'openrouter/qwen/...' for: - product-owner.md - prompt-optimizer.md - workflow-architect.md - status.md, blog.md, booking.md, commerce.md - kilo.jsonc (default model + ask agent) - agent-frontmatter-validation.md - agent-versions.json (recommendations and history)
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://app.kilo.ai/config.json",
|
|
"instructions": [".kilo/rules/*.md"],
|
|
"skills": {
|
|
"paths": [".kilo/skills"]
|
|
},
|
|
"model": "openrouter/qwen/qwen3.6-plus:free",
|
|
"default_agent": "orchestrator",
|
|
"agent": {
|
|
"orchestrator": {
|
|
"model": "ollama-cloud/glm-5",
|
|
"description": "Main dispatcher. Routes tasks between agents based on Issue status.",
|
|
"mode": "all",
|
|
"permission": {
|
|
"read": "allow",
|
|
"write": "allow",
|
|
"bash": "allow",
|
|
"task": "allow"
|
|
}
|
|
},
|
|
"pipeline-runner": {
|
|
"description": "Runs agent pipeline with Gitea logging",
|
|
"mode": "subagent",
|
|
"permission": {
|
|
"read": "allow",
|
|
"write": "allow",
|
|
"bash": "allow",
|
|
"task": "allow"
|
|
}
|
|
},
|
|
"code": {
|
|
"model": "ollama-cloud/qwen3-coder:480b",
|
|
"description": "Primary code writer. Full tool access for development tasks.",
|
|
"mode": "primary"
|
|
},
|
|
"ask": {
|
|
"model": "openrouter/qwen/qwen3.6-plus:free",
|
|
"description": "Read-only Q&A agent for codebase questions.",
|
|
"mode": "primary"
|
|
},
|
|
"plan": {
|
|
"model": "ollama-cloud/nemotron-3-super",
|
|
"description": "Task planner. Creates detailed implementation plans.",
|
|
"mode": "primary"
|
|
},
|
|
"debug": {
|
|
"model": "ollama-cloud/gemma4:31b",
|
|
"description": "Bug diagnostics and troubleshooting.",
|
|
"mode": "primary"
|
|
}
|
|
}
|
|
} |