Skip to main content
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

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

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.
SkillDescriptionInstall
talkvalue-sharedShared 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-personManage 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-eventManage 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-channelManage 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-companyManage 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-analysisRead-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-importCSV 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-tagManage 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.
SkillDescriptionInstall
recipe-new-registrantsPull 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-importFull 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-analysisChannel 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 for four documented patterns.