Skip to content

Commit 75acd9c

Browse files
committed
Improve Skill install instructions with specific instructions
1 parent 6656900 commit 75acd9c

2 files changed

Lines changed: 52 additions & 7 deletions

File tree

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
A command-line tool for Webex APIs — Calling, Contact Center, Admin, Devices, Meetings, and Messaging.
44

5+
See the [docs site](https://cloverhound.github.io/webex-cli/) for full API reference and guides.
6+
57
## Install
68

79
**macOS / Linux:**
@@ -132,10 +134,6 @@ webex config get client-id # View current value
132134

133135
Config is stored in `~/.webex-cli/config.json`.
134136

135-
## Documentation
136-
137-
See the [docs site](https://cloverhound.github.io/webex-cli/) for full API reference and guides.
138-
139137
## Claude Code Integration
140138

141139
A sample Claude Code skill is included in `skill/SKILL.md`. See the [docs](https://cloverhound.github.io/webex-cli/agent-skill/) for setup instructions.

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

Lines changed: 50 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,60 @@ The Webex CLI includes a [skill](https://agentskills.io) that enables AI coding
99

1010
1. Install the Webex CLI (see [Installation](/webex-cli/installation/))
1111
2. Login: `webex login`
12-
3. In a coding agent session, ask it to install the skill:
12+
3. Download the skill into the correct folder for your coding agent (you can also just paste these instructions into your coding agent):
1313

14+
### Claude Code
15+
16+
**macOS / Linux:**
17+
```bash
18+
mkdir -p ~/.claude/skills/webex-cli
19+
curl -fsSL https://raw.githubusercontent.com/Cloverhound/webex-cli/main/skill/SKILL.md \
20+
-o ~/.claude/skills/webex-cli/SKILL.md
21+
```
22+
23+
**Windows (PowerShell):**
24+
```powershell
25+
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.claude\skills\webex-cli"
26+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Cloverhound/webex-cli/main/skill/SKILL.md" `
27+
-OutFile "$env:USERPROFILE\.claude\skills\webex-cli\SKILL.md"
1428
```
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.
29+
30+
### OpenAI Codex
31+
32+
**macOS / Linux:**
33+
```bash
34+
mkdir -p ~/.agents/skills/webex-cli
35+
curl -fsSL https://raw.githubusercontent.com/Cloverhound/webex-cli/main/skill/SKILL.md \
36+
-o ~/.agents/skills/webex-cli/SKILL.md
37+
```
38+
39+
**Windows (PowerShell):**
40+
```powershell
41+
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.agents\skills\webex-cli"
42+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Cloverhound/webex-cli/main/skill/SKILL.md" `
43+
-OutFile "$env:USERPROFILE\.agents\skills\webex-cli\SKILL.md"
1744
```
1845

46+
### Cursor
47+
48+
**macOS / Linux:**
49+
```bash
50+
mkdir -p ~/.cursor/skills/webex-cli
51+
curl -fsSL https://raw.githubusercontent.com/Cloverhound/webex-cli/main/skill/SKILL.md \
52+
-o ~/.cursor/skills/webex-cli/SKILL.md
53+
```
54+
55+
**Windows (PowerShell):**
56+
```powershell
57+
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.cursor\skills\webex-cli"
58+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Cloverhound/webex-cli/main/skill/SKILL.md" `
59+
-OutFile "$env:USERPROFILE\.cursor\skills\webex-cli\SKILL.md"
60+
```
61+
62+
:::note
63+
These commands install the skill globally (user-level). You can also install per-project by placing the `webex-cli/SKILL.md` folder inside your project's `.claude/skills/`, `.agents/skills/`, or `.cursor/skills/` directory instead.
64+
:::
65+
1966
4. If the `webex` binary is not in your `$PATH`, ask your coding agent to update the binary path in the skill file.
2067

2168
## What the Skill Can Do

0 commit comments

Comments
 (0)