Scheduled Agents Quickstart
Schedule an Oz cloud agent to run recurring tasks automatically — issue triage, dependency checks, code cleanup, and more.
Scheduled agents are Oz cloud agents that run on a recurring cron schedule, handling recurring tasks automatically without manual triggers. This guide walks you through setting up an agent that triages your GitHub bug reports every week, checks whether each issue has enough detail to investigate, and posts follow-up comments when information is missing. You'll use a prebundled skill and the Oz web app; no CLI or custom code required.
Prerequisites
A Warp account on an eligible plan - Build, Max, or Business, with credits available. See Access, Billing, and Identity.
An Oz cloud environment - Agents run inside a configured environment that includes repos and other dependencies. If you don't have one, follow the Cloud Agents Quickstart to create one first.
1. Set up a scheduled agent
From the Schedules page in the Oz web app, click New schedule.
Enter a name, e.g.
Weekly bug report triage.Under Agent, select github-bug-report-triage from the suggested skills.
Choose your environment.
Under Frequency, choose a preset or enter a custom cron expression (e.g.,
0 9 * * 1for every Monday at 9 AM).Click Create schedule.
Breaking it down: The schedule lives in Oz's cloud infrastructure. Unlike a local cron job, it fires even when your machine is off. Each run starts a fresh, isolated session with no state carried over from previous executions, and every run is tracked and auditable in the Oz web app.
2. Watch your first run
To verify your setup without waiting for the schedule to fire, trigger a test run now:
From the Schedules page in the Oz web app, click the schedule you just created.
Click ⋮ and select Run now, then click Run to confirm.
Your test run will appear under All on the Runs page. Once the schedule fires on its cron, those runs will appear under Recurring.
Runs are also accessible from the conversation panel view in the Warp app and on mobile via the Oz web app.
Prefer the CLI? See Scheduled Agents for oz schedule create, oz schedule list, and full schedule management commands. To use a custom skill instead of a prebundled one, see Skills as Agents.
Next steps
Trigger agents from your tools - Connect Oz to Slack or Linear to trigger agents from mentions or issue updates. See Integrations Quickstart.
Manage and refine your schedule - Change the frequency, swap skills, or pause and resume the schedule. See Scheduled Agents for the full reference.
Share with your team - Schedules and environments are shared across your Warp team, so everyone benefits automatically.
Last updated
Was this helpful?