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

# Coding Agents

> Install Polpo guidance in supported coding-agent clients

The Polpo CLI can install the current `lumea-labs/polpo-skills` pack into coding-agent clients. These are developer-assistant skills, distinct from runtime skills assigned to agents in a Polpo project.

## Install

```bash theme={null}
npx @polpo-ai/cli install
```

The command authenticates through `polpo login` when needed, then delegates installation to the skills installer. Global scope is the default.

```bash theme={null}
# Install only for selected clients
polpo install --client claude-code,cursor

# Install in the current project instead of globally
polpo install --scope project

# Select clients interactively
polpo install -i

# Use a different project directory
polpo install --scope project --dir ./my-project
```

`--client` accepts a comma-separated list. Current client identifiers are:

| Client         | ID            |
| -------------- | ------------- |
| Claude Code    | `claude-code` |
| Cursor         | `cursor`      |
| Codex          | `codex`       |
| GitHub Copilot | `copilot`     |
| Windsurf       | `windsurf`    |
| Cline          | `cline`       |
| Trae           | `trae`        |
| Roo Code       | `roo-code`    |
| Qoder          | `qoder`       |
| OpenCode       | `opencode`    |

The contents of the installed pack are versioned in its repository. Re-run the command to pick up updates rather than relying on a fixed list of skill names in application documentation.

<Note>
  Installing coding-agent skills does not deploy anything to Polpo Cloud and does not add entries to `.polpo/skills/`. Use the project skill APIs for runtime agents.
</Note>
