Skip to content

Commit 07f0e1f

Browse files
edumanskyclaude
andcommitted
Expand coding agent skill install instructions for all platforms
Claude Code, Codex, Cursor — macOS/Linux/Windows. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0bc5e4d commit 07f0e1f

1 file changed

Lines changed: 30 additions & 3 deletions

File tree

README.md

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -243,15 +243,42 @@ prompt-tools completion bash > /etc/bash_completion.d/prompt-tools
243243
prompt-tools completion fish > ~/.config/fish/completions/prompt-tools.fish
244244
```
245245

246-
## Claude Code Integration
246+
## Coding Agent Skill
247247

248-
A Claude Code skill is included in `skill/SKILL.md`. To install:
248+
A skill file is included at `skill/SKILL.md` that teaches AI coding agents how to use the CLI. Install it for your agent of choice:
249249

250+
**Claude Code (macOS/Linux):**
250251
```bash
251252
mkdir -p ~/.claude/skills/prompt-tools
252-
cp skill/SKILL.md ~/.claude/skills/prompt-tools/SKILL.md
253+
curl -fsSL https://raw.githubusercontent.com/Cloverhound/prompt-tools-cli/main/skill/SKILL.md \
254+
-o ~/.claude/skills/prompt-tools/SKILL.md
253255
```
254256

257+
**Claude Code (Windows PowerShell):**
258+
```powershell
259+
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.claude\skills\prompt-tools"
260+
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Cloverhound/prompt-tools-cli/main/skill/SKILL.md" `
261+
-OutFile "$env:USERPROFILE\.claude\skills\prompt-tools\SKILL.md"
262+
```
263+
264+
**OpenAI Codex (macOS/Linux):**
265+
```bash
266+
mkdir -p ~/.agents/skills/prompt-tools
267+
curl -fsSL https://raw.githubusercontent.com/Cloverhound/prompt-tools-cli/main/skill/SKILL.md \
268+
-o ~/.agents/skills/prompt-tools/SKILL.md
269+
```
270+
271+
**Cursor (macOS/Linux):**
272+
```bash
273+
mkdir -p ~/.cursor/skills/prompt-tools
274+
curl -fsSL https://raw.githubusercontent.com/Cloverhound/prompt-tools-cli/main/skill/SKILL.md \
275+
-o ~/.cursor/skills/prompt-tools/SKILL.md
276+
```
277+
278+
If the `prompt-tools` binary isn't in your PATH, update the binary path inside the installed skill file.
279+
280+
For project-specific installation, place the skill file in your project directory instead of the user-level folder.
281+
255282
## Development
256283

257284
See [CLAUDE.md](CLAUDE.md) for project structure and conventions.

0 commit comments

Comments
 (0)