webstonehq/orchestrator — explained in plain English
Analysis updated 2026-05-18
Schedule and run cron-based automated workflows without setting up a separate database or scheduler.
Fan a task out over a list of items and watch progress on each item live.
Write a custom plugin in any language to add a new task type to a flow.
Route flow execution to separate worker machines while keeping one server as the control plane.
| webstonehq/orchestrator | acoyfellow/t2t | arcanorca/sunreactor | |
|---|---|---|---|
| Stars | 17 | 17 | 17 |
| Language | Rust | Rust | Rust |
| Last pushed | — | 2026-07-17 | — |
| Maintenance | — | Active | — |
| Setup difficulty | moderate | moderate | moderate |
| Complexity | 3/5 | 3/5 | 3/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Building from source needs Rust and Node.js, or use the prebuilt Docker image instead.
Orchestrator is a workflow automation tool that ships as one single program, without needing a database server or separate services to install. A workflow, called a flow, is an ordered list of tasks, where each task type is a small plugin bundle that can be written in any programming language, and the tool ships with one built in plugin for making web requests. Flows can be edited two ways at once, either as plain YAML text or through a visual drag and drop builder, and both stay in sync with each other. The tool supports scheduling flows with cron style timing that respects time zones and has configurable rules for what happens if the program was offline when a scheduled run should have fired. It can fan a task out to run in parallel over a list of items, with a live view showing progress on each item individually. Every time a flow is saved it keeps a full history of past versions that can be restored later, and sensitive values like passwords or API keys can be stored encrypted, with those values hidden from logs and results. The entire program, meaning the web interface, the programming interface, the scheduler, and the part that actually runs tasks, is built as one Rust program with its data kept in a single SQLite database file. The visual interface itself is a single embedded web page, so nothing extra needs to be hosted separately. It requires creating a username and password on first launch, which the documentation notes makes it reasonably safe to expose on a public web address. While a run is happening, its status, progress counters, and logs stream live to the browser. For heavier setups, execution can also be routed to separate worker machines while the main program stays in control, rather than running every task on the same machine as the web interface. To try it, a developer needs Rust and Node.js installed to build it from source, or can instead run a ready-made Docker container that already includes everything needed. A guided demo script is included that sets up a sample flow, triggers a run, and follows its progress automatically. The project's code is released under the MIT license.
A single-binary workflow automation tool with YAML or visual flow editing, cron scheduling, and plugin-based tasks in any language.
Mainly Rust. The stack also includes Rust, SQLite, Docker.
Use freely for any purpose, including commercial use, as long as you keep the copyright notice.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Don't trust strangers blindly. Verify against the repo.