> ## Documentation Index
> Fetch the complete documentation index at: https://docs.reap.video/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent Skills

> Add Reap Public API knowledge to your AI coding agents for faster integration

> **For AI agents:** a documentation index is at [/llms.txt](/llms.txt). Every page is also available as markdown, just append `.md` to the URL.

<Note>
  Looking to *operate* your workspace from an agent -- create clips, publish, schedule? See the [MCP server](/api-reference/mcp). This skill gives your agent *knowledge* of the Reap Public API so it can write integrations for you.
</Note>

## Overview

Install the Reap Public API skill into your AI coding agent so it has full context on every endpoint, schema, and workflow. Once installed, your agent can help you build integrations, create automation pipelines, and use the Reap Public API without you having to reference the docs manually.

Supported agents include **Cursor**, **GitHub Copilot**, **Claude Code**, **Cline**, **Codex**, **Amp**, **Gemini CLI**, and [30+ more](https://skills.sh).

## Install the Skill

Run the following command in your project directory:

```bash theme={"system"}
npx skills add https://docs.reap.video
```

The CLI will walk you through four prompts:

<Steps>
  <Step title="Select Agents">
    Choose which agents to install the skill to. Universal agents (Cursor, Copilot, Claude Code, etc.) are pre-selected. You can also pick from 30+ additional agents.
  </Step>

  <Step title="Choose Scope">
    Select **Project** to install in the current directory (committed with your project), or **Global** to make it available across all projects.
  </Step>

  <Step title="Choose Method">
    Select **Symlink** (recommended) for a single source of truth with easy updates, or **Copy** to duplicate the skill files into each agent's directory.
  </Step>

  <Step title="Confirm & Install">
    Review the installation summary and confirm. The skill is installed instantly.
  </Step>
</Steps>

<Check>
  **Done!** Your agent now has full knowledge of the Reap Public API -- endpoints, request/response schemas, enums, authentication, and workflows.
</Check>

## What Can Your Agent Do With This Skill?

Once the skill is installed, you can ask your AI agent to:

<CardGroup cols={2}>
  <Card title="Build Integrations" icon="plug">
    "Integrate Reap clipping into my Express backend"
  </Card>

  <Card title="Generate Code & Pipelines" icon="code">
    "Write a Python pipeline that uploads a video, creates clips, and polls for completion"
  </Card>

  <Card title="Direct the AI" icon="wand-magic-sparkles">
    "Build me a highlight reel of the funniest moments from this podcast — keep clips under 60 seconds"
  </Card>

  <Card title="Debug API Calls" icon="bug">
    "Why is my create-reframe call returning 400?"
  </Card>
</CardGroup>

## Update the Skill

To pull the latest API changes, re-run the install command:

```bash theme={"system"}
npx skills add https://docs.reap.video
```

If you used the **Symlink** method, the skill updates in place for all agents automatically.

## Uninstall

Remove the skill directory from your project:

```bash theme={"system"}
rm -rf .agents/skills/reap
```

## Learn More

* [skills.sh](https://skills.sh) -- Browse and manage agent skills
* [Quickstart](/api-reference/3_quickstart) -- Get started with the Reap API
* [Authentication](/api-reference/2_authentication) -- Set up your API key
