by ctoth
Hook-based audio feedback for Claude Code and OpenAI Codex CLI
# Add to your Claude Code skills
git clone https://github.com/ctoth/claudioGuides for using cli tools skills like claudio.
Last scanned: 6/3/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-06-03T08:55:37.574Z",
"npmAuditRan": true,
"pipAuditRan": true
}No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
Claudio is a hook-driven audio layer for coding agents. It listens to hook events from Claude Code and OpenAI Codex CLI, maps the event to a contextual sound, and plays that sound without making the agent wait for playback.
It can play different sounds for tool starts, tool successes, tool failures,
prompts, notifications, completions, compaction, session starts, and subagent
events. Bash commands are parsed, so git commit, npm test, and go build
can each have their own sounds instead of sharing one generic shell sound.
Full documentation starts at docs/index.md.
go install claudio.click/cmd/claudio@latest
Install hooks for Claude Code:
claudio install --agent claude --scope user
Install hooks for Codex:
claudio install --agent codex --scope user
After Codex hook installation, run /hooks in Codex and trust the Claudio
hook. Use --scope project instead of --scope user when you want hooks only
for the current repository.
claudio status
claudio volume 0.4
claudio mute
claudio unmute
claudio uninstall --agent claude --scope user
Optional agent command artifacts:
claudio install-commands --agent claude # /claudio in Claude Code
claudio install-commands --agent codex # $claudio skill in Codex
claudio install-commands --agent antigravity # Antigravity skill and CLI command
Claudio ships platform defaults and supports three custom soundpack forms:
loading/, success/, error/, interactive/,
completion/, and system/claudio soundpack addUseful commands:
claudio soundpack list
claudio soundpack init my-pack --from-platform
claudio soundpack validate ./my-pack.json
claudio soundpack install ./my-pack.json --default
claudio soundpack add gh:owner/repo --name my-pack --default
claudio soundpack update --all
Supported audio formats are WAV, MP3, and AIFF. See docs/soundpacks.md for layout, fallback chains, JSON mappings, validation, and git-backed soundpacks.
Sound tracking is enabled by default. Claudio records resolved sounds and missing fallback candidates in a SQLite database under the XDG cache directory, then exposes that data through:
claudio analyze usage --show-summary --show-chains
claudio analyze missing --preset last-week
Use these reports to decide which sounds your custom pack should add next.
go build ./cmd/claudio
go test ./...