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

# masterskills kit

> Create and manage kits — named bundles of skills.

Kits bundle skills under one `@org/slug` name so the team installs a whole set with a single [`add`](/cli/add). Concepts and rules: [Kits](/concepts/kits).

## `kit list`

```bash theme={"dark"}
masterskills kit list [--json]
```

Kits across your organizations — name, display name, visibility, skill count.

## `kit info`

```bash theme={"dark"}
masterskills kit info @acme/ai-team [--json]
```

One kit and the skills inside it. The skill list is entitlement-filtered — it shows exactly what `add` would install for you.

## `kit create`

```bash theme={"dark"}
masterskills kit create ai-team --org acme \
  --name "AI team baseline" \
  --desc "What every agent at Acme should know" \
  --skills @acme/api-conventions,@acme/review-checklist
```

| Option                 | Effect                                                     |
| ---------------------- | ---------------------------------------------------------- |
| `--org <org>`          | Target namespace; defaults to this device's organization   |
| `--name <name>`        | Display name (defaults to the slug)                        |
| `--desc <description>` | Description                                                |
| `--skills <names>`     | Comma-separated `@org/slug` list — a kit holds 1–50 skills |
| `--public`             | Make the kit public; default private                       |
| `--json`               | Machine-readable output                                    |

Fails with `slug_taken` if the name already belongs to a skill or kit in that namespace, and with `unknown_skills` if a listed skill doesn't exist or isn't visible to you.

## `kit add-skill` / `kit remove-skill`

```bash theme={"dark"}
masterskills kit add-skill @acme/ai-team @acme/booking-flow-rules
masterskills kit remove-skill @acme/ai-team @acme/legacy-deploy
```

Curate an existing kit. Any active member can do this — from the CLI or the panel. Removing a skill from a kit does nothing to the skill itself.

## `kit delete`

```bash theme={"dark"}
masterskills kit delete @acme/ai-team [-y]
```

Archives the kit. Requires admin or owner; the skills inside are untouched. `-y` skips the confirmation prompt.
