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

# Agent Skills

> Install AI agent skills to bring Tusk workflows into Cursor, Claude Code, and other coding assistants

Agent Skills are portable instruction sets that teach AI coding assistants how to perform Tusk tasks — like analyzing API test deviations, querying recorded traffic, or debugging regressions without leaving your editor.

Skills work with 18+ AI agents including Cursor, Claude Code, GitHub Copilot, Cline, and many others.

## Installing skills

Install all Tusk skills:

```bash theme={null}
npx skills add Use-Tusk/tusk-skills
```

Install a specific skill:

```bash theme={null}
npx skills add Use-Tusk/tusk-skills --skill tusk-drift-analyze
```

Install to specific agents:

```bash theme={null}
npx skills add Use-Tusk/tusk-skills -a claude-code -a cursor
```

## Available skills

### Tusk Drift

<Info>
  These skills require Tusk Drift to be set up in your project. See the [Drift
  overview](/api-tests/overview) to get started, and [Tusk Drift
  Cloud](/api-tests/tusk-drift-cloud) to connect your service.
</Info>

<CardGroup cols={2}>
  <Card title="tusk-drift-analyze" icon="flask-vial" href="https://github.com/Use-Tusk/tusk-skills/blob/main/skills/tusk-drift-analyze/SKILL.md">
    Run the Drift CI/CD check locally — replays API tests, classifies deviations
    as intended, unintended, or unrelated, and optionally fixes regressions.
  </Card>

  <Card title="tusk-drift-query" icon="magnifying-glass-chart" href="https://github.com/Use-Tusk/tusk-skills/blob/main/skills/tusk-drift-query/SKILL.md">
    Search, analyze, and debug recorded API traffic using the Tusk Drift CLI
    query commands — covers spans, traces, aggregations, and schema exploration.
  </Card>
</CardGroup>

### Tusk Unit Tests

<Info>
  This skill requires Tusk unit test generation to be enabled on your repo. See
  [CLI & Agent Workflows](/automated-tests/cli-agent-workflows) for the
  underlying CLI primitives.
</Info>

<CardGroup cols={2}>
  <Card title="tusk-unit-tests" icon="vial" href="https://github.com/Use-Tusk/tusk-skills/blob/main/skills/tusk-unit-tests/SKILL.md">
    Discover, reason about, and selectively adopt Tusk-generated unit tests for
    the current branch. Classifies each scenario as fresh or stale against the
    local checkout, applies the ones worth keeping, and reports feedback back
    to Tusk.
  </Card>
</CardGroup>

<Tip>
  Browse the full skill catalog and source on
  [GitHub](https://github.com/Use-Tusk/tusk-skills). New skills are added as
  Tusk products evolve.
</Tip>

## How skills work

Each skill is a `SKILL.md` file containing structured instructions that agents load on demand. When you ask your agent to do something Tusk-related, it reads the skill to understand which CLI commands to run, how to interpret the output, and what workflows to follow.
