Skip to main content

Everything Claude Code — Comprehensive Skill Review & Integration Strategy

· 4 min read
Hong Bao Ngan
Cha đẻ của bug 404

Based on exploring the comprehensive Everything Claude Code repository — 156 skills, 72 commands, 38 agents. This guide covers how to cherry-pick tools without installing the full package.

Repository Overview

The Everything Claude Code repository is an Anthropic Hackathon winner containing 156 reusable skills across multiple AI platforms.

Scope: 156 skills | 72 commands | 38 agents | 12+ hooks

Target platforms: Claude Code (primary), Cursor, Codex, Gemini

Claude Code-Only vs Shared Access

Claude Code-Only Components

These features exist in ~/.claude/ and are not accessible to other AI environments:

  • ~/.claude/skills/ — workflow definitions and automation scripts
  • ~/.claude/commands/ — slash command shims and integrations
  • ~/.claude/agents/ — subagent configurations
  • settings.json hooks — system event handlers

Shared Components (Multi-AI)

These can be accessed by Antigravity Agent, Gemini, or other tools:

  • rules/common/*.md — security and style guidelines
  • mcp-configs/ — JSON Model Context Protocol server configurations

Critical Hook Dependency Issue

A major finding: ~90% of hooks depend on ${CLAUDE_PLUGIN_ROOT}/scripts/hooks/*.js

This means:

  • You cannot cherry-pick individual hooks
  • To use the full hooks system, you must run install.ps1 --profile full (complete installation)
  • Only simple hooks like block-no-verify work standalone

Implication: If you want selective skill cherry-picking without the full installation overhead, focus on skills and commands first.

For a tech stack focused on JavaScript / React / Cloudflare / PowerShell, here's what to cherry-pick:

Priority 1: Skills → ~/.claude/skills/

SkillPurposeUse Case
security-reviewAuth endpoint analysis, API key validationpcs-platform phase 2a–2c security audits
mcp-server-patternsMCP protocol implementation patternsBuilding phase 2b MCP workers
api-designREST API conventions and best practicespcs-platform API endpoint design
frontend-patternsReact and Docusaurus component patternsjaxvn-blog UI development
deployment-patternsCloudflare Workers and Pages deploymentAutomating pcs.io.vn deployments
database-migrationsD1 SQLite migration strategiespcs-data schema versioning
git-workflowBranch strategy and commit conventionsMaintaining jaxvn-blog + pcs-platform repos

Priority 2: Commands → ~/.claude/commands/

CommandPurpose
code-review.mdPre-push code review checklist
security-scan.mdAuthentication code security audit
build-fix.mdDocusaurus build error troubleshooting
plan.mdComplex feature planning and design docs

Priority 3: Agents → ~/.claude/agents/

AgentPurpose
code-reviewer.mdDelegate detailed code reviews
security-reviewer.mdDedicated security threat modeling

Priority 4: Rules → Merge into CLAUDE.md

  • rules/common/security.md — standard security checklist for all code
  • rules/common/coding-style.md — immutability and file organization patterns

Installation Command (Selective)

# Copy skills
cp -r Research/Claudeskill/skills/security-review ~/.claude/skills/
cp -r Research/Claudeskill/skills/mcp-server-patterns ~/.claude/skills/
cp -r Research/Claudeskill/skills/api-design ~/.claude/skills/
cp -r Research/Claudeskill/skills/frontend-patterns ~/.claude/skills/
cp -r Research/Claudeskill/skills/deployment-patterns ~/.claude/skills/
cp -r Research/Claudeskill/skills/database-migrations ~/.claude/skills/
cp -r Research/Claudeskill/skills/git-workflow ~/.claude/skills/

# Copy commands
cp Research/Claudeskill/commands/code-review.md ~/.claude/commands/
cp Research/Claudeskill/commands/security-scan.md ~/.claude/commands/
cp Research/Claudeskill/commands/build-fix.md ~/.claude/commands/
cp Research/Claudeskill/commands/plan.md ~/.claude/commands/

# Copy agents
cp -r Research/Claudeskill/agents/code-reviewer ~/.claude/agents/
cp -r Research/Claudeskill/agents/security-reviewer ~/.claude/agents/

# Copy and merge rules
cp Research/Claudeskill/rules/common/security.md ~/.claude/docs/SECURITY.md
cp Research/Claudeskill/rules/common/coding-style.md ~/.claude/docs/STYLE.md

What to Skip

Language-specific skills (if not in your stack):

  • All Python, Java, Kotlin, Swift, Android skills
  • Rust, PHP, Perl modules
  • Language-specific build and test commands

Complex orchestration (too heavy for solo operators):

  • Full hooks system (requires Node.js runtime + complete installation)
  • Agent harness orchestration (intended for team workflows)

Key Learnings

  1. Hooks require full installation — cherry-pick skills instead
  2. Security and API design should be top priority for pcs-platform work
  3. Docusaurus patterns are essential for jaxvn-blog maintenance
  4. Git workflow rules should be merged into project CLAUDE.md
  • [[guide-2026-04-04-cloudflare-auth-worker]] — pcs-platform Phase 2a implementation
  • [[2026-04-03]] — daily notes from initial pcs-auth Worker build
  • [[note-2026-04-04-everything-claude-code]] — vault original (Vietnamese)

Status: ✅ Published 2026-04-12 | Integration planned for Phase 2g

Greetings!

· One min read
Jax VN
Co-creator of

Congratulations, you have made your first post!

Feel free to play around and edit this post as much as you like.