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

# AI agent skills

> Install the 11 bundled TalkValue CLI skills (8 command-group wrappers and 3 workflow recipes) into any AI coding agent.

The TalkValue CLI ships 11 `SKILL.md` files: one per command group and one per multi-step workflow recipe. Pair them with any AI coding assistant that supports skills and the agent can navigate the entire CLI surface without reading every doc page first.

## Install everything

```bash theme={null}
npx skills add https://github.com/talkvalue/cli
```

One command pulls every skill below into your agent's skill directory. Re-run any time to pick up updates.

## Install a single skill

```bash theme={null}
npx skills add https://github.com/talkvalue/cli/tree/main/skills/<skill-name>
```

Replace `<skill-name>` with the directory of the skill you want, for example, `talkvalue-person` or `recipe-csv-import`.

## Namespaced skills

One skill per CLI command group, plus a shared reference. Read `talkvalue-shared` first. Every other skill expects it.

| Skill                | Description                                                                                                             | Install                                                                               |
| -------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| `talkvalue-shared`   | Shared reference: authentication, global flags, output formats (json/table/csv), environment variables, and exit codes. | `npx skills add https://github.com/talkvalue/cli/tree/main/skills/talkvalue-shared`   |
| `talkvalue-person`   | Manage contacts: list, get, update, delete, merge/unmerge, export, view per-person activity.                            | `npx skills add https://github.com/talkvalue/cli/tree/main/skills/talkvalue-person`   |
| `talkvalue-event`    | Manage events and event participants: list, get, create, update, delete events, plus add/list/export attendees.         | `npx skills add https://github.com/talkvalue/cli/tree/main/skills/talkvalue-event`    |
| `talkvalue-channel`  | Manage marketing channels and channel members: list, get, create, update, delete, plus add/list/export members.         | `npx skills add https://github.com/talkvalue/cli/tree/main/skills/talkvalue-channel`  |
| `talkvalue-company`  | Manage companies and their contacts: list/search, get, update display name, list company contacts, export.              | `npx skills add https://github.com/talkvalue/cli/tree/main/skills/talkvalue-company`  |
| `talkvalue-analysis` | Read-only analytics: channel-event attribution, channel audience overlap, event insights, registration trends.          | `npx skills add https://github.com/talkvalue/cli/tree/main/skills/talkvalue-analysis` |
| `talkvalue-import`   | CSV import workflow: analyze, create jobs (UPDATE/SKIP modes), monitor status, export failed rows.                      | `npx skills add https://github.com/talkvalue/cli/tree/main/skills/talkvalue-import`   |
| `talkvalue-tag`      | Manage tag labels and attach them to channels or events so analyses can be filtered with `--tag-id`.                    | `npx skills add https://github.com/talkvalue/cli/tree/main/skills/talkvalue-tag`      |

## Recipes

End-to-end workflow skills that compose the namespaced skills above. Each one matches a [Recipes](/cli/recipes/index) page in the docs.

| Skill                     | Description                                                                                                                   | Install                                                                                    |
| ------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ |
| `recipe-new-registrants`  | Pull this month's event registrants and export them for follow-up. Uses `talkvalue-event` + `talkvalue-person`.               | `npx skills add https://github.com/talkvalue/cli/tree/main/skills/recipe-new-registrants`  |
| `recipe-csv-import`       | Full CSV import workflow: analyze → create → poll status → export failed rows. Uses `talkvalue-import` + `talkvalue-channel`. | `npx skills add https://github.com/talkvalue/cli/tree/main/skills/recipe-csv-import`       |
| `recipe-channel-analysis` | Channel attribution and audience overlap in one report. Uses `talkvalue-analysis` + `talkvalue-channel` + `talkvalue-event`.  | `npx skills add https://github.com/talkvalue/cli/tree/main/skills/recipe-channel-analysis` |

## Compose your own

The recipes are deliberately small: three to five CLI invocations stitched with `jq`. Build new ones by following the same shape: discover IDs, read state, compose with `jq`, write. See the [recipes index](/cli/recipes/index) for four documented patterns.

## Related

* [AI agents overview](/cli/agents/index). Why the CLI is agent-friendly.
* [Recipes](/cli/recipes/index). The workflow recipes packaged as both skills and doc pages.
* [GitHub: talkvalue/cli](https://github.com/talkvalue/cli). Source for every `SKILL.md` listed above.
* [llms.txt](https://docs.trytalkvalue.com/llms.txt). Flat index of every docs page.
