Open-source Specialist Dispatch adapter delegates complex tasks to Claude Code

expert-dispatch is an open-source adapter that enables a cheap AI assistant to delegate complex tasks to Claude Code CLI. The tool implements what the creator calls the "Specialist Dispatch Pattern": a cheap orchestrator handles routine work while an expensive specialist tackles difficult tasks, connected by a thin adapter layer.
How it works
The workflow follows this pattern: User asks for something like "Build me a REST API for task management" → Assistant (running on a cheap model) recognizes the task needs expert work → Assistant dispatches to Claude Code using dispatch-cc run --slug task-api --prompt "Create a Flask REST API..." → Claude Code works autonomously in a project directory → Assistant reports back: "Done. CC created 4 files, all tests pass. Here's what it built..."
Commands and features
run— dispatch a task to Claude Coderesume— continue with user feedback (Claude Code picks up where it left off)review— independent quality review by a fresh Claude Code sessionstatus,list,search— manage multiple projects
The tool creates per-project directories with CLAUDE.md for persistent context and maintains an audit trail with full JSON logs. It works on both Linux and macOS.
The creator is asking how others handle the "cheap model for routine work, strong model for hard tasks" pattern, especially for non-coding tasks like research or writing.
📖 Read the full source: r/ClaudeAI
👀 See Also

Auto-co: A 50-Line Bash Script That Turns Claude Code Into Autonomous AI Companies
Auto-co is a 50-line bash script that wraps the Claude Code CLI in a loop, allowing it to run autonomously with 14 AI agents playing roles like CEO, engineer, and critic. It has built four products from scratch, including FormReply and Changelog.dev, at a total cost of $268 across 270+ cycles.

MCP Server for Italian Train Data: Real-Time Delays, Departures, and Schedules in Claude
A developer built an unofficial MCP server for Trenitalia that provides five tools for querying Italian train data through Claude, including real-time departure/arrival boards, train tracking, and schedules with live delay enrichment.

ComfyUI Skill Enables AI Agents to Queue and Batch Image Renders via Natural Language
A new open-source skill allows OpenClaw agents to construct ComfyUI workflows, submit jobs, and manage renders through natural language commands like 'Make 50 variations of this concept with different seeds' or 'Compare these 4 prompts side by side at 1024x1024'.

MCP Server for TypeScript Projects Replaces Claude Code's Grep Pattern with Indexed Symbol Lookups
A developer built an MCP server that replaces Claude Code's grep-and-guess pattern with indexed symbol lookups for TypeScript projects. The tool maintains a live SQLite index of symbols, call sites, imports, and class hierarchy, reducing token usage by 63-79% in tests.