Claude Skill
jarrodwatts/claude-code-config
个人Claude代码配置,包含自定义规则、钩子、代理和Claude Skill,用于增强AI辅助编码。基于JavaScript的开发者工具设置。
概览
仓库信息
安装这个 Skill
git clone https://github.com/jarrodwatts/claude-code-config.git ~/.claudeRegistry 信息
git clone https://github.com/jarrodwatts/claude-code-config.git ~/.claudegit clone https://github.com/jarrodwatts/claude-code-config.git /tmp/claude-config
项目简介
一个个人Claude代码配置仓库,包含用于增强Claude AI编码体验的自定义规则、钩子、代理、技能与命令。
My personal Claude Code configuration - rules, hooks, agents, skills, and commands
要点
- 自定义Claude代码配置
- 个人规则与钩子
- AI代理与Claude Skill定义
- 开发者命令快捷方式
- 基于JavaScript的设置
- Dotfiles风格组织
使用场景
- 增强Claude AI编码工作流
- 个人开发者生产力设置
- 分享Claude配置模板
- 自定义AI代理开发
- 开发者工具集成
- 团队编码标准实施
README 摘要
# Claude Code Config my personal claude code configuration - mostly not created by me, but sourced from many talented people in the community. ## Installation ### Option 1: Copy-Paste into Claude Code (No Git Required) Copy the prompt from [INSTALL.md](INSTALL.md) and paste it into Claude Code. Claude will fetch and install all config files automatically. ### Option 2: Git Clone ```bash git clone https://github.com/jarrodwatts/claude-code-config.git ~/.claude ``` ### Option 3: Selective Install ```bash # Clone elsewhere first git clone https://github.com/jarrodwatts/claude-code-config.git /tmp/claude-config # Copy what you need cp -r /tmp/claude-config/rules/* ~/.claude/rules/ cp -r /tmp/claude-config/skills/* ~/.claude/skills/ cp -r /tmp/claude-config/agents/* ~/.claude/agents/ ``` ## Contents ### Rules (`.claude/rules/`) Path-scoped instructions loaded automatically when working with matching files. | File | Scope | Description | |------|-------|-------------| | `typescript.md` | `**/*.{ts,tsx}` | TypeScript conventions | | `testing.md` | `**/*.{test,spec}.ts` | Testing patterns | | `comments.md` | All files | Comment policy | | `forge.md` | `**/*.sol` | Foundry/ZKsync rules | ### Skills (`.claude/skills/`) Model-invoked capabilities Claude applies automatically. | Skill | Description | |-------|-------------| | `planning-with-files` | Manus-style persistent markdown planning | ### Agents (`.claude/agents/`) Custom subagents for specialized tasks. | Agent | Description | |-------|-------------| | `codebase-search` | Find files and implementations | | `media-interpreter` | Extract info from PDFs/images | | `open-source-librarian` | Research OSS with citations | | `tech-docs-writer` | Create technical documentation | ### Commands (`.claude/commands/`