talkvalue is a CLI for the TalkValue platform — manage contacts, events, channels, companies, analysis, and data imports from the command line. Built for both humans and AI agents with structured JSON output.
npm install -g @talkvalue/cli
talkvalue auth login
talkvalue path person list --json# Interactive (OAuth device flow)
talkvalue auth login
# CI / scripting
export TALKVALUE_TOKEN=<bearer-token>All data commands require authentication. The CLI supports multiple profiles — use --profile <name> to switch between organizations.
This repo includes agent skills for AI assistants. Each skill is a SKILL.md file with structured CLI reference documentation.
# Install all skills
npx skills add https://github.com/talkvalue/cli
# Install specific skills
npx skills add https://github.com/talkvalue/cli/tree/main/skills/talkvalue-person
npx skills add https://github.com/talkvalue/cli/tree/main/skills/talkvalue-event| Skill | Description |
|---|---|
| talkvalue-shared | Auth, global flags, output format, environment variables, exit codes |
| Skill | Description |
|---|---|
| talkvalue-person | Manage contacts: list, get, update, delete, merge, export, activity |
| talkvalue-event | Manage events: CRUD, event people, export |
| talkvalue-channel | Manage channels: CRUD, channel people, export |
| talkvalue-company | Manage companies: list, get, update, company people, export |
| talkvalue-analysis | Analytics: channel attribution, audience overlap, event insights and trends |
| talkvalue-import | CSV import: analyze, create jobs, monitor, export failures |
| Skill | Description |
|---|---|
| recipe-new-registrants | Find this month's event registrants |
| recipe-csv-import | Full CSV import workflow: analyze → create → monitor → export failures |
| recipe-channel-analysis | Channel attribution + audience overlap analysis |
All commands produce structured JSON when piped:
{ "data": { ... } } // single resource
{ "data": [...], "pagination": {...} } // paginated listUse --format json or --json to force JSON output in a terminal.
| Code | Meaning |
|---|---|
0 |
Success |
1 |
General error |
2 |
Usage error |
3 |
Auth error |
4 |
Not found |
5 |
Forbidden |