Skip to content

Commit 13d61f6

Browse files
committed
Improved Agent Skill documentation
1 parent 622c171 commit 13d61f6

5 files changed

Lines changed: 58 additions & 56 deletions

File tree

site/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default defineConfig({
2424
{ label: 'Messaging Commands', slug: 'messaging' },
2525
]},
2626
{ label: 'Integrations', items: [
27-
{ label: 'Claude Code Skill', slug: 'claude-skill' },
27+
{ label: 'Coding Agent Skill', slug: 'agent-skill' },
2828
]},
2929
],
3030
}),
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
title: Coding Agent Skill
3+
description: Use the Webex CLI with AI coding agents.
4+
---
5+
6+
The Webex CLI includes a [skill](https://agentskills.io) that enables AI coding agents to query and manage your Webex 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.
7+
8+
## Setup
9+
10+
1. Install the Webex CLI (see [Installation](/webex-cli/installation/))
11+
2. Login: `webex login`
12+
3. In a coding agent session, ask it to install the skill:
13+
14+
```
15+
Fetch https://raw.githubusercontent.com/Cloverhound/webex-cli/main/skill/SKILL.md
16+
and save it as a "webex-cli" skill in your global skills folder.
17+
```
18+
19+
4. If the `webex` binary is not in your `$PATH`, ask your coding agent to update the binary path in the skill file.
20+
21+
## What the Skill Can Do
22+
23+
Once configured, you can ask your coding agent to:
24+
25+
- **List resources**: "List all CC sites", "Show me the call queues"
26+
- **Inspect configuration**: "What teams are on the Cloverhound WxCC site?"
27+
- **Debug issues**: "Why can't agents log in?", "Check the business hours schedule"
28+
- **Analyze the environment**: "Give me an overview of the contact center setup"
29+
- **Run commands**: "Get the details for entry point X"
30+
31+
## Example Prompts
32+
33+
```
34+
/webex-cli list all CC entry points and show which ones are chat vs voice
35+
36+
/webex-cli how many agents are assigned to each team?
37+
38+
/webex-cli check auth status and list sites
39+
```
40+
41+
## Customization
42+
43+
The skill can be customized — just ask your coding agent to modify it. For example:
44+
45+
- "Add our site names and team structures to the webex-cli skill"
46+
- "Update the skill to only use read-only commands"
47+
- "Add a workflow example for checking agent availability"
48+
49+
## Skills Documentation
50+
51+
- [Agent Skills standard](https://agentskills.io)
52+
- [Claude Code skills](https://code.claude.com/docs/en/skills)
53+
- [OpenAI Codex skills](https://developers.openai.com/codex/skills/)
54+
- [Cursor skills](https://cursor.com/docs/context/skills)

site/src/content/docs/claude-skill.mdx

Lines changed: 0 additions & 52 deletions
This file was deleted.

site/src/content/docs/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import { Card, CardGrid } from '@astrojs/starlight/components';
3838
<Card title="OAuth Authentication" icon="star">
3939
Browser-based OAuth login with tokens stored securely in your OS keyring. Multi-user support.
4040
</Card>
41-
<Card title="Claude Code Integration" icon="puzzle">
42-
Use the included Claude Code skill to let AI agents query and manage your Webex environment.
41+
<Card title="Coding Agent Skill" icon="puzzle">
42+
Use the included skill to let Claude Code, Codex, Cursor, or any coding agent query and manage your Webex environment.
4343
</Card>
4444
</CardGrid>

site/src/content/docs/installation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ Requires Go 1.23+.
4545
## Verify Installation
4646

4747
```bash
48-
webex --version
48+
webex version
4949
```

0 commit comments

Comments
 (0)