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

# Install Skills

> Install or refresh Bounty skills for supported AI coding agents.

The recommended setup installs skills and starts browser authentication:

```bash theme={null}
npx -y bounty-cli@latest init --all --browser
```

Restart your AI coding agent after setup completes.

## Install Skills Only

If the CLI is already installed and authenticated:

```bash theme={null}
bounty-cli setup skills
```

Install to every detected supported agent:

```bash theme={null}
bounty-cli setup skills --all
```

Install to one agent:

```bash theme={null}
bounty-cli setup skills --agent codex
```

## Supported Agents

| Agent       | Global skill directory      |
| ----------- | --------------------------- |
| Codex       | `~/.codex/skills`           |
| Claude Code | `~/.claude/skills`          |
| Cursor      | `~/.cursor/skills`          |
| Windsurf    | `~/.windsurf/skills`        |
| OpenCode    | `~/.config/opencode/skills` |
| Gemini CLI  | `~/.gemini/skills`          |

## Verify

Ask your agent to run:

```bash theme={null}
bounty-cli whoami
bounty-cli config get
```

If the CLI is not authenticated, run:

```bash theme={null}
bounty-cli login
```
