Kimi Integration
Step-by-step guide for integrating Moonshot AI (Kimi) and Kimi Code models into Clawdbot. Use when someone asks how to add Kimi models, configure Moonshot AI, or set up Kimi for Coding in Clawdbot.
Step-by-step guide for integrating Moonshot AI (Kimi) and Kimi Code models into Clawdbot. Use when someone asks how to add Kimi models, configure Moonshot AI, or set up Kimi for Coding in Clawdbot.
Real data. Real impact.
Emerging
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
Complete guide for adding Moonshot AI (Kimi) and Kimi Code models to Clawdbot.
Kimi offers two separate model families:
Both require API keys from different sources.
sk-...)sk-...)Note: Moonshot and Kimi Code use separate keys and endpoints.
export MOONSHOT_API_KEY="sk-your-moonshot-key-here"
Or add to
.env file:
echo 'MOONSHOT_API_KEY="sk-your-moonshot-key-here"' >> ~/.env
Edit your
clawdbot.json config:
{ "agents": { "defaults": { "model": { "primary": "moonshot/kimi-k2.5" } } }, "models": { "mode": "merge", "providers": { "moonshot": { "baseUrl": "https://api.moonshot.cn/v1", "apiKey": "${MOONSHOT_API_KEY}", "api": "openai-completions", "models": [ { "id": "moonlight-v1-32k", "name": "Moonlight V1 32K", "contextWindow": 32768 }, { "id": "moonshot-v1-8k", "name": "Moonshot V1 8K", "contextWindow": 8192 }, { "id": "moonshot-v1-32k", "name": "Moonshot V1 32K", "contextWindow": 32768 }, { "id": "moonshot-v1-128k", "name": "Moonshot V1 128K", "contextWindow": 131072 }, { "id": "kimi-k2.5", "name": "Kimi K2.5", "contextWindow": 200000 } ] } } } }
clawdbot gateway restart
clawdbot models list
You should see Moonshot models in the list.
Set as default:
clawdbot models set moonshot/kimi-k2.5
Or use model aliases in chat:
/model moonshot/kimi-k2.5
export KIMICODE_API_KEY="sk-your-kimicode-key-here"
Or add to
.env:
echo 'KIMICODE_API_KEY="sk-your-kimicode-key-here"' >> ~/.env
Edit your
clawdbot.json config:
{ "agents": { "defaults": { "model": { "primary": "kimicode/kimi-for-coding" }, "models": { "kimicode/kimi-for-coding": { "alias": "kimi" } } } }, "models": { "mode": "merge", "providers": { "kimicode": { "baseUrl": "https://api.kimi.com/coding/v1", "apiKey": "${KIMICODE_API_KEY}", "api": "openai-completions", "models": [ { "id": "kimi-for-coding", "name": "Kimi For Coding", "contextWindow": 200000, "maxTokens": 8192 } ] } } } }
clawdbot gateway restart
clawdbot models list
You should see
kimicode/kimi-for-coding in the list.
Set as default:
clawdbot models set kimicode/kimi-for-coding
Or use model alias in chat:
/model kimi
You can configure both Moonshot and Kimi Code simultaneously:
{ "agents": { "defaults": { "model": { "primary": "moonshot/kimi-k2.5" }, "models": { "kimicode/kimi-for-coding": { "alias": "kimi" }, "moonshot/kimi-k2.5": { "alias": "k25" } } } }, "models": { "mode": "merge", "providers": { "moonshot": { "baseUrl": "https://api.moonshot.cn/v1", "apiKey": "${MOONSHOT_API_KEY}", "api": "openai-completions", "models": [ { "id": "kimi-k2.5", "name": "Kimi K2.5", "contextWindow": 200000 } ] }, "kimicode": { "baseUrl": "https://api.kimi.com/coding/v1", "apiKey": "${KIMICODE_API_KEY}", "api": "openai-completions", "models": [ { "id": "kimi-for-coding", "name": "Kimi For Coding", "contextWindow": 200000 } ] } } } }
Switch between models using aliases:
/model k25 - Kimi K2.5 (general)/model kimi - Kimi for Coding (specialized)Check config syntax:
clawdbot gateway config.get | grep -A 20 moonshot
Verify API key is set:
echo $MOONSHOT_API_KEY echo $KIMICODE_API_KEY
sk-Test API endpoint directly:
curl -X POST "https://api.moonshot.cn/v1/chat/completions" \ -H "Authorization: Bearer $MOONSHOT_API_KEY" \ -H "Content-Type: application/json" \ -d '{"model": "kimi-k2.5", "messages": [{"role": "user", "content": "test"}]}'
moonshot/kimi-k2.5) - Best for general tasks, 200K contextkimicode/kimi-for-coding) - Specialized for code generationmoonshot/moonshot-v1-128k) - Legacy model, 128K contextNo automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.