Skip to content

Commit 028ff57

Browse files
edumanskyclaude
andcommitted
Add coding agent skill setup instructions to README
Documents how to install the Five9 CLI skill for Claude Code, OpenAI Codex, and Cursor with platform-specific commands for macOS/Linux and Windows. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent cf023dd commit 028ff57

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

README.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,78 @@ Control output with `--output`:
109109
| `--debug` | Show SOAP request/response details |
110110
| `--dry-run` | Print write requests without executing them |
111111

112+
## Coding Agent Skill
113+
114+
The Five9 CLI includes a [skill](https://agentskills.io) that enables AI coding agents to query and manage your Five9 environment. It works with any agent that supports the skills standard — [Claude Code](https://claude.com/claude-code), [OpenAI Codex](https://openai.com/codex/), [Cursor](https://cursor.com), and others.
115+
116+
### Setup
117+
118+
1. Install the Five9 CLI (see [Install](#install))
119+
2. Login: `five9 login`
120+
3. Download the skill into the correct folder for your coding agent:
121+
122+
#### Claude Code
123+
124+
**macOS / Linux:**
125+
```bash
126+
mkdir -p ~/.claude/skills/five9-cli
127+
curl -fsSL https://raw.githubusercontent.com/Cloverhound/five9-cli/main/skill/SKILL.md \
128+
-o ~/.claude/skills/five9-cli/SKILL.md
129+
```
130+
131+
**Windows (PowerShell):**
132+
```powershell
133+
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.claude\skills\five9-cli"
134+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Cloverhound/five9-cli/main/skill/SKILL.md" `
135+
-OutFile "$env:USERPROFILE\.claude\skills\five9-cli\SKILL.md"
136+
```
137+
138+
#### OpenAI Codex
139+
140+
**macOS / Linux:**
141+
```bash
142+
mkdir -p ~/.agents/skills/five9-cli
143+
curl -fsSL https://raw.githubusercontent.com/Cloverhound/five9-cli/main/skill/SKILL.md \
144+
-o ~/.agents/skills/five9-cli/SKILL.md
145+
```
146+
147+
**Windows (PowerShell):**
148+
```powershell
149+
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.agents\skills\five9-cli"
150+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Cloverhound/five9-cli/main/skill/SKILL.md" `
151+
-OutFile "$env:USERPROFILE\.agents\skills\five9-cli\SKILL.md"
152+
```
153+
154+
#### Cursor
155+
156+
**macOS / Linux:**
157+
```bash
158+
mkdir -p ~/.cursor/skills/five9-cli
159+
curl -fsSL https://raw.githubusercontent.com/Cloverhound/five9-cli/main/skill/SKILL.md \
160+
-o ~/.cursor/skills/five9-cli/SKILL.md
161+
```
162+
163+
**Windows (PowerShell):**
164+
```powershell
165+
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.cursor\skills\five9-cli"
166+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Cloverhound/five9-cli/main/skill/SKILL.md" `
167+
-OutFile "$env:USERPROFILE\.cursor\skills\five9-cli\SKILL.md"
168+
```
169+
170+
> These commands install the skill globally (user-level). You can also install per-project by placing the `five9-cli/SKILL.md` folder inside your project's `.claude/skills/`, `.agents/skills/`, or `.cursor/skills/` directory instead.
171+
172+
4. If the `five9` binary is not in your `$PATH`, ask your coding agent to update the binary path in the skill file.
173+
174+
### Example Prompts
175+
176+
```
177+
/five9-cli list all skills and show which campaigns they're assigned to
178+
179+
/five9-cli how many users are in each agent group?
180+
181+
/five9-cli check auth status and list all dispositions
182+
```
183+
112184
## Development
113185

114186
See [AGENTS.md](AGENTS.md) for project structure and development workflow.

0 commit comments

Comments
 (0)