Copy-paste recipes: what to type, in what order, for each common job. Each step says what you type and what happens; your only manual work is answering questions and approving gates. docs/guides/agent-quickstart.md is the manual per-module walkthrough if you want to drive every step yourself.
One-time setup (once per clone):
pnpm setup # docker + db + mcp + deps
First time on the platform? Let it onboard you - it interviews you for requirements, then delegates the build to the right agents:
/start # or: /start I want a tournaments feature
/add-feature OSS-123 # or a work-order path, or just describe the feature
Then follow the flow - it stops for you twice:
- Answer the grill questions. The agent asks about scope edges, module ownership, data-model choices. Pick options or type answers.
- Approve the plan. You get the exact surface (packages, tables, contracts, events) + task breakdown. Say "approved" (or correct it first). Nothing is edited before this.
- Wait - implementation, tests, parallel review (
contract-reviewer+security-reviewer+quality-reviewer), and QA e2e run agent-side, with fixes looped in automatically. - When it reports green:
/create-pr
- Confirm the push when asked (pushes always need your explicit "yes").
Fuzzy idea instead of a ticket? Start with the domain expert, then feed its output to step 1:
ask the expert agent: turn "<your idea>" into requirements with acceptance criteria
/add-feature <the resulting spec>
Everyday review of your branch (cheap, works on capped plans):
/review # current branch vs dev
/review 123 # a GitHub PR by number
/review --base stage # different base branch
/review --agents 4 # force the fan-out width
/review --fix # also apply BLOCK and WARN fixes in the working tree
/review --ci # non-interactive; exit 1 on NO-GO
When you want to drive implementation yourself instead of /add-feature:
/scaffold-module tournaments # new domain module, registered + working list route
/scaffold-route tournaments POST /tournaments # add a route stub to it
/scaffold-plugin my-overlay # overlay extension under extensions/
Fill in the // AGENT: implement here regions (or tell the agent to), then after any schema/contract edit:
/regen # migrations + catalog
/verify # typecheck + lint + unit tests, same as CI
/verify --filter @openora/core # scoped to one package (faster)
/verify doesn't just run the checks - it fixes what fails (or explains why a test needs updating) and never reports done on red.
/pre-pr # full local gate incl. drift check CI runs
/create-pr # commit, push (asks first), open the PR
/adr split wallet into its own service
Read-only inspection via the oss-dev MCP tools - any agent can answer these directly:
what modules exist? # list-modules
does a route for X already exist? # list-routes
what does the wallet schema look like? # get-drizzle-schema module=wallet
would table "tournament_entry" collide? # propose-table-change
- Edit the source under
.rulesync/(rules/,subagents/,skills/) - never the generated mirrors (AGENTS.md,CLAUDE.md,.claude/,.github/). pnpm gen:agents- New/changed subagents load in a fresh session, not the current one.
- Agents are read-only until you approve a plan; they never commit unless asked and never push without a per-action "yes".
- Every state-changing action must leave an audit entry - "no audit entry = not done".
pnpm verifygreen before any PR; CI also rejects generated-artifact drift (/pre-prcatches it locally).