@@ -243,15 +243,42 @@ prompt-tools completion bash > /etc/bash_completion.d/prompt-tools
243243prompt-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
251252mkdir -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
257284See [ CLAUDE.md] ( CLAUDE.md ) for project structure and conventions.
0 commit comments