Oz Dev Environments banner
warpdotdev warpdotdev

Oz Dev Environments

Development community

Description

Predefined dev environments for running Oz Cloud Agents and integrations.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Oz Dev Environment Docker Images

This repository contains prebuilt Docker images for use with [Oz environments](https://docs.warp.dev/agent-platform/cloud-agents/environments). These images provide ready-to-use development environments for running [Oz cloud agents](https://docs.warp.dev/agent-platform/cloud-agents/cloud-agents-overview) and [integrations](https://docs.warp.dev/agent-platform/cloud-agents/integrations) (Slack, Linear, GitHub Actions).

An [Oz environment](https://docs.warp.dev/agent-platform/cloud-agents/environments) defines the execution context for an Oz cloud agent run: the **Docker image**, **repositories to clone**, **setup commands**, and **runtime configuration**. These images handle the Docker image part so you can get started quickly.

Quickstart

To get started, you'll need to have the [Oz CLI](https://docs.warp.dev/reference/cli) installed and authenticated. This is done automatically if you already have the Warp app installed.

1. Create an environment

Create an environment using one of the prebuilt images:

oz environment create \
  --name my-go-env \
  --docker-image warpdotdev/dev-go:1.23 \
  --repo octocat/hello-world \
  --setup-command "go mod download"

Alternatively, use the [Oz web app](https://oz.warp.dev) to create environments with a guided flow, or the `/create-environment` slash command in Warp to auto-detect your project's languages and suggest an appropriate image.

2. Run Oz agents

Once your environment is ready, you can:

oz agent run-cloud --environment env_abc123 --prompt "Fix the failing tests in src/"
  • Create integrations so agents run automatically from Slack, Linear, or GitHub Actions:
oz integration create slack --environment env_abc123
  • Schedule agents to run on a cron schedule for recurring tas