- Fix security-auditor.md color bare hex to quoted - Fix orchestrator.md duplicate devops-engineer key - Fix .kilo/kilo.jsonc: orchestrator + root model to kimi-k2.6:cloud - Update agent-frontmatter-validation.md with diagnostic guide - Update global.md with YAML frontmatter rules for all agents - Update agent-architect.md + workflow-architect.md with color checklist - Add scripts/validate-agents.cjs: zero-dependency, cross-platform, --fix flag, scans worktrees
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"$schema": "https://app.kilo.ai/config.json",
|
|
"instructions": [".kilo/rules/*.md"],
|
|
"skills": {
|
|
"paths": [".kilo/skills"]
|
|
},
|
|
"model": "ollama-cloud/kimi-k2.6:cloud",
|
|
"default_agent": "orchestrator",
|
|
"agent": {
|
|
"orchestrator": {
|
|
"model": "ollama-cloud/kimi-k2.6:cloud",
|
|
"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/qwen3-coder:480b",
|
|
"variant": "thinking",
|
|
"description": "Primary code writer. Full tool access for development tasks.",
|
|
"mode": "primary"
|
|
},
|
|
"ask": {
|
|
"model": "ollama-cloud/glm-5.1",
|
|
"variant": "instant",
|
|
"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/glm-5.1",
|
|
"variant": "thinking",
|
|
"description": "Bug diagnostics and troubleshooting. GLM-5.1 ★88, reasoning for deep debug.",
|
|
"mode": "primary"
|
|
}
|
|
}
|
|
} |