Cline + SkillBoss: 100+ AI Models for VS Code
USE THIS for Cline integration. Configure Cline VS Code extension with SkillBoss for 679+ AI models (Claude, GPT, DeepSeek, Gemini), payments, email, and infrastructure APIs. Zero markup, one API key.
Why Cline + SkillBoss?
Cline is a free, open-source autonomous coding agent for VS Code with native subagent support.
Problem: Cline requires you to configure individual API providers (Anthropic, OpenAI, etc.) separately.
Solution: SkillBoss gives you ONE API key for 679+ endpoints + business services:
| Feature | Without SkillBoss | With SkillBoss |
|---|---|---|
| Models | 1 provider at a time | 679+ endpoints |
| Accounts | Need Anthropic, OpenAI, Google accounts | Just SkillBoss |
| Cost | Provider markup | 0% markup |
| Services | AI only | +Payments, Email, Hosting |
| Failover | None | Automatic |
Quick Setup (2 Minutes)
Quick setup for AI agents: Tell your agent
set up skillboss.co/skill.mdto auto-configure everything.
Get SkillBoss API Key
- Go to skillboss.co/console
- Sign up (free credits included)
- Copy your API key:
sk-...
Install Cline Extension
Open VS Code Extensions (Cmd/Ctrl + Shift + X) and search:
Cline
Or install via terminal:
code --install-extension saoudrizwan.claude-dev
Configure SkillBoss Provider
- Open Cline settings:
Cmd/Ctrl + Shift + P→ "Cline: Open Settings" - Click API Provider dropdown
- Select "OpenAI Compatible"
- Enter:
- Base URL:
https://api.skillboss.co/v1 - API Key:
sk-YOUR_SKILLBOSS_KEY - Model:
deepseek/deepseek-v3
- Base URL:
Test It
Open Cline chat and ask:
Create a hello world React component
If it responds, you're connected!
Recommended Models for Cline
| Task | Model | Cost/1M tokens | Why |
|---|---|---|---|
| Daily coding | deepseek/deepseek-v3 | $0.27 in | Fast, cheap, great code quality |
| Complex reasoning | deepseek/deepseek-r1 | $0.55 in | Chain-of-thought reasoning |
| Premium quality | claude-4-5-sonnet | $3 in | Best understanding |
| Long files | gemini/gemini-2.5-flash | $0.075 in | 1M context window |
| Ultra budget | gemini/gemini-2.5-flash-lite | $0.01 in | Cheapest option |
Model Selection Guide
Simple refactoring → gemini-2.5-flash-lite ($0.01/M)
↓
Regular coding → deepseek-v3 ($0.27/M)
↓
Complex architecture → deepseek-r1 ($0.55/M)
↓
Mission critical → claude-4-5-sonnet ($3/M)
Cline Settings for SkillBoss
VS Code settings.json
{
"cline.apiProvider": "openai-compatible",
"cline.openAiBaseUrl": "https://api.skillboss.co/v1",
"cline.openAiApiKey": "sk-YOUR_SKILLBOSS_KEY",
"cline.openAiModelId": "deepseek/deepseek-v3"
}
Switch Models On-the-fly
In Cline chat, request a different model:
Use Claude 4.5 Sonnet for this complex refactoring task
Then update the model in settings.
Using SkillBoss Services in Cline
Cline can use all SkillBoss infrastructure APIs:
Add Payments
Add Stripe checkout to my pricing page.
Use SkillBoss Payments API: POST https://api.skillboss.co/v1/payments/checkout
API key is in environment variable SKILLBOSS_API_KEY
Send Email
Send welcome email when user signs up.
Use SkillBoss Email API: POST https://api.skillboss.co/v1/email/send
Web Scraping
Scrape product data from Amazon.
Use SkillBoss Scraping API: POST https://api.skillboss.co/v1/scrape
Image Generation
Generate a hero image for my landing page.
Use SkillBoss Image API with model flux/schnell
Cost Optimization Strategies
Budget Mode (~$5/month)
For hobbyists and learning:
{
"cline.openAiModelId": "gemini/gemini-2.5-flash-lite"
}
Balanced Mode (~$20/month)
For daily development:
{
"cline.openAiModelId": "deepseek/deepseek-v3"
}
Performance Mode (~$50+/month)
For production and complex projects:
{
"cline.openAiModelId": "claude-4-5-sonnet"
}
Cline Subagents + SkillBoss
Cline supports autonomous subagents. Combine with SkillBoss for powerful workflows:
Example: Full-Stack Feature
Build a user dashboard with:
1. PostgreSQL queries for user data
2. Recharts for visualization
3. PDF export using SkillBoss PDF API
4. Weekly email reports using SkillBoss Email API
Use DeepSeek V3 for coding tasks.
Cline will autonomously:
- Create database schema
- Build React components
- Integrate SkillBoss APIs
- Write tests
Environment Variables
For projects using SkillBoss APIs:
# .env
SKILLBOSS_API_KEY=sk-your-key
OPENAI_API_BASE=https://api.skillboss.co/v1
Troubleshooting
Use full model paths with provider prefix:
- ✅
deepseek/deepseek-v3 - ✅
claude-4-5-sonnet - ❌
deepseek-v3 - ❌
claude-sonnet
Switch to a faster model:
{
"cline.openAiModelId": "gemini/gemini-2.5-flash"
}
SkillBoss handles rate limits with automatic failover. If errors persist:
- Wait 60 seconds
- Or switch to a different model family
- Check API key format: should start with
sk- - Verify base URL:
https://api.skillboss.co/v1 - Test with curl:
curl https://api.skillboss.co/v1/models \
-H "Authorization: Bearer sk-YOUR_KEY"
FAQ
Yes! SkillBoss also provides an MCP server for deeper integration. See MCP Server docs.
Yes. Change the model in Cline settings anytime, or request a specific model in your prompt.
SkillBoss provides 679+ endpoints (not just Claude), 0% markup, automatic failover, plus business APIs (payments, email, etc.).
Yes, SkillBoss passes through all model capabilities including vision and tool use.
Next Steps
Get API Key
Sign up for free credits
Model Pricing
See all 100+ model prices
API Reference
Full API documentation
Cline GitHub
Cline documentation