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

# Tools & Skills

> Inspect observed tool and skill usage from the CLI.

Tools and skills use parallel command sets.

## Usage Reports

Show totals, usage share, top capabilities, and time series:

```bash theme={null}
dari activity tools \
  --from 2026-07-01T00:00:00Z \
  --to 2026-07-08T00:00:00Z

dari activity skills \
  --from 2026-07-01T00:00:00Z \
  --to 2026-07-08T00:00:00Z
```

Select capabilities for the returned time series with repeatable `--series-id` flags:

```bash theme={null}
dari activity tools \
  --from 2026-07-01T00:00:00Z \
  --to 2026-07-08T00:00:00Z \
  --series-id web_search \
  --series-id shell
```

## List Capabilities

```bash theme={null}
dari activity tools list \
  --from 2026-07-01T00:00:00Z \
  --to 2026-07-08T00:00:00Z \
  --search search \
  --sort-by uses \
  --limit 25

dari activity skills list \
  --from 2026-07-01T00:00:00Z \
  --to 2026-07-08T00:00:00Z
```

Sort fields are `name`, `uses`, and `latest`. Use `--sort-direction`, `--limit`, and `--offset` to control the result.

## Inspect One Capability

Copy a `capability_id` from the list response:

```bash theme={null}
dari activity tools get <capability_id> \
  --from 2026-07-01T00:00:00Z \
  --to 2026-07-08T00:00:00Z

dari activity skills get <capability_id> \
  --from 2026-07-01T00:00:00Z \
  --to 2026-07-08T00:00:00Z
```

The detail response includes usage, latest activity, identities, versions, sources, and a time series.
