Files
APAW/.kilo/kilo.jsonc
¨NW¨ b9abd91d07 feat: orchestrator evolution — full access + model upgrades + self-evolution protocol
- Add 9 missing agents to orchestrator task whitelist (20→28 agents)
- Fix 2 broken agents: debug (gpt-oss:20b→qwen3.6-plus), release-manager (devstral-2→qwen3.6-plus)
- Upgrade orchestrator (glm-5→qwen3.6-plus, IF:80→90, 128K→1M context)
- Upgrade pipeline-judge (nemotron→qwen3.6-plus, IF:85→90)
- Add orchestrator escalation path to 7 agents (lead-dev, sdet, skeptic, perf, security, evaluator, devops)
- Create self-evolution protocol (.kilo/rules/orchestrator-self-evolution.md)
- Create evolution log (.kilo/EVOLUTION_LOG.md)
- Full audit of all 29 agents with verification tests
2026-04-06 22:55:12 +01:00

52 lines
1.5 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": "openrouter/qwen/qwen3.6-plus:free",
"description": "Main dispatcher. Routes tasks between agents based on Issue status. IF:90 for optimal routing accuracy.",
"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": "openrouter/qwen/qwen3.6-plus:free",
"description": "Bug diagnostics and troubleshooting. IF:90, score:85★, 1M context. Best model for debugging.",
"mode": "primary"
}
}
}