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
Install a single skill
<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. Readtalkvalue-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 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 withjq. Build new ones by following the same shape: discover IDs, read state, compose with jq, write. See the recipes index for four documented patterns.
Related
- AI agents overview. Why the CLI is agent-friendly.
- Recipes. The workflow recipes packaged as both skills and doc pages.
- GitHub: talkvalue/cli. Source for every
SKILL.mdlisted above. - llms.txt. Flat index of every docs page.
