npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@jwdobeutechsolutions/dobeutech-claude-code-custom

v1.0.3

Published

Comprehensive centralized repository of Claude Code configurations including agents, skills, commands, hooks, and MCP servers optimized for full-stack development

Downloads

21

Readme

Everything Claude Code

The complete collection of Claude Code configs from an Anthropic hackathon winner.

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.


Read the Full Guide First

Before diving into these configs, read the complete guide on X:

The Shorthand Guide to Everything Claude Code

The guide explains:

  • What each config type does and when to use it
  • How to structure your Claude Code setup
  • Context window management (critical for performance)
  • Parallel workflows and advanced techniques
  • The philosophy behind these configs

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).


What's Inside

everything-claude-code/
|-- agents/           # Specialized subagents for delegation (20 agents)
|   |-- planner.md           # Feature implementation planning
|   |-- architect.md         # System design decisions
|   |-- tdd-guide.md         # Test-driven development
|   |-- code-reviewer.md     # Quality and security review
|   |-- security-reviewer.md # Vulnerability analysis
|   |-- build-error-resolver.md
|   |-- e2e-runner.md        # Playwright E2E testing
|   |-- refactor-cleaner.md  # Dead code cleanup
|   |-- doc-updater.md       # Documentation sync
|   |-- api-designer.md      # API design and OpenAPI specs
|   |-- database-migrator.md # Database migration management
|   |-- integration-tester.md # Integration testing
|   |-- fullstack-architect.md # Full-stack architecture
|   |-- deployment-manager.md # Deployment automation
|   |-- ci-cd-generator.md    # CI/CD pipeline creation
|   |-- infrastructure-engineer.md # Infrastructure as Code
|   |-- docker-specialist.md  # Containerization
|   |-- unit-test-generator.md # Unit test generation
|   |-- performance-tester.md # Performance analysis
|   |-- accessibility-auditor.md # Accessibility compliance
|
|-- skills/           # Workflow definitions and domain knowledge (17 skills)
|   |-- coding-standards.md         # Language best practices
|   |-- backend-patterns.md         # API, database, caching patterns
|   |-- frontend-patterns.md        # React, Next.js patterns
|   |-- project-guidelines-example.md # Example project-specific skill
|   |-- tdd-workflow/               # TDD methodology
|   |-- security-review/            # Security checklist
|   |-- clickhouse-io.md            # ClickHouse analytics
|   |-- api-design-patterns.md     # REST, GraphQL, gRPC patterns
|   |-- database-patterns.md        # ORM, query optimization
|   |-- frontend-backend-integration.md # Integration patterns
|   |-- microservices-patterns.md   # Microservices architecture
|   |-- deployment-strategies.md    # Blue-green, canary, rolling
|   |-- ci-cd-patterns.md           # CI/CD pipeline patterns
|   |-- infrastructure-patterns.md   # Infrastructure as Code
|   |-- api-documentation.md        # API documentation patterns
|   |-- technical-writing.md        # Technical writing patterns
|   |-- architecture-diagrams.md   # Architecture visualization
|   |-- memory-management.md        # Memory persistence patterns
|
|-- commands/         # Slash commands for quick execution (19 commands)
|   |-- tdd.md              # /tdd - Test-driven development
|   |-- plan.md             # /plan - Implementation planning
|   |-- e2e.md              # /e2e - E2E test generation
|   |-- code-review.md      # /code-review - Quality review
|   |-- build-fix.md        # /build-fix - Fix build errors
|   |-- refactor-clean.md   # /refactor-clean - Dead code removal
|   |-- test-coverage.md    # /test-coverage - Coverage analysis
|   |-- update-codemaps.md  # /update-codemaps - Refresh docs
|   |-- update-docs.md      # /update-docs - Sync documentation
|   |-- api-design.md       # /api-design - Generate API specs
|   |-- migrate-db.md       # /migrate-db - Database migrations
|   |-- test-integration.md # /test-integration - Integration tests
|   |-- deploy.md           # /deploy - Deployment workflow
|   |-- docs-api.md         # /docs-api - API documentation
|   |-- docs-arch.md        # /docs-arch - Architecture docs
|   |-- changelog.md        # /changelog - Generate changelog
|   |-- audit-security.md   # /audit-security - Security audit
|   |-- audit-performance.md # /audit-performance - Performance audit
|   |-- audit-accessibility.md # /audit-accessibility - A11y audit
|
|-- rules/            # Always-follow guidelines
|   |-- security.md         # Mandatory security checks
|   |-- coding-style.md     # Immutability, file organization
|   |-- testing.md          # TDD, 80% coverage requirement
|   |-- git-workflow.md     # Commit format, PR process
|   |-- agents.md           # When to delegate to subagents
|   |-- performance.md      # Model selection, context management
|   |-- patterns.md         # API response formats, hooks
|   |-- hooks.md            # Hook documentation
|
|-- hooks/            # Trigger-based automations
|   |-- hooks.json          # PreToolUse, PostToolUse, Stop hooks
|
|-- mcp-configs/      # MCP server configurations
|   |-- mcp-servers.json    # GitHub, Supabase, Vercel, Railway, mem0, etc.

|-- templates/        # Templates for creating components
|   |-- agent-template.md   # Agent creation template
|   |-- skill-template.md   # Skill creation template
|   |-- command-template.md # Command creation template
|   |-- hook-template.json  # Hook creation template
|   |-- mcp-template.json   # MCP config template

|-- docs/             # Comprehensive documentation
|   |-- INSTALLATION.md     # Installation guide
|   |-- QUICK_START.md      # Quick start guide
|   |-- AGENTS_GUIDE.md     # Agents usage guide
|   |-- SKILLS_GUIDE.md     # Skills creation guide
|   |-- COMMANDS_GUIDE.md   # Commands usage guide
|   |-- HOOKS_GUIDE.md      # Hooks creation guide
|   |-- MCP_GUIDE.md        # MCP configuration guide
|   |-- COMMUNITY_PLUGINS.md # Community plugins guide
|   |-- BEST_PRACTICES.md   # Best practices
|   |-- TROUBLESHOOTING.md  # Troubleshooting guide

|-- plugins/          # Plugin ecosystem documentation
|   |-- README.md           # Plugins, marketplaces, skills guide
|
|-- examples/         # Example configurations
    |-- CLAUDE.md           # Example project-level config
    |-- user-CLAUDE.md      # Example user-level config (~/.claude/CLAUDE.md)
    |-- statusline.json     # Custom status line config

Quick Start

Installation via npm (Recommended)

The easiest way to install and keep your Claude Code configurations up to date:

# Global installation (recommended for all projects)
npm install -g @jwdobeutechsolutions/dobeutech-claude-code-custom

# Or local installation (project-specific)
npm install @jwdobeutechsolutions/dobeutech-claude-code-custom

The installation script automatically:

  • Copies all agents, skills, commands, and rules to ~/.claude/ (global) or ./.claude/ (local)
  • Merges hooks into settings.json (preserves your existing hooks)
  • Merges MCP server configs into .claude.json (preserves your API keys)

After installation:

  1. Configure your API keys in ~/.claude/.claude.json (or ./.claude/.claude.json for local)
  2. Customize settings in ~/.claude/settings.json if needed
  3. Use claude-config update to sync latest changes

CLI Commands:

claude-config status    # Check installation status and version
claude-config list       # List all installed components
claude-config update     # Update to latest version
claude-config help       # Show help

Manual Installation (Alternative)

If you prefer to install manually:

1. Copy what you need

# Clone the repo
git clone https://github.com/dobeutech/dobeutech-claude-code-custom.git

# Copy agents to your Claude config
cp dobeutech-claude-code-custom/agents/*.md ~/.claude/agents/

# Copy rules
cp dobeutech-claude-code-custom/rules/*.md ~/.claude/rules/

# Copy commands
cp dobeutech-claude-code-custom/commands/*.md ~/.claude/commands/

# Copy skills
cp -r dobeutech-claude-code-custom/skills/* ~/.claude/skills/

2. Add hooks to settings.json

Copy the hooks from hooks/hooks.json to your ~/.claude/settings.json.

3. Configure MCPs

Copy desired MCP servers from mcp-configs/mcp-servers.json to your ~/.claude.json.

Important: Replace YOUR_*_HERE placeholders with your actual API keys.


Read the guide

Seriously, read the guide. These configs make 10x more sense with context.


Key Concepts

Agents

Subagents handle delegated tasks with limited scope. Example:

---
name: code-reviewer
description: Reviews code for quality, security, and maintainability
tools: Read, Grep, Glob, Bash
model: opus
---

You are a senior code reviewer...

Skills

Skills are workflow definitions invoked by commands or agents:

# TDD Workflow

1. Define interfaces first
2. Write failing tests (RED)
3. Implement minimal code (GREEN)
4. Refactor (IMPROVE)
5. Verify 80%+ coverage

Hooks

Hooks fire on tool events. Example - warn about console.log:

{
  "matcher": "tool == \"Edit\" && tool_input.file_path matches \"\\\\.(ts|tsx|js|jsx)$\"",
  "hooks": [{
    "type": "command",
    "command": "#!/bin/bash\ngrep -n 'console\\.log' \"$file_path\" && echo '[Hook] Remove console.log' >&2"
  }]
}

Rules

Rules are always-follow guidelines. Keep them modular:

~/.claude/rules/
  security.md      # No hardcoded secrets
  coding-style.md  # Immutability, file limits
  testing.md       # TDD, coverage requirements

Contributing

Contributions are welcome and encouraged.

This repo is meant to be a community resource. If you have:

  • Useful agents or skills
  • Clever hooks
  • Better MCP configurations
  • Improved rules

Please contribute! See CONTRIBUTING.md for guidelines.

Ideas for Contributions

  • Language-specific skills (Python, Go, Rust patterns)
  • Framework-specific configs (Django, Rails, Laravel)
  • DevOps agents (Kubernetes, Terraform, AWS)
  • Testing strategies (different frameworks)
  • Domain-specific knowledge (ML, data engineering, mobile)

Background

I've been using Claude Code since the experimental rollout. Won the Anthropic x Forum Ventures hackathon in Sep 2025 building zenith.chat with @DRodriguezFX - entirely using Claude Code.

These configs are battle-tested across multiple production applications.


Important Notes

Context Window Management

Critical: Don't enable all MCPs at once. Your 200k context window can shrink to 70k with too many tools enabled.

Rule of thumb:

  • Have 20-30 MCPs configured
  • Keep under 10 enabled per project
  • Under 80 tools active

Use disabledMcpServers in project config to disable unused ones.

Customization

These configs work for my workflow. You should:

  1. Start with what resonates
  2. Modify for your stack
  3. Remove what you don't use
  4. Add your own patterns

Links


License

MIT - Use freely, modify as needed, contribute back if you can.


Star this repo if it helps. Read the guide. Build something great.