Each card names its repo path and how to run it. The agent examples use a deterministic mock LLM provider where possible, so they run in CI with no keys — the parts that need a real key say so.
A React chat UI, a Bun API running a real server-side agent loop (model → tool_calls → execute → final answer) through the gateway, and the whole app exposed as an MCP tool — one binary, one origin.
riz init ai-chat && cd ai-chat && riz --dev[agent] block makes the binary a delegable A2A agentThree plain functions — lookup_order, list_inventory, create_ticket — that auto-become typed MCP tools, including a typed JSON-Schema body.
riz --config examples/riz.agent.toml runA Python Agent SDK script that discovers riz tools over MCP and completes a conditional task — look up an order, open a ticket if it's delayed.
ANTHROPIC_API_KEY + a running rizAn agent loops over a batch of orders, chaining tool calls — the case where "what did this request cost in tokens?" stops being trivial.
--dev Tokens panelA wasm32-wasip1 handler that validates and prices an order entirely under WASI — deny-by-default, sub-ms cold start, not an echo toy.
The same echo handler in Bun, Node, Python, Rust, Go, and WASM — the fixture set behind the cross-runtime parity matrix, and the cleanest "how do I write a handler in X" reference.
Working riz.toml files for every posture — every one parsed and validated by the test suite, so the cookbook can't rot.
riz.agent.toml — the MCP/agent demo fleetriz.prod.toml — telemetry, auth, deploy gatingriz.workos.toml · riz.clerk.toml · riz.jwt.toml — JWT/JWKS auth recipes