Skip to main content
Your platform now runs locally and on Railway with persisted state, authentication, traces, evals, and a coding-agent development loop. Extend it with teams, workflows, schedules, and the interfaces your users already use.

Add teams and workflows

Teams come in four modes:

Scheduled tasks

The scheduler is on by default in app/main.py, and the template prepares two workflows for scheduled runs: Schedule your own agents and workflows the same way: See scheduling for the cron API.

Connect to interfaces

Connect agents to Slack, Telegram, WhatsApp, or a custom UI inside your product. Expose the agent via an interface in app/main.py:

Keep the repo coherent

As the platform grows, the same agent needs to stay aligned across its source file, app/main.py, app/config.yaml, environment variables, and documentation. The review-and-improve skill checks those files together:
It fixes straightforward issues such as stale paths, missing example.env entries, and agents that exist on disk but are not registered in app/main.py. It returns a list of changes that need your judgment. Run it before a public release or after a refactor.

What you have built