{"id":45628380,"url":"https://github.com/educlopez/codevator","last_synced_at":"2026-04-01T18:46:59.233Z","repository":{"id":340108915,"uuid":"1162023494","full_name":"educlopez/codevator","owner":"educlopez","description":"Background sounds that play while Claude Code works and stop when it needs your attention — so the silence doesn't drive you to a “that's what she said” moment.","archived":false,"fork":false,"pushed_at":"2026-03-14T16:29:26.000Z","size":102257,"stargazers_count":44,"open_issues_count":1,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-15T02:58:35.479Z","etag":null,"topics":["ai","ai-agents","claude","claude-code","lofi","music","sound"],"latest_commit_sha":null,"homepage":"https://codevator.dev","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/educlopez.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-02-19T19:36:24.000Z","updated_at":"2026-03-14T16:29:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/educlopez/codevator","commit_stats":null,"previous_names":["educlopez/codevator"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/educlopez/codevator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/educlopez%2Fcodevator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/educlopez%2Fcodevator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/educlopez%2Fcodevator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/educlopez%2Fcodevator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/educlopez","download_url":"https://codeload.github.com/educlopez/codevator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/educlopez%2Fcodevator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31290947,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["ai","ai-agents","claude","claude-code","lofi","music","sound"],"created_at":"2026-02-23T22:54:00.659Z","updated_at":"2026-04-01T18:46:59.212Z","avatar_url":"https://github.com/educlopez.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# codevator\n\n[![npm version](https://img.shields.io/npm/v/codevator.svg)](https://www.npmjs.com/package/codevator)\n[![License: MIT](https://img.shields.io/badge/License-MIT-olive.svg)](LICENSE)\n\nElevator music for your AI coding agent.\n\nBackground sounds that play while [Claude Code](https://docs.anthropic.com/en/docs/claude-code) works and stop when it needs your attention.\n\n[Website](https://codevator.dev) · [npm](https://www.npmjs.com/package/codevator) · [Issues](https://github.com/educlopez/codevator/issues)\n\n![Codevator](.github/screenshot.png)\n\n\u003c/div\u003e\n\n## Quick Start\n\n```bash\nnpx codevator\n```\n\nThat's it. Next time Claude Code starts working, you'll hear elevator music.\n\n## Sound Modes\n\nFive built-in modes:\n\n| Mode | Description |\n|------|-------------|\n| `elevator` | Classic smooth jazz elevator music (default) |\n| `typewriter` | Rhythmic mechanical keystrokes |\n| `ambient` | Soft atmospheric background |\n| `retro` | Mellow 8-bit synthesized arpeggios |\n| `minimal` | Deep warm hum with slow breathing |\n\n```bash\nnpx codevator mode ambient\n```\n\n## Commands\n\n```\nnpx codevator              Install hooks into Claude Code\nnpx codevator mode \u003cname\u003e  Set sound mode\nnpx codevator volume \u003cn\u003e   Set volume (0-100)\nnpx codevator on / off     Enable or disable sounds\nnpx codevator status       Show current settings\nnpx codevator uninstall    Remove hooks from Claude Code\n```\n\n## How It Works\n\nCodevator registers hooks in Claude Code's settings (`~/.claude/settings.json`):\n\n- **PreToolUse** — starts playback when the agent begins working\n- **Stop** — stops playback when the session ends\n- **Notification** — stops on permission prompts and idle states\n\nMusic plays through your system's native audio player (`afplay` on macOS, `paplay`/`aplay` on Linux). Config is stored at `~/.codevator/config.json`.\n\n## Packages\n\n| Package | Description |\n|---------|-------------|\n| [`packages/cli`](packages/cli) | CLI tool — [npm](https://www.npmjs.com/package/codevator) |\n| [`packages/web`](packages/web) | Promotional website — [codevator.dev](https://codevator.dev) |\n\n## Development\n\n```bash\npnpm install\npnpm dev:web    # Next.js dev server\npnpm dev:cli    # CLI watch mode\npnpm build      # Build all packages\n```\n\n## Contributing\n\nContributions are welcome! Please open an issue or submit a pull request.\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feduclopez%2Fcodevator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feduclopez%2Fcodevator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feduclopez%2Fcodevator/lists"}