Claude Code Skill Delegates Coding to Mistral/DeepSeek: 57M Tokens Saved, 90-100% Cost Reduction

Developer pcx_wave posted a detailed breakdown of vibe-skill, a Claude Code skill that delegates coding tasks to cheaper models (Mistral or DeepSeek) while using Claude for planning and review. After 10 days and 254 runs, they saved 57 million tokens and cut costs by 90-100% while maintaining Claude-quality output.
How It Works
Vibe-skill runs inside Claude Code. You type /vibeon <whatever>, Claude decomposes the task and delegates the actual coding to a lightweight model (via the open-source Vibe tool). Claude then reviews the diff and corrects failures. The cheap model handles token-burn; Claude only spends tokens on planning and review.
Results by Model
| Model | Tokens Delegated | Actual Cost | Claude Equivalent | Savings |
|---|---|---|---|---|
| DeepSeek V4 Flash | 29M | $4.13 | $92.16 | 95% |
| Mistral Medium 3.5 | 28M | $0 (Pro sub) | $84.77 | 100% |
Overall success rate: 98% across 254 runs. When delegation fails, Claude catches and corrects the output.
Token Economics
Mistral tokens are roughly 50% cheaper than Claude's; DeepSeek tokens are 95% cheaper. The author uses a Mistral Pro subscription ($18.36/mo) which includes about 1 billion free tokens. For Mistral Pro subscribers, delegation costs $0 until the quota is exhausted, after which it automatically falls back to DeepSeek (since Mistral PAYG at $1.52/M tokens is 10× more expensive than DeepSeek).
The break-even point: DeepSeek alone is cheaper than the Mistral Pro subscription if you delegate below 131M tokens/month ( $18.36 / $0.14 per M ). Above that volume, Mistral Pro wins with ~10× more headroom before hitting the quota.
Setup
The skill is open source at github.com/pcx-wave/vibe-skill. A similar Gemini skill is also available but less configurable and flaky. To use, clone the repo and load the skill into Claude Code — then just /vibeon your task.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Proposal: Scope Memory & Hermetic Instance Isolation
A formal proposal to Anthropic from a power user: global/local memory scoping and hermetic instance isolation for Claude, enabling deterministic, auditable sessions.

Wisepanel MCP Server Enables Multi-LLM Deliberation in Claude Code and Cursor
Wisepanel released an MCP server that runs multi-agent deliberations directly from Claude Code, Cursor, or any MCP client, using a divergent context enhancement system with ChatGPT, Claude, Gemini, and Perplexity models.

Lean Context: Claude Code Plugin Converts Verbose Docs to Agent-Optimized Files
A free, open-source Claude Code plugin called Lean Context scans project documentation and removes content AI agents can discover through grepping, keeping only essential non-obvious commands, gotchas, and environment quirks. In a .NET e-commerce project test, it reduced 8 documents totaling 1,263 lines to just 23 lines.

Open-source CLI uses Claude Haiku to automate Xero expense auditing
A developer has released an open-source Python CLI tool that uses Claude Haiku 4.5 to automate Xero expense auditing. The tool follows a 'deterministic code first, then AI to fill in the gaps' approach, keeping costs to a few cents per audit run.