{"id":38956733,"url":"https://github.com/jarrodwatts/claude-code-config","last_synced_at":"2026-01-17T16:17:43.494Z","repository":{"id":331792473,"uuid":"1130182160","full_name":"jarrodwatts/claude-code-config","owner":"jarrodwatts","description":"My personal Claude Code configuration - rules, hooks, agents, skills, and commands","archived":false,"fork":false,"pushed_at":"2026-01-11T04:13:21.000Z","size":53,"stargazers_count":720,"open_issues_count":2,"forks_count":88,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-01-11T12:02:18.276Z","etag":null,"topics":["ai","claude","claude-code","developer-tools","dotfiles"],"latest_commit_sha":null,"homepage":null,"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/jarrodwatts.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-01-08T06:30:49.000Z","updated_at":"2026-01-11T11:44:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jarrodwatts/claude-code-config","commit_stats":null,"previous_names":["jarrodwatts/claude-code-config"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/jarrodwatts/claude-code-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jarrodwatts%2Fclaude-code-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jarrodwatts%2Fclaude-code-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jarrodwatts%2Fclaude-code-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jarrodwatts%2Fclaude-code-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jarrodwatts","download_url":"https://codeload.github.com/jarrodwatts/claude-code-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jarrodwatts%2Fclaude-code-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28511854,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T13:38:16.342Z","status":"ssl_error","status_checked_at":"2026-01-17T13:37:44.060Z","response_time":85,"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","claude","claude-code","developer-tools","dotfiles"],"created_at":"2026-01-17T16:17:42.640Z","updated_at":"2026-01-17T16:17:43.315Z","avatar_url":"https://github.com/jarrodwatts.png","language":"Python","funding_links":[],"categories":["Other"],"sub_categories":[],"readme":"# Claude Code Config\n\nmy personal claude code configuration - mostly not created by me, but sourced from many talented people in the community.\n\n## Installation\n\n### Option 1: Copy-Paste into Claude Code (No Git Required)\n\nCopy the prompt from [INSTALL.md](INSTALL.md) and paste it into Claude Code. Claude will fetch and install all config files automatically.\n\n### Option 2: Git Clone\n\n```bash\ngit clone https://github.com/jarrodwatts/claude-code-config.git ~/.claude\n```\n\n### Option 3: Selective Install\n\n```bash\n# Clone elsewhere first\ngit clone https://github.com/jarrodwatts/claude-code-config.git /tmp/claude-config\n\n# Copy what you need\ncp -r /tmp/claude-config/rules/* ~/.claude/rules/\ncp -r /tmp/claude-config/skills/* ~/.claude/skills/\ncp -r /tmp/claude-config/agents/* ~/.claude/agents/\n```\n\n## Contents\n\n### Rules (`.claude/rules/`)\n\nPath-scoped instructions loaded automatically when working with matching files.\n\n| File | Scope | Description |\n|------|-------|-------------|\n| `typescript.md` | `**/*.{ts,tsx}` | TypeScript conventions |\n| `testing.md` | `**/*.{test,spec}.ts` | Testing patterns |\n| `comments.md` | All files | Comment policy |\n| `forge.md` | `**/*.sol` | Foundry/ZKsync rules |\n\n### Skills (`.claude/skills/`)\n\nModel-invoked capabilities Claude applies automatically.\n\n| Skill | Description |\n|-------|-------------|\n| `planning-with-files` | Manus-style persistent markdown planning |\n\n### Agents (`.claude/agents/`)\n\nCustom subagents for specialized tasks.\n\n| Agent | Description |\n|-------|-------------|\n| `codebase-search` | Find files and implementations |\n| `media-interpreter` | Extract info from PDFs/images |\n| `open-source-librarian` | Research OSS with citations |\n| `tech-docs-writer` | Create technical documentation |\n\n### Commands (`.claude/commands/`)\n\nCustom slash commands.\n\n| Command | Description |\n|---------|-------------|\n| `interview` | Interactive planning/spec fleshing |\n\n### Hooks (`.claude/hooks/`)\n\nScripts triggered by Claude Code events.\n\n| Hook | Event | Description |\n|------|-------|-------------|\n| `keyword-detector.py` | UserPromptSubmit | Detects keywords in prompts |\n| `check-comments.py` | PostToolUse (Write/Edit) | Validates comment policy |\n| `todo-enforcer.sh` | Stop | Ensures todos are tracked |\n\n### CLAUDE.md\n\nPersonal global instructions loaded into every session.\n\n## Recommended Plugins\n\nPlugins I use alongside this config. Install via CLI:\n\n### Official Plugins\n\n```bash\nclaude plugin install frontend-design\nclaude plugin install code-review\nclaude plugin install typescript-lsp\nclaude plugin install plugin-dev\nclaude plugin install ralph-loop\n```\n\n### claude-hud (status line)\n\nAdd the marketplace first, then install:\n\n```bash\nclaude plugin marketplace add jarrodwatts/claude-hud\nclaude plugin install claude-hud@claude-hud\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjarrodwatts%2Fclaude-code-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjarrodwatts%2Fclaude-code-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjarrodwatts%2Fclaude-code-config/lists"}