Files
APAW/.kilo/kilo.jsonc
Deploy Bot eb448361cc fix(config): sync .kilo/kilo.jsonc models — remove stale deepseek-v4-pro-max
- code: deepseek-v4-pro-max → deepseek-v4-pro
- debug: deepseek-v4-pro-max → deepseek-v4-pro
- mode: primary → all (valid value)
2026-05-28 14:05:26 +01:00

56 lines
1.5 KiB
JSON

{
"$schema": "https://app.kilo.ai/config.json",
"instructions": [".kilo/rules/*.md"],
"skills": {
"paths": [".kilo/skills"]
},
"model": "ollama-cloud/kimi-k2.6",
"default_agent": "orchestrator",
"agent": {
"orchestrator": {
"model": "ollama-cloud/kimi-k2.6",
"variant": "thinking",
"description": "Main dispatcher. Routes tasks between agents based on Issue status. IF:92 for optimal routing.",
"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/deepseek-v4-pro",
"variant": "thinking",
"description": "Primary code writer. Full tool access for development tasks.",
"mode": "all"
},
"ask": {
"model": "ollama-cloud/kimi-k2.6",
"variant": "instant",
"description": "Read-only Q&A agent for codebase questions.",
"mode": "primary"
},
"plan": {
"model": "ollama-cloud/kimi-k2.6",
"description": "Task planner. Creates detailed implementation plans.",
"mode": "primary"
},
"debug": {
"model": "ollama-cloud/deepseek-v4-pro",
"variant": "thinking",
"description": "Bug diagnostics and troubleshooting.",
"mode": "all"
}
}
}