25 Skills + MCP Servers + Agent Teams + Global Prompts. One config to rule them all. Clone, copy, done.
A curated toolkit of skills, servers, and rules that makes Claude Code dramatically more capable.
From systematic debugging to TDD, from frontend design to Solidity security. Auto-triggered by context.
Playwright for headless browser automation. Serena for semantic code analysis across 40+ languages.
Coordinate multiple Claude instances in parallel. Code review, competitive debugging, multi-module refactoring.
CLAUDE.md with complete skill routing rules. Bug? Use systematic-debugging. Planning? Use writing-plans.
Env vars + alias so claude auto-runs in full-permission mode. One-line append to .bashrc.
Pre-built memory templates for user profile, MCP best practices, and Agent Teams patterns.
Context-aware skills that auto-trigger based on what you're doing. No need to remember commands.
Two ways to get started. Manual step-by-step, or paste a prompt to let AI do it for you.
# 1. Clone the config repo git clone https://github.com/hongnono-wdh/claude-config.git /tmp/claude-config # 2. Copy global config mkdir -p ~/.claude cp /tmp/claude-config/CLAUDE.md ~/.claude/CLAUDE.md cp /tmp/claude-config/settings.json ~/.claude/settings.json # 3. Set environment variables + alias cat /tmp/claude-config/bashrc-exports.sh >> ~/.bashrc source ~/.bashrc # "claude" now auto-includes --dangerously-skip-permissions # 4. Install MCP dependencies npm install -g @playwright/mcp npx playwright install --with-deps chromium curl -LsSf https://astral.sh/uv/install.sh | sh # 5. Install all 25 skills npx skills add obra/superpowers -a claude-code -g -y --skill '*' npx skills add anthropics/skills -a claude-code -g -y \ --skill frontend-design --skill canvas-design \ --skill webapp-testing --skill skill-creator npx skills add nextlevelbuilder/ui-ux-pro-max-skill -a claude-code -g -y --skill ui-ux-pro-max npx skills add Leonxlnx/taste-skill -a claude-code -g -y --skill design-taste-frontend npx skills add intellectronica/agent-skills -a claude-code -g -y --skill context7 npx skills add softaworks/agent-toolkit -a claude-code -g -y --skill database-schema-designer npx skills add microsoft/playwright-cli -a claude-code -g -y --skill playwright-cli npx skills add github/awesome-copilot -a claude-code -g -y --skill refactor npx skills add wshobson/agents -a claude-code -g -y --skill solidity-security npx skills add wuji-labs/nopua -a claude-code -g -y --skill nopua # 6. Clean up rm -rf /tmp/claude-config
Copy this prompt and paste it to Claude Code in your new environment:
Please install the Claude Code enhancement config from https://github.com/hongnono-wdh/claude-config Execute ALL steps below. Confirm each step succeeds: 1. git clone https://github.com/hongnono-wdh/claude-config.git /tmp/claude-config 2. mkdir -p ~/.claude && cp /tmp/claude-config/CLAUDE.md ~/.claude/CLAUDE.md && cp /tmp/claude-config/settings.json ~/.claude/settings.json 3. cat /tmp/claude-config/bashrc-exports.sh >> ~/.bashrc && source ~/.bashrc (This aliases "claude" to auto-include --dangerously-skip-permissions) 4. npm install -g @playwright/mcp && npx playwright install --with-deps chromium 5. curl -LsSf https://astral.sh/uv/install.sh | sh 6. npx skills add obra/superpowers -a claude-code -g -y --skill '*' 7. npx skills add anthropics/skills -a claude-code -g -y --skill frontend-design --skill canvas-design --skill webapp-testing --skill skill-creator 8. npx skills add nextlevelbuilder/ui-ux-pro-max-skill -a claude-code -g -y --skill ui-ux-pro-max 9. npx skills add Leonxlnx/taste-skill -a claude-code -g -y --skill design-taste-frontend 10. npx skills add intellectronica/agent-skills -a claude-code -g -y --skill context7 11. npx skills add softaworks/agent-toolkit -a claude-code -g -y --skill database-schema-designer 12. npx skills add microsoft/playwright-cli -a claude-code -g -y --skill playwright-cli 13. npx skills add github/awesome-copilot -a claude-code -g -y --skill refactor 14. npx skills add wshobson/agents -a claude-code -g -y --skill solidity-security 15. npx skills add wuji-labs/nopua -a claude-code -g -y --skill nopua 16. rm -rf /tmp/claude-config After completion, verify: - ~/.claude/CLAUDE.md exists - ~/.claude/settings.json exists - List installed skills count (should be 25) - Run "type claude" to confirm alias is set (should show --dangerously-skip-permissions)