{"id":50367896,"url":"https://github.com/elizabethsiegle/claudecode-curry","last_synced_at":"2026-05-30T05:02:39.783Z","repository":{"id":352094086,"uuid":"1212973690","full_name":"elizabethsiegle/claudecode-curry","owner":"elizabethsiegle","description":"Play Steph Curry audio, show different alert notification text, and open a Steph Curry YouTube video depending on different Claude Code events.","archived":false,"fork":false,"pushed_at":"2026-04-17T20:03:43.000Z","size":1407,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-17T22:14:47.498Z","etag":null,"topics":["claude","claude-code","claude-code-hooks","claude-hooks","claudecode","entire","entirehq"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elizabethsiegle.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-16T23:21:47.000Z","updated_at":"2026-04-17T20:10:07.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/elizabethsiegle/claudecode-curry","commit_stats":null,"previous_names":["elizabethsiegle/claudecode-curry"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/elizabethsiegle/claudecode-curry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elizabethsiegle%2Fclaudecode-curry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elizabethsiegle%2Fclaudecode-curry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elizabethsiegle%2Fclaudecode-curry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elizabethsiegle%2Fclaudecode-curry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elizabethsiegle","download_url":"https://codeload.github.com/elizabethsiegle/claudecode-curry/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elizabethsiegle%2Fclaudecode-curry/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33680529,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-30T02:00:06.278Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["claude","claude-code","claude-code-hooks","claude-hooks","claudecode","entire","entirehq"],"created_at":"2026-05-30T05:02:37.928Z","updated_at":"2026-05-30T05:02:39.773Z","avatar_url":"https://github.com/elizabethsiegle.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# desktop-curry\n\nSteph Curry narrates your Claude Code sessions. Every prompt, tool call, permission prompt, and session end fires a macOS notification with a random Curry-inspired phrase and sound. On the big moments, a YouTube clip opens too. Works whenever Claude Code is running — glance at the notification center to know what he's doing.\n\n## Prerequisites\n\n- macOS (notifications via `osascript`, audio via `afplay`)\n- Python 3.10+\n- Claude Code\n\n## Install\n\n```bash\ngit clone https://github.com/elizabethsiegle/claudecode-curry\ncd claudecode-curry\npython3 install.py\n```\n\nTo scope it to a single project instead of all Claude Code sessions:\n\n```bash\npython3 install.py --project\n```\n\n## How it works\n\n`install.py` writes hooks into `~/.claude/settings.json`. Each hook calls `curry_alerts.py` with the event name. The script reads tool context from stdin, picks a random message, plays a sound with `afplay`, fires a notification with `osascript`, and optionally opens a YouTube URL.\n\nEvery invocation forks a detached background process and exits immediately — Claude Code never waits.\n\n## Session Events\n\n```\n      prompt               tool use            permission\n   ~~~~~~~~~~~           ~~~~~~~~~~~          ~~~~~~~~~~~~~~\n   ~ 🏀 Chef ~           ~ 🎯 Pull ~          ~ ⏱️ TIMEOUT ~\n   ~ Curry  ~           ~ Up from ~          ~ Ref needs  ~\n   ~ cooking ~           ~  logo   ~          ~ a word  🛑 ~\n   ~~~~~~~~~~~           ~~~~~~~~~~~          ~~~~~~~~~~~~~~\n```\n\n| Event | Title | Default probability |\n|---|---|---|\n| `UserPromptSubmit` | 🏀 Chef Curry | 100% |\n| `PreToolUse` (Write/Edit) | 🎯 Pulling Up | 100% |\n| `PreToolUse` (Bash) | 💨 Fast Break | 100% |\n| `PreToolUse` (Read/Glob/Grep) | 📼 Scouting | 40% |\n| `PreToolUse` (Web) | 🔭 Googling | 50% |\n| `PreToolUse` (other tools) | 🏀 Tool Time | 30% |\n| `Notification` (permission) | ⏱️ TIMEOUT | 100% — opens Night Night clip |\n| `Notification` (general) | 📣 Hey | 100% |\n| `Stop` | 🙏 Night Night | 100% — opens Bang Bang clip |\n\n## Customize\n\nEdit `curry.config.json`. Every field is optional except `messages`:\n\n```json\n\"Stop\": {\n  \"enabled\": true,\n  \"title\": \"🙏 Night Night\",\n  \"messages\": [\"Night Night. 🙏\", \"Final buzzer. That's a wrap.\"],\n  \"sound\": \"sounds/buzzer.mp3\",\n  \"video_url\": \"https://youtu.be/zrmivtWEAeo?t=3\",\n  \"probability\": 1.0\n}\n```\n\n| Field | Default | Description |\n|---|---|---|\n| `enabled` | `true` | `false` silences the event entirely |\n| `messages` | required | pool of strings — one picked at random each time |\n| `sound` | `null` | `.mp3` or `.aiff` — relative paths resolve from this directory |\n| `video_url` | `null` | URL opened in your default browser |\n| `probability` | `1.0` | `0.0–1.0` chance the alert fires at all |\n\nDrop custom audio into `sounds/` and reference it as `\"sounds/filename.mp3\"`.\nSystem sounds work too: `\"/System/Library/Sounds/Hero.aiff\"`.\n\nMessages support `{tool}` and `{message}` placeholders, substituted at runtime.\n\n## Uninstall\n\n```bash\npython3 install.py --uninstall\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felizabethsiegle%2Fclaudecode-curry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felizabethsiegle%2Fclaudecode-curry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felizabethsiegle%2Fclaudecode-curry/lists"}