{"id":30908574,"url":"https://github.com/amitizle/claude-code-config","last_synced_at":"2025-09-09T14:51:20.336Z","repository":{"id":308725937,"uuid":"1033266381","full_name":"amitizle/claude-code-config","owner":"amitizle","description":"Personal preferences to Claude Code configuration","archived":false,"fork":false,"pushed_at":"2025-09-07T11:53:21.000Z","size":38,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-07T13:23:09.793Z","etag":null,"topics":["agents","ai","claude","claude-ai","claude-code"],"latest_commit_sha":null,"homepage":"https://github.com/amitizle/claude-code-config","language":"Shell","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/amitizle.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":"2025-08-06T14:48:03.000Z","updated_at":"2025-09-07T11:53:24.000Z","dependencies_parsed_at":"2025-08-07T15:17:48.796Z","dependency_job_id":"5fc91cae-4e20-44c4-be8e-3cc0c52430cb","html_url":"https://github.com/amitizle/claude-code-config","commit_stats":null,"previous_names":["amitizle/claude-code-config"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/amitizle/claude-code-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitizle%2Fclaude-code-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitizle%2Fclaude-code-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitizle%2Fclaude-code-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitizle%2Fclaude-code-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amitizle","download_url":"https://codeload.github.com/amitizle/claude-code-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitizle%2Fclaude-code-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274315226,"owners_count":25262700,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-09T02:00:10.223Z","response_time":80,"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":["agents","ai","claude","claude-ai","claude-code"],"created_at":"2025-09-09T14:51:19.238Z","updated_at":"2025-09-09T14:51:20.312Z","avatar_url":"https://github.com/amitizle.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Claude Code Config\n\nMy personal preference for using Claude Code.\nUsing `stow` because it's easy to manage and keep track of changes.\n\nSub-agents are downloaded directly to ~/.claude/agents and are not managed by this repository.\n\n\u003e ⚠️ NOTE: when using `stow`, the `~/.claude` directory will be overwritten with symlinks to the files in this repository.\n\u003e If you want to keep your existing `~/.claude` directory, make sure to back it up before running the setup script.\n\u003e `mv ~/.claude ~/.claude.bak` is a good way to do this.\n\n## Prerequisites\n\n- **GNU Stow** - Package manager for symlink management\n- **curl** - For downloading sub-agent files\n- **jq** - JSON processor (for notification handling)\n- **terminal-notifier** - macOS notification system (for notification handling)\n\nInstall prerequisites on macOS:\n```bash\nbrew install stow jq terminal-notifier\n```\n\n## Scripts\n\n### setup.sh\n\nMain setup script for managing Claude Code configuration using GNU Stow.\n\n**Usage:**\n```bash\n./setup.sh [COMMAND]\n```\n\n**Commands:**\n- `stow` - Stow claude-code to ~/.claude\n- `unstow` - Unstow claude-code from ~/.claude  \n- `setup-sub-agents` - Download sub-agent files from configured URLs\n- `all` - Stow claude-code and setup sub-agents\n- `info` - Show package information\n- `help` - Show help message\n\n**Examples:**\n```bash\n# Setup everything (stow + download sub-agents)\n./setup.sh all\n\n# Just stow the claude-code configuration\n./setup.sh stow\n\n# Download all sub-agent files\n./setup.sh setup-sub-agents\n\n# Remove claude-code symlinks\n./setup.sh unstow\n```\n\n**Features:**\n- Uses GNU Stow to create symlinks from `claude-code/` to `~/.claude/`\n- Downloads 80+ expert sub-agents from curated repositories\n- Colored logging output (INFO, WARN, ERROR)\n- Error handling and validation\n\n### claude-code/scripts/handle_notification.sh\n\nSmart notification handler for Claude Code that provides contextual macOS notifications.\n\n**Usage:**\nThis script is typically called by Claude Code hooks and expects JSON input via stdin:\n```bash\necho '{\"message\": \"Your message here\"}' | ./handle_notification.sh\n```\n\n**Features:**\n- **Smart notification categorization:**\n  - Permission requests: Red alert with \"Sosumi\" sound\n  - Input waiting: Thinking icon with \"Glass\" sound  \n  - General messages: Robot icon with \"Ping\" sound\n- **Custom notification display:**\n  - Claude logo icon\n  - 10-second timeout\n  - Activates Terminal app on click\n- **Dependency validation:**\n  - Checks for `jq` and `terminal-notifier`\n  - Provides installation instructions if missing\n\n**Message Types:**\n- Messages containing \"permission\" → 🚨 Permission alert\n- Messages containing \"waiting for your input\" → 💭 Input prompt\n- All other messages → 🤖 General notification\n\n## Installation\n\n1. Clone this repository\n2. Install prerequisites\n3. Run the setup script:\n\n```bash\ngit clone \u003crepository-url\u003e\ncd claude-code-config\n./setup.sh all\n```\n\nThis will:\n- Create symlinks from `claude-code/` to `~/.claude/`\n- Download all sub-agent files to `~/.claude/agents/`\n\n## Directory Structure\n\n```\n├── README.md\n├── setup.sh                                    # Main setup script\n└── claude-code/                               # Claude Code configuration\n    ├── scripts/\n    │   ├── claude.png                         # Notification icon\n    │   └── handle_notification.sh             # Notification handler\n    └── [other claude config files...]\n```\n\nAfter setup, your `~/.claude/` directory will contain symlinks to the configuration files and a populated `agents/` directory with expert sub-agents.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famitizle%2Fclaude-code-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famitizle%2Fclaude-code-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famitizle%2Fclaude-code-config/lists"}