Show HN: Spewer – Delegate Codex/Claude tasks to cheaper models Spewer, a local service from modiqo, lets users delegate bounded work from AI harnesses like Codex and Claude Code to lower-cost models, with version 0.2 using hosted gpt-5.6-luna via Codex App Server. The tool, installable via Homebrew, supports detached tasks, worker watching, and input relay, and requires macOS or Linux with Git. Spewer is a local service that lets your current AI harness delegate bounded work to lower-cost models. Keep working in Codex, Claude Code, Kimi, or another preferred harness. Spewer runs the delegated worker, keeps its task alive, and returns an evidence-rich receipt. The shortest useful path is three commands: bash $ brew install modiqo/tap/spewer $ spewer install $ spewer ask "What is 17 multiplied by 19?" 323 That is a working Spewer. The next steps add background work, local Qwen3, frontier delegation, specialized skills, and concurrent workers. You need macOS or Linux and Git. Spewer installs Codex CLI when it is missing. Building Spewer from source also requires Rust 1.96 or newer. Spewer 0.2 uses hosted gpt-5.6-luna through Codex App Server. It does not download model weights to your machine. Install the latest release with Homebrew: bash $ brew install modiqo/tap/spewer Homebrew also installs spu as a short alias. Both names run the same binary, and this guide uses the canonical spewer name. To build the current checkout instead: bash $ cargo install --path . --locked Prepare Luna, the generic worker capsule, the Codex delegation skill, and the detached service: bash $ spewer install A successful response includes "ready": true and a generic default capsule. If Codex needs authentication, run codex once. Then repeat spewer install . Run a question and wait for its answer: bash $ spewer ask "What is 17 multiplied by 19?" 323 This proves that configuration, App Server startup, Luna access, execution, and receipt creation all work. Spewer writes progress to standard error. The requested text or structured result stays on standard output. Detach work when you want the caller to continue immediately: bash $ spewer ask "Inspect the parser tests and summarize any failures." --detach Spewer returns a durable task id . Check it when convenient: bash $ spewer check