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

Running OpenClaw and Codex CLI Natively on Android via AnyClaw APK
A developer has packaged OpenClaw and Codex CLI into an Android APK called AnyClaw, enabling the gateway and Control UI to run locally on ARM64 Android 7.0+ devices without root. The project required building dependencies from source and patching multiple components to handle Android-specific constraints.

Microsoft BitNet: 1-bit LLM inference framework for CPU and GPU
Microsoft released BitNet, an inference framework for 1-bit LLMs that achieves 1.37x to 6.17x speedups on CPUs and reduces energy consumption by 55.4% to 82.2%. It can run a 100B parameter model on a single CPU at 5-7 tokens per second.

Demo for AI Agent Micropayments Using x402 and Solana
The x402-hello demo illustrates AI agents autonomously handling micropayments using USDC on the Solana blockchain.

Open-Source Web UI for Parallel Claude Code Sessions Using Git Worktree
A developer has built an open-source web UI called CCUI that enables running multiple Claude Code sessions in parallel using git worktree. It runs as a local web server accessible via browser and supports SSH port forwarding for remote development.