fix(commands): replace all non-Ollama providers with ollama-cloud/\n\nRemoved: openrouter, openai (unreliable/foreign)\nReplaced 6 commands:\n /status → ollama-cloud/qwen3.5-122b\n /ask → ollama-cloud/qwen3.5-122b\n /hotfix → ollama-cloud/deepseek-v4-pro-max\n /review → ollama-cloud/kimi-k2.6\n /code → ollama-cloud/deepseek-v4-pro-max (prev commit)\n /plan → ollama-cloud/deepseek-v4-pro-max (prev commit)\nAll models now served from ollama-cloud/ exclusively.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
---
|
||||
description: Answers questions about the codebase, explains concepts, provides guidance
|
||||
mode: ask
|
||||
model: openai/qwen3-32b
|
||||
model: ollama-cloud/qwen3.5-122b
|
||||
color: "#8B5CF6"
|
||||
---
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
description: Generates code for small tasks and hotfixes
|
||||
mode: code
|
||||
model: openrouter/qwen/qwen3-coder:free
|
||||
model: ollama-cloud/deepseek-v4-pro-max
|
||||
color: "#10B981"
|
||||
---
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
description: Full feature development pipeline from requirements to release
|
||||
mode: feature
|
||||
model: openrouter/qwen/qwen3-coder:free
|
||||
model: ollama-cloud/deepseek-v4-pro-max
|
||||
color: "#059669"
|
||||
permission:
|
||||
read: allow
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
description: Quick bug fix workflow for urgent production issues
|
||||
mode: hotfix
|
||||
model: openrouter/minimax/minimax-m2.5:free
|
||||
model: ollama-cloud/deepseek-v4-pro-max
|
||||
color: "#DC2626"
|
||||
permission:
|
||||
read: allow
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
description: Creates detailed task plans with breakdown, estimates, and dependencies
|
||||
mode: plan
|
||||
model: openrouter/qwen/qwen3-coder:free
|
||||
model: ollama-cloud/deepseek-v4-pro-max
|
||||
color: "#3B82F6"
|
||||
permission:
|
||||
read: allow
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
description: Comprehensive code review with tests, style, security, and performance checks
|
||||
mode: review
|
||||
model: openrouter/minimax/minimax-m2.5:free
|
||||
model: ollama-cloud/kimi-k2.6
|
||||
color: "#F59E0B"
|
||||
permission:
|
||||
read: allow
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
description: Check pipeline status for an issue
|
||||
mode: subagent
|
||||
model: openrouter/qwen/qwen3.6-plus:free
|
||||
model: ollama-cloud/qwen3.5-122b
|
||||
color: "#3B82F6"
|
||||
---
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$schema": "https://app.kilo.ai/config.json",
|
||||
"metaVersion": "1.0.0",
|
||||
"lastSync": "2026-05-27T12:37:47.564Z",
|
||||
"lastSync": "2026-05-27T13:01:37.013Z",
|
||||
"agents": {
|
||||
"requirement-refiner": {
|
||||
"file": ".kilo/agents/requirement-refiner.md",
|
||||
@@ -273,7 +273,7 @@
|
||||
"status": {
|
||||
"file": ".kilo/commands/status.md",
|
||||
"description": "Check pipeline status for issue",
|
||||
"model": "qwen/qwen3.6-plus:free"
|
||||
"model": "ollama-cloud/qwen3.5-122b"
|
||||
},
|
||||
"evaluate": {
|
||||
"file": ".kilo/commands/evaluate.md",
|
||||
@@ -283,12 +283,12 @@
|
||||
"plan": {
|
||||
"file": ".kilo/commands/plan.md",
|
||||
"description": "Creates detailed task plans",
|
||||
"model": "openrouter/qwen/qwen3-coder:free"
|
||||
"model": "ollama-cloud/deepseek-v4-pro-max"
|
||||
},
|
||||
"ask": {
|
||||
"file": ".kilo/commands/ask.md",
|
||||
"description": "Answers codebase questions",
|
||||
"model": "openai/qwen3-32b"
|
||||
"model": "ollama-cloud/qwen3.5-122b"
|
||||
},
|
||||
"debug": {
|
||||
"file": ".kilo/commands/debug.md",
|
||||
@@ -298,7 +298,7 @@
|
||||
"code": {
|
||||
"file": ".kilo/commands/code.md",
|
||||
"description": "Quick code generation",
|
||||
"model": "openrouter/qwen/qwen3-coder:free"
|
||||
"model": "ollama-cloud/deepseek-v4-pro-max"
|
||||
},
|
||||
"research": {
|
||||
"file": ".kilo/commands/research.md",
|
||||
@@ -308,17 +308,17 @@
|
||||
"feature": {
|
||||
"file": ".kilo/commands/feature.md",
|
||||
"description": "Full feature development pipeline",
|
||||
"model": "openrouter/qwen/qwen3-coder:free"
|
||||
"model": "ollama-cloud/deepseek-v4-pro-max"
|
||||
},
|
||||
"hotfix": {
|
||||
"file": ".kilo/commands/hotfix.md",
|
||||
"description": "Hotfix workflow",
|
||||
"model": "openrouter/minimax/minimax-m2.5:free"
|
||||
"model": "ollama-cloud/deepseek-v4-pro-max"
|
||||
},
|
||||
"review": {
|
||||
"file": ".kilo/commands/review.md",
|
||||
"description": "Code review workflow",
|
||||
"model": "openrouter/minimax/minimax-m2.5:free"
|
||||
"model": "ollama-cloud/kimi-k2.6"
|
||||
},
|
||||
"review-watcher": {
|
||||
"file": ".kilo/commands/review-watcher.md",
|
||||
@@ -342,17 +342,17 @@
|
||||
"commerce": {
|
||||
"file": ".kilo/commands/commerce.md",
|
||||
"description": "Create e-commerce site with products, cart, payments",
|
||||
"model": "qwen/qwen3-coder:free"
|
||||
"model": "ollama-cloud/deepseek-v4-pro-max"
|
||||
},
|
||||
"blog": {
|
||||
"file": ".kilo/commands/blog.md",
|
||||
"description": "Create blog/CMS with posts, comments, SEO",
|
||||
"model": "qwen/qwen3-coder:free"
|
||||
"model": "ollama-cloud/deepseek-v4-pro-max"
|
||||
},
|
||||
"booking": {
|
||||
"file": ".kilo/commands/booking.md",
|
||||
"description": "Create booking system for services/appointments",
|
||||
"model": "qwen/qwen3-coder:free"
|
||||
"model": "ollama-cloud/deepseek-v4-pro-max"
|
||||
}
|
||||
},
|
||||
"syncTargets": [
|
||||
@@ -396,4 +396,4 @@
|
||||
"failOnError": true,
|
||||
"reportFile": ".kilo/logs/sync-violations.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user