Core primitives
Think in three layers:- App definition
App(...)creates your app manifest (name,slug, workflows, runtime settings).
- Workflow declaration
@app.subagent(...)for the main “agent-style” workflows.@app.hook(...)for explicit event/scheduler workflows.
- Execution
run_cli(app)gives youdeploy,run,events,setup, andinvite.
Smallest hello-world cron bot
Createhello_cron.py:
What this creates behind the scenes
- One app manifest with one workflow (
id: hello-cron) - Trigger type normalized to cron
- A runtime key file (
.runtime-key.local) after deploy - A callable workflow you can invoke manually with
run
Next pages
Quickstart
End-to-end local setup + deploy/run/events flow.
SDK Reference
Full implementation-level Python SDK reference.
Investor Bot Example
Meeting-booking subagent app used in current setup.
All SDK Examples
Full set of starter projects.

