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

# Overcut Skills

> Official Overcut skills you add to your AI coding agent to manage your workspace and migrate existing automation frameworks into Overcut.

Overcut publishes official skills that connect an AI coding agent to Overcut. Install one, and your agent can manage your Overcut account in plain language or convert an existing automation framework into Overcut artifacts, without you writing GraphQL or learning a new format.

The skills follow the open [Agent Skills spec](https://github.com/anthropics/skills), so any agent that supports `SKILL.md` can use them. They are published from the open-source [overcut-ai/overcut-skills](https://github.com/overcut-ai/overcut-skills) repository.

<Note>
  This section is about skills your coding agent runs. For the in-product Skills feature (adding `SKILL.md`-based skills to your Overcut agents), see the [Skills reference](/docs/reference/skills).
</Note>

## The skills

<CardGroup cols={2}>
  <Card title="Overcut API Skill" icon="plug" href="/docs/quick-starts/overcut-skills/overcut-api">
    Connect to the Overcut GraphQL API with a personal token to explore and manage your account: build workflows, agents, and orchestrations, monitor and analyze executions, and debug runs.
  </Card>

  <Card title="Convert to Overcut" icon="shuffle" href="/docs/quick-starts/overcut-skills/convert-to-overcut">
    Convert an existing agent or automation framework (Argo, LangGraph, CrewAI, n8n, GitHub Actions, and more) into Overcut-ready Skills, Agents, and Workflow definitions.
  </Card>
</CardGroup>

The **Overcut API Skill** (`overcut-api`) is the main one, and the place to start. The **Convert to Overcut** skill (`convert-to-overcut`) is for migrations, and hands off to the API skill when you are ready to import the result into a live project.

## Install

You add these skills the same way you add any skill to your agent. The exact steps and commands vary by agent, so check your agent's documentation. There are two common paths:

<Steps>
  <Step title="Install from the plugin marketplace" icon="download">
    If your agent supports plugin marketplaces, add the marketplace repository `overcut-ai/overcut-skills` and install the plugin you want: `overcut` for the API skill, `overcut-importer` for the converter.
  </Step>

  <Step title="Or copy the skill folder" icon="folder-tree">
    Otherwise, clone the [overcut-ai/overcut-skills](https://github.com/overcut-ai/overcut-skills) repository and copy the skill folder you want (under `plugins/<plugin>/skills/`, including its `references/`, `scripts/`, and `assets/`) into the directory your agent loads `SKILL.md` skills from.
  </Step>
</Steps>

For example, in Claude Code:

```sh theme={null}
# 1. Add this marketplace
/plugin marketplace add overcut-ai/overcut-skills

# 2. Install a plugin
/plugin install overcut@overcut-skills
/plugin install overcut-importer@overcut-skills
```

Once installed, your agent uses the skill automatically when your request matches it.

## Next

* [Overcut API Skill](/docs/quick-starts/overcut-skills/overcut-api): manage your account from your agent.
* [Convert to Overcut](/docs/quick-starts/overcut-skills/convert-to-overcut): migrate an existing framework into Overcut.
