> ## Documentation Index
> Fetch the complete documentation index at: https://outlit-codex-platform-actions-create-update-cli.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent Skills

> Give coding agents better guidance for customer queries and Outlit SDK work

Agent skills teach coding agents how to work with Outlit. The `outlit` skill covers customer intelligence workflows. The optional `outlit-sdk` skill covers tracking and instrumentation work.

Skills are open source at [github.com/OutlitAI/outlit-agent-skills](https://github.com/OutlitAI/outlit-agent-skills).

Use skills when the agent runs local commands or needs workflow guidance. Use [MCP Integration](/ai-integrations/mcp) for remote MCP clients, and use [Pi Agents](/ai-integrations/pi) when you are packaging a Pi extension with Outlit tools, prompts, or custom skills.

## Install

Launch the interactive installer:

```bash theme={null}
outlit setup skills
```

This opens `skills add` against the Outlit skills repo and lets you choose:

* `outlit`
* `outlit-sdk`

You can also install directly with `skills`:

```bash theme={null}
npx -y skills add https://github.com/OutlitAI/outlit-agent-skills -g
```

For a targeted install, pass the agent and skill explicitly:

```bash theme={null}
npx -y skills add https://github.com/OutlitAI/outlit-agent-skills --skill outlit --agent claude-code --agent opencode -y -g
```

## Verify

```bash theme={null}
outlit doctor
```

Look for a per-agent check such as:

```text theme={null}
✓ Claude Code: Outlit skill installed
```

## Available Skills

| Skill          | What it teaches                                                                         |
| -------------- | --------------------------------------------------------------------------------------- |
| **outlit**     | Customer queries, timelines, search, facts, SQL, and when to use CLI vs MCP             |
| **outlit-sdk** | Tracking integration work: detection, consent, auth, billing, and event instrumentation |

## Recommended Setup

For coding agents you already use locally:

```bash theme={null}
outlit setup --yes
```

Popular agent aliases:

```bash theme={null}
outlit setup claude-code
outlit setup codex
outlit setup gemini
outlit setup droid
outlit setup opencode
outlit setup pi
outlit setup openclaw
```

For manual selection or optional `outlit-sdk` installation:

```bash theme={null}
outlit setup skills
```
