Warp Oz Agent Skills banner
chongdashu chongdashu

Warp Oz Agent Skills

AI community

Description

> **As Seen In:** [Warp Just Changed Cloud Agents Forever (Oz)](https://www.youtube.com/watch?v=BM5rDHLuKY4) by [@AI Oriented Dev](https://www.youtube.com/@aiorienteddev)

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 Agent Skills

**As Seen In:** [Warp Just Changed Cloud Agents Forever (Oz)](https://www.youtube.com/watch?v=BM5rDHLuKY4) by [@AI Oriented Dev](https://www.youtube.com/@aiorienteddev)

A collection of reusable [Agent Skills](https://docs.warp.dev/agent-platform/capabilities/skills) for [Warp](https://www.warp.dev/) and [Oz](https://oz.warp.dev/) cloud agents.

What Are Agent Skills?

Agent Skills are markdown files that teach AI agents how to perform specific tasks. Each skill lives in a folder with a `SKILL.md` file containing metadata and step-by-step instructions. When you work with agents in Warp, they automatically discover and use these skills to provide context-aware help.

Think of skills as onboarding guides — they give agents the procedural knowledge they need to be reliable experts in a specific domain.

Skills in This Repo

Skill Description
`oz-skill-creator` Create well-designed Oz agent skills for any project. Covers skill format, trigger-context design, guardrails, anti-patterns, and deployment across local, cloud, scheduled, and GitHub Action entrypoints.
`oz-action-creator` Design and refine Oz-powered GitHub workflow actions. Covers event triggers, permissions, prompt construction, output handling, and validation for warpdotdev/oz-agent-action workflows. Includes reference docs, a workflow linter script, and a starter template.

Quick Start

Use a skill in your project

Copy a skill folder into your project's `.agents/skills/` directory:

# Copy a skill to your project
cp -r .agents/skills/oz-skill-creator /path/to/your-project/.agents/skills/

# Or make it available globally (all projects)
cp -r .agents/skills/oz-skill-creator ~/.agents/skills/

Warp automatically discovers and loads the skill on your next agent interaction.

Use a skill with the Oz CLI

# Run locally with a skill from thi