A command-line tool for the Five9 Configuration Web Services (SOAP) API.
macOS / Linux:
curl -fsSL https://raw.githubusercontent.com/Cloverhound/five9-cli/main/install.sh | shWindows (PowerShell):
irm https://raw.githubusercontent.com/Cloverhound/five9-cli/main/install.ps1 | iexOr download from Releases.
five9 update# Login (stores credentials in OS keyring)
five9 login
# List resources
five9 skills list
five9 campaigns list
five9 users list
five9 agent-groups list
five9 dispositions list
# Get details
five9 skills get --skill-name "My Skill"
five9 users get --user-name "jdoe@example.com"
# Run a report
five9 reports run-and-wait --folder-name "My Reports" --report-name "Call Log"
# Different output formats
five9 skills list --output table
five9 campaigns list --output csv > campaigns.csv21 command groups covering 181 SOAP methods:
| Command | Description |
|---|---|
agent-groups |
Manage agent groups |
call-variables |
Manage call variables and variable groups |
campaign-profiles |
Manage campaign profiles |
campaigns |
Manage campaigns (inbound, outbound, autodial) |
contacts |
Manage contacts and contact fields |
dialing-rules |
Manage dialing rules |
dispositions |
Manage dispositions |
domain-limits |
View domain limits |
ivr-scripts |
Manage IVR scripts |
lists |
Manage contact lists |
locales |
Manage locales and languages |
prompts |
Manage audio prompts |
reason-codes |
Manage reason codes |
reports |
Run and retrieve reports |
session |
Manage API sessions |
skills |
Manage skills |
speed-dial |
Manage speed dial numbers |
user-profiles |
Manage user profiles |
users |
Manage users |
vcc |
VCC configuration |
web-connectors |
Manage web connectors |
- HTTP Basic auth over SOAP —
five9 loginprompts for username and password - OS keyring storage — credentials stored securely in macOS Keychain / Linux keyring / Windows Credential Manager
- Multi-user — log in with multiple Five9 accounts and switch between them
- Environment variables — set
FIVE9_USERNAMEandFIVE9_PASSWORDto skip the keyring
five9 login # Login (prompts for credentials)
five9 logout # Remove stored credentials
five9 auth status # Show current user
five9 auth list # List all authenticated users
five9 auth switch <username> # Switch default userCredential resolution order: --username/--password flags > FIVE9_USERNAME/FIVE9_PASSWORD env vars > OS keyring.
Control output with --output:
| Format | Description |
|---|---|
json |
Pretty-printed JSON (default) |
table |
ASCII table with auto-detected columns |
csv |
CSV with headers |
raw |
Raw API response |
| Flag | Description |
|---|---|
--username <user> |
Override stored username |
--password <pass> |
Override stored password |
--user <name> |
Use a specific authenticated user |
--endpoint <url> |
Override Five9 API endpoint |
--output json|table|csv|raw |
Output format (default: json) |
--debug |
Show SOAP request/response details |
--dry-run |
Print write requests without executing them |
The Five9 CLI includes a skill that enables AI coding agents to query and manage your Five9 environment. It works with any agent that supports the skills standard — Claude Code, OpenAI Codex, Cursor, and others.
- Install the Five9 CLI (see Install)
- Login:
five9 login - Download the skill into the correct folder for your coding agent:
macOS / Linux:
mkdir -p ~/.claude/skills/five9-cli
curl -fsSL https://raw.githubusercontent.com/Cloverhound/five9-cli/main/skill/SKILL.md \
-o ~/.claude/skills/five9-cli/SKILL.mdWindows (PowerShell):
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.claude\skills\five9-cli"
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Cloverhound/five9-cli/main/skill/SKILL.md" `
-OutFile "$env:USERPROFILE\.claude\skills\five9-cli\SKILL.md"macOS / Linux:
mkdir -p ~/.agents/skills/five9-cli
curl -fsSL https://raw.githubusercontent.com/Cloverhound/five9-cli/main/skill/SKILL.md \
-o ~/.agents/skills/five9-cli/SKILL.mdWindows (PowerShell):
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.agents\skills\five9-cli"
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Cloverhound/five9-cli/main/skill/SKILL.md" `
-OutFile "$env:USERPROFILE\.agents\skills\five9-cli\SKILL.md"macOS / Linux:
mkdir -p ~/.cursor/skills/five9-cli
curl -fsSL https://raw.githubusercontent.com/Cloverhound/five9-cli/main/skill/SKILL.md \
-o ~/.cursor/skills/five9-cli/SKILL.mdWindows (PowerShell):
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.cursor\skills\five9-cli"
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Cloverhound/five9-cli/main/skill/SKILL.md" `
-OutFile "$env:USERPROFILE\.cursor\skills\five9-cli\SKILL.md"These commands install the skill globally (user-level). You can also install per-project by placing the
five9-cli/SKILL.mdfolder inside your project's.claude/skills/,.agents/skills/, or.cursor/skills/directory instead.
- If the
five9binary is not in your$PATH, ask your coding agent to update the binary path in the skill file.
/five9-cli list all skills and show which campaigns they're assigned to
/five9-cli how many users are in each agent group?
/five9-cli check auth status and list all dispositions
See AGENTS.md for project structure and development workflow.
Commands in cmd/ are auto-generated from the API spec — do not edit by hand. See the codegen pipeline in AGENTS.md for details.
MIT