https://github.com/bholmesdev/warp-agent-skills
Coding agent skill for running and configuring Warp cloud agents
https://github.com/bholmesdev/warp-agent-skills
Last synced: 3 months ago
JSON representation
Coding agent skill for running and configuring Warp cloud agents
- Host: GitHub
- URL: https://github.com/bholmesdev/warp-agent-skills
- Owner: bholmesdev
- Created: 2026-02-04T23:29:21.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-02-10T20:47:04.000Z (4 months ago)
- Last Synced: 2026-02-10T23:43:21.782Z (4 months ago)
- Size: 5.86 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Warp Agent Skill
A coding agent skill for interacting with the [Warp Agent platform](https://docs.warp.dev/agent-platform/platform/warp-platform). Coding agents can use this skill to spawn and manage cloud agents, configure environments, and automate tasks via the Warp CLI, REST API, or GitHub Actions.
## Prerequisites
Install the `warp` CLI. This comes pre-installed with [Warp](https://warp.dev), or you can install it separately [following our installation guide](https://docs.warp.dev/reference/cli).
## Installation
Copy this repository into your agent's skills folder:
- **Codex**: `~/.codex/skills/`
- **Claude**: `~/.claude/skills/`
- **Warp or other agents**: `~/.agents/skills/`
```bash
cp -r warp-agent-skills ~/.agents/skills/
```
## Usage
Reference the Warp skill using `/warp` in your coding agent, or by asking the agent to do something with Warp cloud agents. For example:
```sh
# Create an environment
/warp Create an environment from this repository
# Create a GitHub action
Create a Warp GitHub action for this environment that looks for bug reports. I want it to look at the issue template in the repository, which should be cloned into the environment, and evaluate if the bug report follows that template faithfully. If not, it should use the GitHub CLI to leave a comment to the user.
```
This skill allows the agent to:
- Spawn cloud agents with custom prompts and environments
- Monitor agent status and view cloud sessions
- Schedule agents to run repeatedly (cron-based)
- Create and manage development environments
- Integrate with GitHub Actions workflows
## Documentation
For usage instructions and detailed guides:
- [Platform overview](https://docs.warp.dev/agent-platform/platform/warp-platform)
- [Usage with cron scheduling](https://docs.warp.dev/agent-platform/ambient-agents/managing-ambient-agents/scheduled-agents)
- [Usage within GitHub Actions](https://docs.warp.dev/agent-platform/integrations/github-actions)
- [Usage from application code with REST API or SDK](https://docs.warp.dev/reference/api-and-sdk/api-and-sdk)