You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>
Copy file name to clipboardExpand all lines: README.md
+72Lines changed: 72 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,6 +109,78 @@ Control output with `--output`:
109
109
|`--debug`| Show SOAP request/response details |
110
110
|`--dry-run`| Print write requests without executing them |
111
111
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:
> 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
+
112
184
## Development
113
185
114
186
See [AGENTS.md](AGENTS.md) for project structure and development workflow.
0 commit comments