@jwdobeutechsolutions/dobeutech-claude-code-custom 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +174 -0
- package/CONTRIBUTING.md +191 -0
- package/README.md +345 -0
- package/agents/accessibility-auditor.md +315 -0
- package/agents/api-designer.md +265 -0
- package/agents/architect.md +211 -0
- package/agents/build-error-resolver.md +532 -0
- package/agents/ci-cd-generator.md +318 -0
- package/agents/code-reviewer.md +104 -0
- package/agents/database-migrator.md +258 -0
- package/agents/deployment-manager.md +296 -0
- package/agents/doc-updater.md +452 -0
- package/agents/docker-specialist.md +293 -0
- package/agents/e2e-runner.md +708 -0
- package/agents/fullstack-architect.md +293 -0
- package/agents/infrastructure-engineer.md +297 -0
- package/agents/integration-tester.md +320 -0
- package/agents/performance-tester.md +243 -0
- package/agents/planner.md +119 -0
- package/agents/refactor-cleaner.md +306 -0
- package/agents/security-reviewer.md +545 -0
- package/agents/tdd-guide.md +280 -0
- package/agents/unit-test-generator.md +290 -0
- package/bin/claude-config.js +290 -0
- package/commands/api-design.md +55 -0
- package/commands/audit-accessibility.md +37 -0
- package/commands/audit-performance.md +38 -0
- package/commands/audit-security.md +43 -0
- package/commands/build-fix.md +29 -0
- package/commands/changelog.md +31 -0
- package/commands/code-review.md +40 -0
- package/commands/deploy.md +51 -0
- package/commands/docs-api.md +41 -0
- package/commands/e2e.md +363 -0
- package/commands/plan.md +113 -0
- package/commands/refactor-clean.md +28 -0
- package/commands/tdd.md +326 -0
- package/commands/test-coverage.md +27 -0
- package/commands/update-codemaps.md +17 -0
- package/commands/update-docs.md +31 -0
- package/hooks/hooks.json +121 -0
- package/mcp-configs/mcp-servers.json +163 -0
- package/package.json +53 -0
- package/rules/agents.md +49 -0
- package/rules/coding-style.md +70 -0
- package/rules/git-workflow.md +45 -0
- package/rules/hooks.md +46 -0
- package/rules/patterns.md +55 -0
- package/rules/performance.md +47 -0
- package/rules/security.md +36 -0
- package/rules/testing.md +30 -0
- package/scripts/install.js +254 -0
- package/skills/backend-patterns.md +582 -0
- package/skills/clickhouse-io.md +429 -0
- package/skills/coding-standards.md +520 -0
- package/skills/frontend-patterns.md +631 -0
- package/skills/project-guidelines-example.md +345 -0
- package/skills/security-review/SKILL.md +494 -0
- package/skills/tdd-workflow/SKILL.md +409 -0
package/CLAUDE.md
ADDED
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
# CLAUDE.md
|
|
2
|
+
|
|
3
|
+
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
4
|
+
|
|
5
|
+
## Repository Purpose
|
|
6
|
+
|
|
7
|
+
This is a collection of production-ready Claude Code configurations including agents, skills, commands, rules, hooks, and MCP configurations. These configs are meant to be copied to user's `~/.claude/` directory or project-specific locations.
|
|
8
|
+
|
|
9
|
+
**Not a development project** - This is a configuration repository with no build process, tests, or deployment pipeline.
|
|
10
|
+
|
|
11
|
+
## Repository Structure
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
everything-claude-code/
|
|
15
|
+
├── agents/ # Specialized subagents (planner, architect, tdd-guide, etc.)
|
|
16
|
+
├── skills/ # Workflow definitions and domain knowledge
|
|
17
|
+
├── commands/ # Slash commands (/tdd, /plan, /e2e, etc.)
|
|
18
|
+
├── rules/ # Always-follow guidelines (security, coding-style, testing, etc.)
|
|
19
|
+
├── hooks/ # Trigger-based automations (hooks.json)
|
|
20
|
+
├── mcp-configs/ # MCP server configurations (mcp-servers.json)
|
|
21
|
+
├── examples/ # Example CLAUDE.md files and statusline config
|
|
22
|
+
└── plugins/ # Plugin ecosystem documentation
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Key Concepts
|
|
26
|
+
|
|
27
|
+
### Agents (agents/)
|
|
28
|
+
Subagents with limited scope and specific tools. Format:
|
|
29
|
+
```markdown
|
|
30
|
+
---
|
|
31
|
+
name: agent-name
|
|
32
|
+
description: What it does
|
|
33
|
+
tools: Read, Grep, Glob, Bash
|
|
34
|
+
model: sonnet
|
|
35
|
+
---
|
|
36
|
+
Instructions here...
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Skills (skills/)
|
|
40
|
+
Workflow definitions and domain knowledge. Two formats:
|
|
41
|
+
- **Single file**: `coding-standards.md`, `backend-patterns.md`
|
|
42
|
+
- **Directory**: `tdd-workflow/SKILL.md`, `security-review/SKILL.md` (with optional reference files)
|
|
43
|
+
|
|
44
|
+
### Commands (commands/)
|
|
45
|
+
Slash commands that invoke workflows. Format:
|
|
46
|
+
```markdown
|
|
47
|
+
---
|
|
48
|
+
description: Brief description
|
|
49
|
+
---
|
|
50
|
+
# Command Name
|
|
51
|
+
Instructions...
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### Rules (rules/)
|
|
55
|
+
Always-follow guidelines that apply across all work. Kept modular by topic (security, testing, git-workflow, etc.).
|
|
56
|
+
|
|
57
|
+
### Hooks (hooks/hooks.json)
|
|
58
|
+
Event-driven automations triggered by tool usage:
|
|
59
|
+
- **PreToolUse**: Runs before tool executes (can block)
|
|
60
|
+
- **PostToolUse**: Runs after tool completes (analyze results)
|
|
61
|
+
- **Stop**: Runs when session ends (final checks)
|
|
62
|
+
|
|
63
|
+
Matchers use JMESPath-like syntax to filter when hooks run. Each hook executes bash commands with stdin containing tool context (accessible via `jq`).
|
|
64
|
+
|
|
65
|
+
## Contributing Guidelines
|
|
66
|
+
|
|
67
|
+
When adding new configs:
|
|
68
|
+
|
|
69
|
+
**File Naming:**
|
|
70
|
+
- Use lowercase with hyphens: `python-reviewer.md`
|
|
71
|
+
- Be descriptive: `tdd-workflow.md` not `workflow.md`
|
|
72
|
+
- Match agent/skill name to filename
|
|
73
|
+
|
|
74
|
+
**Agent Format:**
|
|
75
|
+
- Include frontmatter with name, description, tools, model
|
|
76
|
+
- Keep focused on specific task
|
|
77
|
+
- Document when to use it
|
|
78
|
+
|
|
79
|
+
**Skill Format:**
|
|
80
|
+
- Include "When to Use" and "How It Works" sections
|
|
81
|
+
- Provide clear examples
|
|
82
|
+
- Keep actionable
|
|
83
|
+
|
|
84
|
+
**Rules Format:**
|
|
85
|
+
- Keep modular (one concern per file)
|
|
86
|
+
- Use clear examples
|
|
87
|
+
- Include checklist format when applicable
|
|
88
|
+
|
|
89
|
+
**Hooks:**
|
|
90
|
+
- Include description field
|
|
91
|
+
- Test matchers thoroughly
|
|
92
|
+
- Document what triggers the hook
|
|
93
|
+
|
|
94
|
+
**Security:**
|
|
95
|
+
- Never include API keys, tokens, or paths
|
|
96
|
+
- Use placeholder text: `YOUR_API_KEY_HERE`
|
|
97
|
+
|
|
98
|
+
## Installation Pattern
|
|
99
|
+
|
|
100
|
+
Users copy configs to their Claude directory:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
# Copy all configs
|
|
104
|
+
cp agents/*.md ~/.claude/agents/
|
|
105
|
+
cp rules/*.md ~/.claude/rules/
|
|
106
|
+
cp commands/*.md ~/.claude/commands/
|
|
107
|
+
cp -r skills/* ~/.claude/skills/
|
|
108
|
+
|
|
109
|
+
# Or copy selectively
|
|
110
|
+
cp agents/planner.md ~/.claude/agents/
|
|
111
|
+
cp agents/tdd-guide.md ~/.claude/agents/
|
|
112
|
+
cp rules/security.md ~/.claude/rules/
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
For hooks, manually merge from `hooks/hooks.json` into `~/.claude/settings.json`:
|
|
116
|
+
- Copy the `"hooks"` object into your settings
|
|
117
|
+
- Adjust paths and commands as needed for your environment
|
|
118
|
+
- Test matchers thoroughly before enabling
|
|
119
|
+
|
|
120
|
+
For MCP servers, merge from `mcp-configs/mcp-servers.json` into `~/.claude.json`:
|
|
121
|
+
- Replace all `YOUR_*_HERE` placeholders with real API keys
|
|
122
|
+
- Enable only MCPs you need (see Context Window Management)
|
|
123
|
+
|
|
124
|
+
## Context Window Management
|
|
125
|
+
|
|
126
|
+
**Critical:** Don't enable all MCPs at once - context window shrinks from 200k to 70k with too many tools.
|
|
127
|
+
|
|
128
|
+
Guidelines:
|
|
129
|
+
- Configure 20-30 MCPs total
|
|
130
|
+
- Enable under 10 per project
|
|
131
|
+
- Keep under 80 tools active
|
|
132
|
+
- Use `disabledMcpServers` in project config
|
|
133
|
+
|
|
134
|
+
## Testing Configs
|
|
135
|
+
|
|
136
|
+
Before contributing:
|
|
137
|
+
1. Copy config to appropriate `~/.claude/` directory
|
|
138
|
+
2. Test with Claude Code in real scenarios
|
|
139
|
+
3. Verify hooks don't block normal operations
|
|
140
|
+
4. Confirm agents complete their tasks successfully
|
|
141
|
+
|
|
142
|
+
## Common Workflows
|
|
143
|
+
|
|
144
|
+
### Adding a New Agent
|
|
145
|
+
1. Create `agents/my-agent.md` with frontmatter (name, description, tools, model)
|
|
146
|
+
2. Write clear instructions defining agent's role and process
|
|
147
|
+
3. Test by copying to `~/.claude/agents/` and using Task tool with `subagent_type=my-agent`
|
|
148
|
+
|
|
149
|
+
### Adding a New Command
|
|
150
|
+
1. Create `commands/my-command.md` with frontmatter (description)
|
|
151
|
+
2. Write instructions that will be invoked when user types `/my-command`
|
|
152
|
+
3. Test by copying to `~/.claude/commands/` and running `/my-command`
|
|
153
|
+
|
|
154
|
+
### Adding a Hook
|
|
155
|
+
1. Add hook definition to `hooks/hooks.json`
|
|
156
|
+
2. Define matcher to filter when hook runs
|
|
157
|
+
3. Write bash command that processes stdin (tool context)
|
|
158
|
+
4. Test thoroughly to ensure it doesn't block normal operations
|
|
159
|
+
|
|
160
|
+
### Validating Configs
|
|
161
|
+
Before committing:
|
|
162
|
+
- Copy config to appropriate `~/.claude/` directory
|
|
163
|
+
- Test in real Claude Code scenarios
|
|
164
|
+
- Verify agents complete tasks successfully
|
|
165
|
+
- Confirm hooks don't interfere with normal workflow
|
|
166
|
+
- Check that matchers filter correctly
|
|
167
|
+
|
|
168
|
+
## Important Notes
|
|
169
|
+
|
|
170
|
+
- This repo has no code to run, build, or test
|
|
171
|
+
- No package.json, no dependencies, no deployment
|
|
172
|
+
- Focus is on config quality and documentation
|
|
173
|
+
- See CONTRIBUTING.md for detailed contribution process
|
|
174
|
+
- Read the [full guide](https://x.com/affaanmustafa/status/2012378465664745795) for usage philosophy
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
# Contributing to Everything Claude Code
|
|
2
|
+
|
|
3
|
+
Thanks for wanting to contribute. This repo is meant to be a community resource for Claude Code users.
|
|
4
|
+
|
|
5
|
+
## What We're Looking For
|
|
6
|
+
|
|
7
|
+
### Agents
|
|
8
|
+
|
|
9
|
+
New agents that handle specific tasks well:
|
|
10
|
+
- Language-specific reviewers (Python, Go, Rust)
|
|
11
|
+
- Framework experts (Django, Rails, Laravel, Spring)
|
|
12
|
+
- DevOps specialists (Kubernetes, Terraform, CI/CD)
|
|
13
|
+
- Domain experts (ML pipelines, data engineering, mobile)
|
|
14
|
+
|
|
15
|
+
### Skills
|
|
16
|
+
|
|
17
|
+
Workflow definitions and domain knowledge:
|
|
18
|
+
- Language best practices
|
|
19
|
+
- Framework patterns
|
|
20
|
+
- Testing strategies
|
|
21
|
+
- Architecture guides
|
|
22
|
+
- Domain-specific knowledge
|
|
23
|
+
|
|
24
|
+
### Commands
|
|
25
|
+
|
|
26
|
+
Slash commands that invoke useful workflows:
|
|
27
|
+
- Deployment commands
|
|
28
|
+
- Testing commands
|
|
29
|
+
- Documentation commands
|
|
30
|
+
- Code generation commands
|
|
31
|
+
|
|
32
|
+
### Hooks
|
|
33
|
+
|
|
34
|
+
Useful automations:
|
|
35
|
+
- Linting/formatting hooks
|
|
36
|
+
- Security checks
|
|
37
|
+
- Validation hooks
|
|
38
|
+
- Notification hooks
|
|
39
|
+
|
|
40
|
+
### Rules
|
|
41
|
+
|
|
42
|
+
Always-follow guidelines:
|
|
43
|
+
- Security rules
|
|
44
|
+
- Code style rules
|
|
45
|
+
- Testing requirements
|
|
46
|
+
- Naming conventions
|
|
47
|
+
|
|
48
|
+
### MCP Configurations
|
|
49
|
+
|
|
50
|
+
New or improved MCP server configs:
|
|
51
|
+
- Database integrations
|
|
52
|
+
- Cloud provider MCPs
|
|
53
|
+
- Monitoring tools
|
|
54
|
+
- Communication tools
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## How to Contribute
|
|
59
|
+
|
|
60
|
+
### 1. Fork the repo
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
git clone https://github.com/YOUR_USERNAME/everything-claude-code.git
|
|
64
|
+
cd everything-claude-code
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### 2. Create a branch
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
git checkout -b add-python-reviewer
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### 3. Add your contribution
|
|
74
|
+
|
|
75
|
+
Place files in the appropriate directory:
|
|
76
|
+
- `agents/` for new agents
|
|
77
|
+
- `skills/` for skills (can be single .md or directory)
|
|
78
|
+
- `commands/` for slash commands
|
|
79
|
+
- `rules/` for rule files
|
|
80
|
+
- `hooks/` for hook configurations
|
|
81
|
+
- `mcp-configs/` for MCP server configs
|
|
82
|
+
|
|
83
|
+
### 4. Follow the format
|
|
84
|
+
|
|
85
|
+
**Agents** should have frontmatter:
|
|
86
|
+
|
|
87
|
+
```markdown
|
|
88
|
+
---
|
|
89
|
+
name: agent-name
|
|
90
|
+
description: What it does
|
|
91
|
+
tools: Read, Grep, Glob, Bash
|
|
92
|
+
model: sonnet
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
Instructions here...
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
**Skills** should be clear and actionable:
|
|
99
|
+
|
|
100
|
+
```markdown
|
|
101
|
+
# Skill Name
|
|
102
|
+
|
|
103
|
+
## When to Use
|
|
104
|
+
|
|
105
|
+
...
|
|
106
|
+
|
|
107
|
+
## How It Works
|
|
108
|
+
|
|
109
|
+
...
|
|
110
|
+
|
|
111
|
+
## Examples
|
|
112
|
+
|
|
113
|
+
...
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
**Commands** should explain what they do:
|
|
117
|
+
|
|
118
|
+
```markdown
|
|
119
|
+
---
|
|
120
|
+
description: Brief description of command
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
# Command Name
|
|
124
|
+
|
|
125
|
+
Detailed instructions...
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
**Hooks** should include descriptions:
|
|
129
|
+
|
|
130
|
+
```json
|
|
131
|
+
{
|
|
132
|
+
"matcher": "...",
|
|
133
|
+
"hooks": [...],
|
|
134
|
+
"description": "What this hook does"
|
|
135
|
+
}
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
### 5. Test your contribution
|
|
139
|
+
|
|
140
|
+
Make sure your config works with Claude Code before submitting.
|
|
141
|
+
|
|
142
|
+
### 6. Submit a PR
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
git add .
|
|
146
|
+
git commit -m "Add Python code reviewer agent"
|
|
147
|
+
git push origin add-python-reviewer
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
Then open a PR with:
|
|
151
|
+
- What you added
|
|
152
|
+
- Why it's useful
|
|
153
|
+
- How you tested it
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
|
|
157
|
+
## Guidelines
|
|
158
|
+
|
|
159
|
+
### Do
|
|
160
|
+
|
|
161
|
+
- Keep configs focused and modular
|
|
162
|
+
- Include clear descriptions
|
|
163
|
+
- Test before submitting
|
|
164
|
+
- Follow existing patterns
|
|
165
|
+
- Document any dependencies
|
|
166
|
+
|
|
167
|
+
### Don't
|
|
168
|
+
|
|
169
|
+
- Include sensitive data (API keys, tokens, paths)
|
|
170
|
+
- Add overly complex or niche configs
|
|
171
|
+
- Submit untested configs
|
|
172
|
+
- Create duplicate functionality
|
|
173
|
+
- Add configs that require specific paid services without alternatives
|
|
174
|
+
|
|
175
|
+
---
|
|
176
|
+
|
|
177
|
+
## File Naming
|
|
178
|
+
|
|
179
|
+
- Use lowercase with hyphens: `python-reviewer.md`
|
|
180
|
+
- Be descriptive: `tdd-workflow.md` not `workflow.md`
|
|
181
|
+
- Match the agent/skill name to the filename
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
## Questions?
|
|
186
|
+
|
|
187
|
+
Open an issue or reach out on X: [@affaanmustafa](https://x.com/affaanmustafa)
|
|
188
|
+
|
|
189
|
+
---
|
|
190
|
+
|
|
191
|
+
Thanks for contributing. Let's build a great resource together.
|
package/README.md
ADDED
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
# Everything Claude Code
|
|
2
|
+
|
|
3
|
+
**The complete collection of Claude Code configs from an Anthropic hackathon winner.**
|
|
4
|
+
|
|
5
|
+
This repo contains production-ready agents, skills, hooks, commands, rules, and MCP configurations that I use daily with Claude Code. These configs evolved over 10+ months of intensive use building real products.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Read the Full Guide First
|
|
10
|
+
|
|
11
|
+
**Before diving into these configs, read the complete guide on X:**
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
<img width="592" height="445" alt="image" src="https://github.com/user-attachments/assets/1a471488-59cc-425b-8345-5245c7efbcef" />
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
**[The Shorthand Guide to Everything Claude Code](https://x.com/affaanmustafa/status/2012378465664745795)**
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
The guide explains:
|
|
22
|
+
- What each config type does and when to use it
|
|
23
|
+
- How to structure your Claude Code setup
|
|
24
|
+
- Context window management (critical for performance)
|
|
25
|
+
- Parallel workflows and advanced techniques
|
|
26
|
+
- The philosophy behind these configs
|
|
27
|
+
|
|
28
|
+
**This repo is configs only! Tips, tricks and more examples are in my X articles and videos (links will be appended to this readme as it evolves).**
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## What's Inside
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
everything-claude-code/
|
|
36
|
+
|-- agents/ # Specialized subagents for delegation (20 agents)
|
|
37
|
+
| |-- planner.md # Feature implementation planning
|
|
38
|
+
| |-- architect.md # System design decisions
|
|
39
|
+
| |-- tdd-guide.md # Test-driven development
|
|
40
|
+
| |-- code-reviewer.md # Quality and security review
|
|
41
|
+
| |-- security-reviewer.md # Vulnerability analysis
|
|
42
|
+
| |-- build-error-resolver.md
|
|
43
|
+
| |-- e2e-runner.md # Playwright E2E testing
|
|
44
|
+
| |-- refactor-cleaner.md # Dead code cleanup
|
|
45
|
+
| |-- doc-updater.md # Documentation sync
|
|
46
|
+
| |-- api-designer.md # API design and OpenAPI specs
|
|
47
|
+
| |-- database-migrator.md # Database migration management
|
|
48
|
+
| |-- integration-tester.md # Integration testing
|
|
49
|
+
| |-- fullstack-architect.md # Full-stack architecture
|
|
50
|
+
| |-- deployment-manager.md # Deployment automation
|
|
51
|
+
| |-- ci-cd-generator.md # CI/CD pipeline creation
|
|
52
|
+
| |-- infrastructure-engineer.md # Infrastructure as Code
|
|
53
|
+
| |-- docker-specialist.md # Containerization
|
|
54
|
+
| |-- unit-test-generator.md # Unit test generation
|
|
55
|
+
| |-- performance-tester.md # Performance analysis
|
|
56
|
+
| |-- accessibility-auditor.md # Accessibility compliance
|
|
57
|
+
|
|
|
58
|
+
|-- skills/ # Workflow definitions and domain knowledge (17 skills)
|
|
59
|
+
| |-- coding-standards.md # Language best practices
|
|
60
|
+
| |-- backend-patterns.md # API, database, caching patterns
|
|
61
|
+
| |-- frontend-patterns.md # React, Next.js patterns
|
|
62
|
+
| |-- project-guidelines-example.md # Example project-specific skill
|
|
63
|
+
| |-- tdd-workflow/ # TDD methodology
|
|
64
|
+
| |-- security-review/ # Security checklist
|
|
65
|
+
| |-- clickhouse-io.md # ClickHouse analytics
|
|
66
|
+
| |-- api-design-patterns.md # REST, GraphQL, gRPC patterns
|
|
67
|
+
| |-- database-patterns.md # ORM, query optimization
|
|
68
|
+
| |-- frontend-backend-integration.md # Integration patterns
|
|
69
|
+
| |-- microservices-patterns.md # Microservices architecture
|
|
70
|
+
| |-- deployment-strategies.md # Blue-green, canary, rolling
|
|
71
|
+
| |-- ci-cd-patterns.md # CI/CD pipeline patterns
|
|
72
|
+
| |-- infrastructure-patterns.md # Infrastructure as Code
|
|
73
|
+
| |-- api-documentation.md # API documentation patterns
|
|
74
|
+
| |-- technical-writing.md # Technical writing patterns
|
|
75
|
+
| |-- architecture-diagrams.md # Architecture visualization
|
|
76
|
+
| |-- memory-management.md # Memory persistence patterns
|
|
77
|
+
|
|
|
78
|
+
|-- commands/ # Slash commands for quick execution (19 commands)
|
|
79
|
+
| |-- tdd.md # /tdd - Test-driven development
|
|
80
|
+
| |-- plan.md # /plan - Implementation planning
|
|
81
|
+
| |-- e2e.md # /e2e - E2E test generation
|
|
82
|
+
| |-- code-review.md # /code-review - Quality review
|
|
83
|
+
| |-- build-fix.md # /build-fix - Fix build errors
|
|
84
|
+
| |-- refactor-clean.md # /refactor-clean - Dead code removal
|
|
85
|
+
| |-- test-coverage.md # /test-coverage - Coverage analysis
|
|
86
|
+
| |-- update-codemaps.md # /update-codemaps - Refresh docs
|
|
87
|
+
| |-- update-docs.md # /update-docs - Sync documentation
|
|
88
|
+
| |-- api-design.md # /api-design - Generate API specs
|
|
89
|
+
| |-- migrate-db.md # /migrate-db - Database migrations
|
|
90
|
+
| |-- test-integration.md # /test-integration - Integration tests
|
|
91
|
+
| |-- deploy.md # /deploy - Deployment workflow
|
|
92
|
+
| |-- docs-api.md # /docs-api - API documentation
|
|
93
|
+
| |-- docs-arch.md # /docs-arch - Architecture docs
|
|
94
|
+
| |-- changelog.md # /changelog - Generate changelog
|
|
95
|
+
| |-- audit-security.md # /audit-security - Security audit
|
|
96
|
+
| |-- audit-performance.md # /audit-performance - Performance audit
|
|
97
|
+
| |-- audit-accessibility.md # /audit-accessibility - A11y audit
|
|
98
|
+
|
|
|
99
|
+
|-- rules/ # Always-follow guidelines
|
|
100
|
+
| |-- security.md # Mandatory security checks
|
|
101
|
+
| |-- coding-style.md # Immutability, file organization
|
|
102
|
+
| |-- testing.md # TDD, 80% coverage requirement
|
|
103
|
+
| |-- git-workflow.md # Commit format, PR process
|
|
104
|
+
| |-- agents.md # When to delegate to subagents
|
|
105
|
+
| |-- performance.md # Model selection, context management
|
|
106
|
+
| |-- patterns.md # API response formats, hooks
|
|
107
|
+
| |-- hooks.md # Hook documentation
|
|
108
|
+
|
|
|
109
|
+
|-- hooks/ # Trigger-based automations
|
|
110
|
+
| |-- hooks.json # PreToolUse, PostToolUse, Stop hooks
|
|
111
|
+
|
|
|
112
|
+
|-- mcp-configs/ # MCP server configurations
|
|
113
|
+
| |-- mcp-servers.json # GitHub, Supabase, Vercel, Railway, mem0, etc.
|
|
114
|
+
|
|
115
|
+
|-- templates/ # Templates for creating components
|
|
116
|
+
| |-- agent-template.md # Agent creation template
|
|
117
|
+
| |-- skill-template.md # Skill creation template
|
|
118
|
+
| |-- command-template.md # Command creation template
|
|
119
|
+
| |-- hook-template.json # Hook creation template
|
|
120
|
+
| |-- mcp-template.json # MCP config template
|
|
121
|
+
|
|
122
|
+
|-- docs/ # Comprehensive documentation
|
|
123
|
+
| |-- INSTALLATION.md # Installation guide
|
|
124
|
+
| |-- QUICK_START.md # Quick start guide
|
|
125
|
+
| |-- AGENTS_GUIDE.md # Agents usage guide
|
|
126
|
+
| |-- SKILLS_GUIDE.md # Skills creation guide
|
|
127
|
+
| |-- COMMANDS_GUIDE.md # Commands usage guide
|
|
128
|
+
| |-- HOOKS_GUIDE.md # Hooks creation guide
|
|
129
|
+
| |-- MCP_GUIDE.md # MCP configuration guide
|
|
130
|
+
| |-- COMMUNITY_PLUGINS.md # Community plugins guide
|
|
131
|
+
| |-- BEST_PRACTICES.md # Best practices
|
|
132
|
+
| |-- TROUBLESHOOTING.md # Troubleshooting guide
|
|
133
|
+
|
|
134
|
+
|-- plugins/ # Plugin ecosystem documentation
|
|
135
|
+
| |-- README.md # Plugins, marketplaces, skills guide
|
|
136
|
+
|
|
|
137
|
+
|-- examples/ # Example configurations
|
|
138
|
+
|-- CLAUDE.md # Example project-level config
|
|
139
|
+
|-- user-CLAUDE.md # Example user-level config (~/.claude/CLAUDE.md)
|
|
140
|
+
|-- statusline.json # Custom status line config
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Quick Start
|
|
146
|
+
|
|
147
|
+
### Installation via npm (Recommended)
|
|
148
|
+
|
|
149
|
+
The easiest way to install and keep your Claude Code configurations up to date:
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
# Global installation (recommended for all projects)
|
|
153
|
+
npm install -g @jwdobeutechsolutions/dobeutech-claude-code-custom
|
|
154
|
+
|
|
155
|
+
# Or local installation (project-specific)
|
|
156
|
+
npm install @jwdobeutechsolutions/dobeutech-claude-code-custom
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
The installation script automatically:
|
|
160
|
+
- Copies all agents, skills, commands, and rules to `~/.claude/` (global) or `./.claude/` (local)
|
|
161
|
+
- Merges hooks into `settings.json` (preserves your existing hooks)
|
|
162
|
+
- Merges MCP server configs into `.claude.json` (preserves your API keys)
|
|
163
|
+
|
|
164
|
+
**After installation:**
|
|
165
|
+
1. Configure your API keys in `~/.claude/.claude.json` (or `./.claude/.claude.json` for local)
|
|
166
|
+
2. Customize settings in `~/.claude/settings.json` if needed
|
|
167
|
+
3. Use `claude-config update` to sync latest changes
|
|
168
|
+
|
|
169
|
+
**CLI Commands:**
|
|
170
|
+
```bash
|
|
171
|
+
claude-config status # Check installation status and version
|
|
172
|
+
claude-config list # List all installed components
|
|
173
|
+
claude-config update # Update to latest version
|
|
174
|
+
claude-config help # Show help
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
### Manual Installation (Alternative)
|
|
180
|
+
|
|
181
|
+
If you prefer to install manually:
|
|
182
|
+
|
|
183
|
+
#### 1. Copy what you need
|
|
184
|
+
|
|
185
|
+
```bash
|
|
186
|
+
# Clone the repo
|
|
187
|
+
git clone https://github.com/dobeutech/dobeutech-claude-code-custom.git
|
|
188
|
+
|
|
189
|
+
# Copy agents to your Claude config
|
|
190
|
+
cp dobeutech-claude-code-custom/agents/*.md ~/.claude/agents/
|
|
191
|
+
|
|
192
|
+
# Copy rules
|
|
193
|
+
cp dobeutech-claude-code-custom/rules/*.md ~/.claude/rules/
|
|
194
|
+
|
|
195
|
+
# Copy commands
|
|
196
|
+
cp dobeutech-claude-code-custom/commands/*.md ~/.claude/commands/
|
|
197
|
+
|
|
198
|
+
# Copy skills
|
|
199
|
+
cp -r dobeutech-claude-code-custom/skills/* ~/.claude/skills/
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
#### 2. Add hooks to settings.json
|
|
203
|
+
|
|
204
|
+
Copy the hooks from `hooks/hooks.json` to your `~/.claude/settings.json`.
|
|
205
|
+
|
|
206
|
+
#### 3. Configure MCPs
|
|
207
|
+
|
|
208
|
+
Copy desired MCP servers from `mcp-configs/mcp-servers.json` to your `~/.claude.json`.
|
|
209
|
+
|
|
210
|
+
**Important:** Replace `YOUR_*_HERE` placeholders with your actual API keys.
|
|
211
|
+
|
|
212
|
+
---
|
|
213
|
+
|
|
214
|
+
### Read the guide
|
|
215
|
+
|
|
216
|
+
Seriously, [read the guide](https://x.com/affaanmustafa/status/2012378465664745795). These configs make 10x more sense with context.
|
|
217
|
+
|
|
218
|
+
---
|
|
219
|
+
|
|
220
|
+
## Key Concepts
|
|
221
|
+
|
|
222
|
+
### Agents
|
|
223
|
+
|
|
224
|
+
Subagents handle delegated tasks with limited scope. Example:
|
|
225
|
+
|
|
226
|
+
```markdown
|
|
227
|
+
---
|
|
228
|
+
name: code-reviewer
|
|
229
|
+
description: Reviews code for quality, security, and maintainability
|
|
230
|
+
tools: Read, Grep, Glob, Bash
|
|
231
|
+
model: opus
|
|
232
|
+
---
|
|
233
|
+
|
|
234
|
+
You are a senior code reviewer...
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
### Skills
|
|
238
|
+
|
|
239
|
+
Skills are workflow definitions invoked by commands or agents:
|
|
240
|
+
|
|
241
|
+
```markdown
|
|
242
|
+
# TDD Workflow
|
|
243
|
+
|
|
244
|
+
1. Define interfaces first
|
|
245
|
+
2. Write failing tests (RED)
|
|
246
|
+
3. Implement minimal code (GREEN)
|
|
247
|
+
4. Refactor (IMPROVE)
|
|
248
|
+
5. Verify 80%+ coverage
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
### Hooks
|
|
252
|
+
|
|
253
|
+
Hooks fire on tool events. Example - warn about console.log:
|
|
254
|
+
|
|
255
|
+
```json
|
|
256
|
+
{
|
|
257
|
+
"matcher": "tool == \"Edit\" && tool_input.file_path matches \"\\\\.(ts|tsx|js|jsx)$\"",
|
|
258
|
+
"hooks": [{
|
|
259
|
+
"type": "command",
|
|
260
|
+
"command": "#!/bin/bash\ngrep -n 'console\\.log' \"$file_path\" && echo '[Hook] Remove console.log' >&2"
|
|
261
|
+
}]
|
|
262
|
+
}
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
### Rules
|
|
266
|
+
|
|
267
|
+
Rules are always-follow guidelines. Keep them modular:
|
|
268
|
+
|
|
269
|
+
```
|
|
270
|
+
~/.claude/rules/
|
|
271
|
+
security.md # No hardcoded secrets
|
|
272
|
+
coding-style.md # Immutability, file limits
|
|
273
|
+
testing.md # TDD, coverage requirements
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
---
|
|
277
|
+
|
|
278
|
+
## Contributing
|
|
279
|
+
|
|
280
|
+
**Contributions are welcome and encouraged.**
|
|
281
|
+
|
|
282
|
+
This repo is meant to be a community resource. If you have:
|
|
283
|
+
- Useful agents or skills
|
|
284
|
+
- Clever hooks
|
|
285
|
+
- Better MCP configurations
|
|
286
|
+
- Improved rules
|
|
287
|
+
|
|
288
|
+
Please contribute! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
289
|
+
|
|
290
|
+
### Ideas for Contributions
|
|
291
|
+
|
|
292
|
+
- Language-specific skills (Python, Go, Rust patterns)
|
|
293
|
+
- Framework-specific configs (Django, Rails, Laravel)
|
|
294
|
+
- DevOps agents (Kubernetes, Terraform, AWS)
|
|
295
|
+
- Testing strategies (different frameworks)
|
|
296
|
+
- Domain-specific knowledge (ML, data engineering, mobile)
|
|
297
|
+
|
|
298
|
+
---
|
|
299
|
+
|
|
300
|
+
## Background
|
|
301
|
+
|
|
302
|
+
I've been using Claude Code since the experimental rollout. Won the Anthropic x Forum Ventures hackathon in Sep 2025 building [zenith.chat](https://zenith.chat) with [@DRodriguezFX](https://x.com/DRodriguezFX) - entirely using Claude Code.
|
|
303
|
+
|
|
304
|
+
These configs are battle-tested across multiple production applications.
|
|
305
|
+
|
|
306
|
+
---
|
|
307
|
+
|
|
308
|
+
## Important Notes
|
|
309
|
+
|
|
310
|
+
### Context Window Management
|
|
311
|
+
|
|
312
|
+
**Critical:** Don't enable all MCPs at once. Your 200k context window can shrink to 70k with too many tools enabled.
|
|
313
|
+
|
|
314
|
+
Rule of thumb:
|
|
315
|
+
- Have 20-30 MCPs configured
|
|
316
|
+
- Keep under 10 enabled per project
|
|
317
|
+
- Under 80 tools active
|
|
318
|
+
|
|
319
|
+
Use `disabledMcpServers` in project config to disable unused ones.
|
|
320
|
+
|
|
321
|
+
### Customization
|
|
322
|
+
|
|
323
|
+
These configs work for my workflow. You should:
|
|
324
|
+
1. Start with what resonates
|
|
325
|
+
2. Modify for your stack
|
|
326
|
+
3. Remove what you don't use
|
|
327
|
+
4. Add your own patterns
|
|
328
|
+
|
|
329
|
+
---
|
|
330
|
+
|
|
331
|
+
## Links
|
|
332
|
+
|
|
333
|
+
- **Full Guide:** [The Shorthand Guide to Everything Claude Code](https://x.com/affaanmustafa/status/2012378465664745795)
|
|
334
|
+
- **Follow:** [@affaanmustafa](https://x.com/affaanmustafa)
|
|
335
|
+
- **zenith.chat:** [zenith.chat](https://zenith.chat)
|
|
336
|
+
|
|
337
|
+
---
|
|
338
|
+
|
|
339
|
+
## License
|
|
340
|
+
|
|
341
|
+
MIT - Use freely, modify as needed, contribute back if you can.
|
|
342
|
+
|
|
343
|
+
---
|
|
344
|
+
|
|
345
|
+
**Star this repo if it helps. Read the guide. Build something great.**
|