- Add apaw-state-api Flask service (landing/api/server.py) that serves agent fit scores, best models, and explanations from real-fit.db - Add nginx proxy rule: /api/state → apaw-state-api:8080 - Add fit-score drill-down modal (click heatmap cell → score breakdown + explanation) in api.js, styles.css, and index.html - Add real-fit-recalc.py script for offline score recalculation from stored SQLite responses - Add real-fit-engine.py (evaluation engine) and sync-dashboard-data.py - Add Dockerfile ENTRYPOINT + entrypoint.sh for landing container - Add docker-compose.ollama.yml for local Ollama inference - Update kilo.jsonc command models and agent-versions.json - Regenerate index.standalone.html with latest dashboard data - Add .gitignore entries for __pycache__, runtime data, and backups
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",
|
|
"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-max",
|
|
"variant": "thinking",
|
|
"description": "Primary code writer. Full tool access for development tasks.",
|
|
"mode": "primary"
|
|
},
|
|
"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-max",
|
|
"variant": "thinking",
|
|
"description": "Bug diagnostics and troubleshooting.",
|
|
"mode": "primary"
|
|
}
|
|
}
|
|
} |