The short version
Dynamic Workflows is a feature of one vendor’s coding agent. Smithers is an MIT-licensed runtime that treats coding agents, humans, and plain code as steps in one durable workflow. The two overlap on “run many agents against a problem” and differ on everything around it.| Claude Code Workflows | Smithers | |
|---|---|---|
| Where it runs | Inside a Claude Code session | Your laptop, CI, or a server; the process is disposable |
| Models | Claude subagents | Claude Code, Codex, Pi, Antigravity, any AI SDK model, mixed in one workflow |
| Crash mid-run | Work is lost; start the script again | Resumes from the last persisted step |
| Human approval | Blocks while you are at the terminal | Durably suspends; answer tomorrow over CLI, web, or HTTP |
| The workflow itself | A script generated per task | A versioned file you review, diff, rerun, and eval |
| History | Scoped to the session | Every run, frame, and attempt is a SQLite row: ps, inspect, timeline, rewind, fork, replay |
| Scheduling | You start it | Durable cron triggers, alerts, and a supervisor that revives stale runs |
| Source | Closed research preview | MIT, on GitHub |
What that means in practice
Durability is the line. A Dynamic Workflow orchestrates subagents and returns an answer; the value lives in that session. A Smithers run persists every completed step the moment it finishes, so killing the process, closing the laptop, or deploying over it costs you nothing. Resume picks up at the right step, andsupervise does it automatically when a heartbeat goes stale.
Vendor scope is the other line. An orchestration layer earns its keep by outliving the model choice. In Smithers a frontier model plans, a cheaper model fans out, and a different lab’s model reviews, in one workflow, with fallback arrays (agent={[claude, codex]}) when a provider has a bad day or you hit a rate limit. Dynamic Workflows orchestrates Claude.
Approvals change what you can automate. A run that cannot stop and wait for a human is a run you have to babysit. <Approval> suspends a Smithers run as a database row that costs nothing while it waits, then resumes at the right step when someone answers. That is the difference between “agents I watch” and “agents I check on in the morning.”
They compose
This is not either/or. Smithers drives Claude Code as a first-class agent, on your existing subscription, and the Claude Code plugin mirrors Smithers runs into the session so your agent can watch and steer them. A sensible split: quick fan-outs in the session, anything long-running, approval-gated, or worth rerunning goes to Smithers. The longer argument, with the crash-resume demo, is in the open, durable version of agent workflows.See also
- Smithers vs. Temporal
- Smithers vs. LangGraph
- Get started: one command, first run in 30 seconds