Skills
Use skills with the Oz CLI to run agents from reusable skill definitions stored in your repositories.
Skill spec format
# Fully qualified (recommended)
oz agent run-cloud -e <ENV_ID> --skill "owner/repo:skill-name" --prompt "deploy to staging"
# With full path
oz agent run-cloud -e <ENV_ID> --skill "warpdotdev/warp-server:.warp/skills/deploy/SKILL.md" --prompt "deploy to staging"Using skills with cloud agents
# Run a deploy skill from a specific repo
oz agent run-cloud \
--environment SVhg783GBFQHk1OfdPfFU9 \
--skill "myorg/backend:.warp/skills/deploy/SKILL.md" \
--prompt "deploy to staging"
# Run a code review skill
oz agent run-cloud \
--environment SVhg783GBFQHk1OfdPfFU9 \
--skill "myorg/backend:code-review" \
--prompt "review the latest PR"Using skills with local agents
Last updated
Was this helpful?