- installed the workflow pack
- launched a workflow
- inspected the resulting run
- chosen whether to go deeper on CLI operations or JSX authoring
1. Scaffold the Workflow Pack
.smithers/ directory with seeded workflows, shared prompts, reusable components, and agent configuration.
2. Launch a Seeded Workflow
implement workflow that init installs into .smithers/workflows/.
It is the fastest way to see Smithers behave like a workflow runtime instead of a library on a shelf.
3. Inspect the Run
Once the workflow starts, use the CLI to see what happened:ps to find the run ID if you do not already have it.
4. Understand What You Just Used
Every workflow gets:- SQLite persistence
- Resume after restarts
- Retries, approvals, loops
- Observability and CLI tooling
- the workflow pack gave you runnable workflows
- the CLI launched, inspected, and reported on the run
Next Steps
- CLI Quickstart to learn the terminal workflow in a more systematic way.
- CLI Overview for the full command surface, including logs, approvals, and signals.
- JSX Quickstart to build a workflow from scratch.
- Workflows Overview to connect the run you just started to the runtime model.