Workflow 002: Cloud Agent Deployment
Fresh| Field | Value |
|---|---|
| Workflow ID | WF-002 |
| Version | 1.0 |
| Status | Active |
Overview
Deploy autonomous cloud agents that run in the background on Warp's infrastructure, triggered by events, schedules, or manual invocation.
Workflow Steps
1. Create a Skill for the Task
markdown
---
name: nightly-dep-check
description: Check for outdated dependencies and create a PR with updates
---
# Nightly Dependency Check
## Instructions
1. Run dependency audit commands
2. Identify outdated packages
3. Create a branch with updates
4. Open a pull request with changelog2. Configure an Environment
Set up in the Oz web app:
- Link your repository
- Select a Docker image
- Add startup commands
- Configure secrets
3. Test Locally First
bash
# Test the skill locally
oz agent run --skill "my-org/my-repo:nightly-dep-check" \
--prompt "run dependency check"4. Deploy to Cloud
bash
# Run in the cloud with environment
oz agent run-cloud \
--environment SVhg783GBFQHk1OfdPfFU9 \
--skill "my-org/my-repo:nightly-dep-check" \
--name "nightly-dependency-check" \
--prompt "Check all dependencies and open PRs for updates" \
--open5. Set Up Scheduling (Optional)
Use the Oz web app to create a schedule:
- Go to oz.warp.dev
- Navigate to Schedules
- Create new schedule with cron expression
- Link to your skill and environment
6. Configure Integrations (Optional)
Connect triggers:
- Slack - Agents respond to messages or commands
- Linear - Agents react to issue changes
- GitHub Actions - Agents run as CI steps
7. Monitor and Manage
bash
# View running agents
# Use Oz web app for full management UISession sharing allows team members to:
- Monitor progress in real-time
- Steer the agent mid-run
- Review completed sessions
Verification Checklist
- [ ] Skill tested successfully with local agent
- [ ] Environment configured with correct repo and image
- [ ] Cloud run completes successfully
- [ ] Session transcript available and reviewable
- [ ] Schedule (if applicable) triggers at correct times