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

# Skills

# `fluffbuzz skills`

Inspect local skills and install/update skills from ClawHub.

Related:

* Skills system: [Skills](/tools/skills)
* Skills config: [Skills config](/tools/skills-config)
* ClawHub installs: [ClawHub](/tools/buzzhub)

## Commands

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fluffbuzz skills search "calendar"
fluffbuzz skills search --limit 20 --json
fluffbuzz skills install <slug>
fluffbuzz skills install <slug> --version <version>
fluffbuzz skills install <slug> --force
fluffbuzz skills update <slug>
fluffbuzz skills update --all
fluffbuzz skills list
fluffbuzz skills list --eligible
fluffbuzz skills list --json
fluffbuzz skills list --verbose
fluffbuzz skills info <name>
fluffbuzz skills info <name> --json
fluffbuzz skills check
fluffbuzz skills check --json
```

`search`/`install`/`update` use ClawHub directly and install into the active
workspace `skills/` directory. `list`/`info`/`check` still inspect the local
skills visible to the current workspace and config.

This CLI `install` command downloads skill folders from ClawHub. Gateway-backed
skill dependency installs triggered from onboarding or Skills settings use the
separate `skills.install` request path instead.

Notes:

* `search [query...]` accepts an optional query; omit it to browse the default
  ClawHub search feed.
* `search --limit <n>` caps returned results.
* `install --force` overwrites an existing workspace skill folder for the same
  slug.
* `update --all` only updates tracked ClawHub installs in the active workspace.
* `list` is the default action when no subcommand is provided.
* `list`, `info`, and `check` write their rendered output to stdout. With
  `--json`, that means the machine-readable payload stays on stdout for pipes
  and scripts.
