Bare-minimum starter template. One worker agent, one workflow. Designed to be edited or thrown away as you build your own pipeline.
| File | Purpose |
|---|---|
agents/greeter.ts |
A worker that greets a message in a creative one-liner |
agents/hello.ts |
A one-step workflow that runs greeter |
pnpm generata hello --message "world"If you didn't cd into the project, prefix with pnpm dlx or npx.
- Open
agents/greeter.tsand rename / repurpose it. - Add new agents in
agents/(or subdirectories - they're scanned recursively). - Add workflows in
agents/workflows/(the convention) - flat placement directly inagents/also works - and they'll show up inpnpm generata help workflows. - Run
pnpm generata commands syncafter adding workflows to refresh.claude/commands/.
There is no project opinion here - the agent and workflow are placeholders. See @generata/coding for a full-featured example.