# goon install guide Use the section for your coding agent and run the commands exactly as shown. ## Codex CLI Installs a Codex skill named `goon`. ```bash mkdir -p "$HOME/.agents/skills/goon/scripts" "$HOME/.agents/skills/goon/assets" curl -fsSL https://goon-4mj.pages.dev/files/codex-goon-SKILL.md -o "$HOME/.agents/skills/goon/SKILL.md" curl -fsSL https://goon-4mj.pages.dev/files/goon-play.sh -o "$HOME/.agents/skills/goon/scripts/goon-play.sh" curl -fsSL https://goon-4mj.pages.dev/files/goon.wav -o "$HOME/.agents/skills/goon/assets/goon.wav" chmod 644 "$HOME/.agents/skills/goon/SKILL.md" "$HOME/.agents/skills/goon/assets/goon.wav" chmod 755 "$HOME/.agents/skills/goon/scripts/goon-play.sh" ``` After installing, restart Codex. Use the skill with `/goon`, `$goon`, `/skills`, or by asking `run goon`. ## Claude Code Installs a Claude Code slash command named `/goon`. ```bash mkdir -p "$HOME/.claude/commands" "$HOME/.claude/assets" curl -fsSL https://goon-4mj.pages.dev/files/claude-goon.md -o "$HOME/.claude/commands/goon.md" curl -fsSL https://goon-4mj.pages.dev/files/goon-play.sh -o "$HOME/.claude/assets/goon-play.sh" curl -fsSL https://goon-4mj.pages.dev/files/goon.wav -o "$HOME/.claude/assets/goon.wav" chmod 644 "$HOME/.claude/commands/goon.md" "$HOME/.claude/assets/goon.wav" chmod 755 "$HOME/.claude/assets/goon-play.sh" ``` After installing, restart Claude Code if `/goon` does not appear immediately, then type `/goon`. ## Pi Coding Agent Installs a Pi Coding Agent extension named `/goon`. ```bash mkdir -p "$HOME/.pi/agent/extensions" "$HOME/.pi/agent/assets" curl -fsSL https://goon-4mj.pages.dev/files/goon.ts -o "$HOME/.pi/agent/extensions/goon.ts" curl -fsSL https://goon-4mj.pages.dev/files/goon.wav -o "$HOME/.pi/agent/assets/goon.wav" chmod 644 "$HOME/.pi/agent/extensions/goon.ts" "$HOME/.pi/agent/assets/goon.wav" ``` After installing, run `/reload` if Pi is already open, then `/goon`.