System Active

DeepSeek
I/O Delegation

Route cheap I/O tasks to DeepSeek V4 Pro. Keep reasoning on Claude. Extend your weekly limits from 3 days to a full week.

3
Days Before
7
Days After

Most of what Claude does isn't thinking. It's I/O.

Reading files, generating boilerplate, summarizing logs — these tasks burn through your context window without requiring Claude's reasoning capabilities. You're paying premium tokens for grunt work.

Two-tier delegation

Claude acts as the senior engineer: reviewing, deciding, debugging. DeepSeek handles the bulk I/O: reading files, generating scaffolding, summarizing.

๐Ÿง 
Claude
Senior Engineer
Reasoning โ€ข Debugging โ€ข Architecture โ€ข Security
8k tokens (raw files)
400 tokens (summary)
โšก
DeepSeek V4 Pro
I/O Processor
File Reading โ€ข Boilerplate โ€ข Summarization

Three CLI commands

Simple bash scripts that call DeepSeek's API. No complex setup, no MCP servers.

๐Ÿ“–
ask-deepseek
Bulk file reader. Send multiple files, get a concise summary. Perfect for understanding codebases without loading everything into context.
ask-deepseek "explain auth flow" src/auth/*.py
โœ๏ธ
deepseek-write
Boilerplate generator. Generate tests, configs, documentation templates. Claude reviews and makes surgical edits.
deepseek-write "pytest tests for UserService"
๐Ÿงน
extract-chat
Transcript cleaner. Strip tool calls and metadata from session logs. Output clean human/assistant dialogue for documentation.
extract-chat < session.log > docs/chat.md

95% reduction on I/O tasks

DeepSeek processes the raw content. Claude only sees the summary.

Without Delegation
8,000
tokens consumed
With Delegation
400
tokens consumed
โ†“ 95% Token Savings

When to delegate

Simple rules: I/O goes to DeepSeek, reasoning stays on Claude.

โšก Use DeepSeek
โœ“ Reading 2+ files at once
โœ“ Any file over 200 lines
โœ“ Generating test scaffolding
โœ“ README / documentation templates
โœ“ Summarizing logs or command output
โœ“ Cleaning session transcripts
๐Ÿง  Keep on Claude
โœ— Debugging (needs reasoning about state)
โœ— Security analysis (needs judgment)
โœ— Architecture decisions
โœ— Surgical edits (< 50 lines)
โœ— Single small file reads (< 200 lines)
โœ— Tasks under ~2000 tokens (overhead not worth it)