[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-94455":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":9,"totalLinesOfCode":9,"stars":12,"forks":13,"watchers":14,"openIssues":14,"contributorsCount":9,"subscribersCount":14,"size":14,"stars1d":14,"stars7d":14,"stars30d":14,"stars90d":14,"forks30d":14,"starsTrendScore":14,"compositeScore":15,"rankGlobal":9,"rankLanguage":9,"license":9,"archived":16,"fork":16,"defaultBranch":17,"hasWiki":16,"hasPages":16,"topics":9,"createdAt":9,"pushedAt":9,"updatedAt":18,"readmeContent":19,"aiSummary":20,"trendingCount":14,"starSnapshotCount":14,"syncStatus":21,"lastSyncTime":9,"discoverSource":22},94455,"everything-claude-code","WorldFlowAI\u002Feverything-claude-code","WorldFlowAI","Claude Code toolkit - agents, commands, skills, rules, and hooks for productive AI-assisted development",null,"https:\u002F\u002Fgithub.com\u002FWorldFlowAI\u002Feverything-claude-code","JavaScript",1055,199,0,51.9,false,"main","2026-08-24 04:01:22","# Everything Claude Code\n\n[![Stars](https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Fstars\u002Faffaan-m\u002Feverything-claude-code?style=flat)](https:\u002F\u002Fgithub.com\u002Faffaan-m\u002Feverything-claude-code\u002Fstargazers)\n[![License](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Flicense-MIT-blue.svg)](LICENSE)\n![Shell](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002F-Shell-4EAA25?logo=gnu-bash&logoColor=white)\n![TypeScript](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002F-TypeScript-3178C6?logo=typescript&logoColor=white)\n![Markdown](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002F-Markdown-000000?logo=markdown&logoColor=white)\n\n**The complete collection of Claude Code configs from an Anthropic hackathon winner.**\n\nProduction-ready agents, skills, hooks, commands, rules, and MCP configurations evolved over 10+ months of intensive daily use building real products.\n\n---\n\n## The Guides\n\nThis repo is the raw code only. The guides explain everything.\n\n\u003Ctable>\n\u003Ctr>\n\u003Ctd width=\"50%\">\n\u003Ca href=\"https:\u002F\u002Fx.com\u002Faffaanmustafa\u002Fstatus\u002F2012378465664745795\">\n\u003Cimg src=\"https:\u002F\u002Fgithub.com\u002Fuser-attachments\u002Fassets\u002F1a471488-59cc-425b-8345-5245c7efbcef\" alt=\"The Shorthand Guide to Everything Claude Code\" \u002F>\n\u003C\u002Fa>\n\u003C\u002Ftd>\n\u003Ctd width=\"50%\">\n\u003Ca href=\"https:\u002F\u002Fx.com\u002Faffaanmustafa\u002Fstatus\u002F2014040193557471352\">\n\u003Cimg src=\"https:\u002F\u002Fgithub.com\u002Fuser-attachments\u002Fassets\u002Fc9ca43bc-b149-427f-b551-af6840c368f0\" alt=\"The Longform Guide to Everything Claude Code\" \u002F>\n\u003C\u002Fa>\n\u003C\u002Ftd>\n\u003C\u002Ftr>\n\u003Ctr>\n\u003Ctd align=\"center\">\u003Cb>Shorthand Guide\u003C\u002Fb>\u003Cbr\u002F>Setup, foundations, philosophy. \u003Cb>Read this first.\u003C\u002Fb>\u003C\u002Ftd>\n\u003Ctd align=\"center\">\u003Cb>Longform Guide\u003C\u002Fb>\u003Cbr\u002F>Token optimization, memory persistence, evals, parallelization.\u003C\u002Ftd>\n\u003C\u002Ftr>\n\u003C\u002Ftable>\n\n| Topic | What You'll Learn |\n|-------|-------------------|\n| Token Optimization | Model selection, system prompt slimming, background processes |\n| Memory Persistence | Hooks that save\u002Fload context across sessions automatically |\n| Continuous Learning | Auto-extract patterns from sessions into reusable skills |\n| Verification Loops | Checkpoint vs continuous evals, grader types, pass@k metrics |\n| Parallelization | Git worktrees, cascade method, when to scale instances |\n| Subagent Orchestration | The context problem, iterative retrieval pattern |\n\n---\n\n## Cross-Platform Support\n\nThis plugin now fully supports **Windows, macOS, and Linux**. All hooks and scripts have been rewritten in Node.js for maximum compatibility.\n\n### Package Manager Detection\n\nThe plugin automatically detects your preferred package manager (npm, pnpm, yarn, or bun) with the following priority:\n\n1. **Environment variable**: `CLAUDE_PACKAGE_MANAGER`\n2. **Project config**: `.claude\u002Fpackage-manager.json`\n3. **package.json**: `packageManager` field\n4. **Lock file**: Detection from package-lock.json, yarn.lock, pnpm-lock.yaml, or bun.lockb\n5. **Global config**: `~\u002F.claude\u002Fpackage-manager.json`\n6. **Fallback**: First available package manager\n\nTo set your preferred package manager:\n\n```bash\n# Via environment variable\nexport CLAUDE_PACKAGE_MANAGER=pnpm\n\n# Via global config\nnode scripts\u002Fsetup-package-manager.js --global pnpm\n\n# Via project config\nnode scripts\u002Fsetup-package-manager.js --project bun\n\n# Detect current setting\nnode scripts\u002Fsetup-package-manager.js --detect\n```\n\nOr use the `\u002Fsetup-pm` command in Claude Code.\n\n---\n\n## What's Inside\n\nThis repo is a **Claude Code plugin** - install it directly or copy components manually.\n\n```\neverything-claude-code\u002F\n|-- .claude-plugin\u002F   # Plugin and marketplace manifests\n|   |-- plugin.json         # Plugin metadata and component paths\n|   |-- marketplace.json    # Marketplace catalog for \u002Fplugin marketplace add\n|\n|-- agents\u002F           # Specialized subagents for delegation\n|   |-- planner.md           # Feature implementation planning\n|   |-- architect.md         # System design decisions\n|   |-- tdd-guide.md         # Test-driven development\n|   |-- code-reviewer.md     # Quality and security review\n|   |-- security-reviewer.md # Vulnerability analysis\n|   |-- build-error-resolver.md\n|   |-- e2e-runner.md        # Playwright E2E testing\n|   |-- refactor-cleaner.md  # Dead code cleanup\n|   |-- doc-updater.md       # Documentation sync\n|\n|-- skills\u002F           # Workflow definitions and domain knowledge\n|   |-- coding-standards\u002F           # Language best practices\n|   |-- backend-patterns\u002F           # API, database, caching patterns\n|   |-- frontend-patterns\u002F          # React, Next.js patterns\n|   |-- continuous-learning\u002F        # Auto-extract patterns from sessions (Longform Guide)\n|   |-- strategic-compact\u002F          # Manual compaction suggestions (Longform Guide)\n|   |-- tdd-workflow\u002F               # TDD methodology\n|   |-- security-review\u002F            # Security checklist\n|   |-- eval-harness\u002F               # Verification loop evaluation (Longform Guide)\n|   |-- verification-loop\u002F          # Continuous verification (Longform Guide)\n|\n|-- commands\u002F         # Slash commands for quick execution\n|   |-- tdd.md              # \u002Ftdd - Test-driven development\n|   |-- plan.md             # \u002Fplan - Implementation planning\n|   |-- e2e.md              # \u002Fe2e - E2E test generation\n|   |-- code-review.md      # \u002Fcode-review - Quality review\n|   |-- build-fix.md        # \u002Fbuild-fix - Fix build errors\n|   |-- refactor-clean.md   # \u002Frefactor-clean - Dead code removal\n|   |-- learn.md            # \u002Flearn - Extract patterns mid-session (Longform Guide)\n|   |-- checkpoint.md       # \u002Fcheckpoint - Save verification state (Longform Guide)\n|   |-- verify.md           # \u002Fverify - Run verification loop (Longform Guide)\n|   |-- setup-pm.md         # \u002Fsetup-pm - Configure package manager (NEW)\n|\n|-- rules\u002F            # Always-follow guidelines (copy to ~\u002F.claude\u002Frules\u002F)\n|   |-- security.md         # Mandatory security checks\n|   |-- coding-style.md     # Immutability, file organization\n|   |-- testing.md          # TDD, 80% coverage requirement\n|   |-- git-workflow.md     # Commit format, PR process\n|   |-- agents.md           # When to delegate to subagents\n|   |-- performance.md      # Model selection, context management\n|\n|-- hooks\u002F            # Trigger-based automations\n|   |-- hooks.json                # All hooks config (PreToolUse, PostToolUse, Stop, etc.)\n|   |-- memory-persistence\u002F       # Session lifecycle hooks (Longform Guide)\n|   |-- strategic-compact\u002F        # Compaction suggestions (Longform Guide)\n|\n|-- scripts\u002F          # Cross-platform Node.js scripts (NEW)\n|   |-- lib\u002F                     # Shared utilities\n|   |   |-- utils.js             # Cross-platform file\u002Fpath\u002Fsystem utilities\n|   |   |-- package-manager.js   # Package manager detection and selection\n|   |-- hooks\u002F                   # Hook implementations\n|   |   |-- session-start.js     # Load context on session start\n|   |   |-- session-end.js       # Save state on session end\n|   |   |-- pre-compact.js       # Pre-compaction state saving\n|   |   |-- suggest-compact.js   # Strategic compaction suggestions\n|   |   |-- evaluate-session.js  # Extract patterns from sessions\n|   |-- setup-package-manager.js # Interactive PM setup\n|\n|-- tests\u002F            # Test suite (NEW)\n|   |-- lib\u002F                     # Library tests\n|   |-- hooks\u002F                   # Hook tests\n|   |-- run-all.js               # Run all tests\n|\n|-- contexts\u002F         # Dynamic system prompt injection contexts (Longform Guide)\n|   |-- dev.md              # Development mode context\n|   |-- review.md           # Code review mode context\n|   |-- research.md         # Research\u002Fexploration mode context\n|\n|-- examples\u002F         # Example configurations and sessions\n|   |-- CLAUDE.md           # Example project-level config\n|   |-- user-CLAUDE.md      # Example user-level config\n|\n|-- mcp-configs\u002F      # MCP server configurations\n|   |-- mcp-servers.json    # GitHub, Supabase, Vercel, Railway, etc.\n|\n|-- marketplace.json  # Self-hosted marketplace config (for \u002Fplugin marketplace add)\n```\n\n---\n\n## Installation\n\n### Option 1: Install as Plugin (Recommended)\n\nThe easiest way to use this repo - install as a Claude Code plugin:\n\n```bash\n# Add this repo as a marketplace\n\u002Fplugin marketplace add affaan-m\u002Feverything-claude-code\n\n# Install the plugin\n\u002Fplugin install everything-claude-code@everything-claude-code\n```\n\nOr add directly to your `~\u002F.claude\u002Fsettings.json`:\n\n```json\n{\n  \"extraKnownMarketplaces\": {\n    \"everything-claude-code\": {\n      \"source\": {\n        \"source\": \"github\",\n        \"repo\": \"affaan-m\u002Feverything-claude-code\"\n      }\n    }\n  },\n  \"enabledPlugins\": {\n    \"everything-claude-code@everything-claude-code\": true\n  }\n}\n```\n\nThis gives you instant access to all commands, agents, skills, and hooks.\n\n---\n\n### Option 2: Manual Installation\n\nIf you prefer manual control over what's installed:\n\n```bash\n# Clone the repo\ngit clone https:\u002F\u002Fgithub.com\u002Faffaan-m\u002Feverything-claude-code.git\n\n# Copy agents to your Claude config\ncp everything-claude-code\u002Fagents\u002F*.md ~\u002F.claude\u002Fagents\u002F\n\n# Copy rules\ncp everything-claude-code\u002Frules\u002F*.md ~\u002F.claude\u002Frules\u002F\n\n# Copy commands\ncp everything-claude-code\u002Fcommands\u002F*.md ~\u002F.claude\u002Fcommands\u002F\n\n# Copy skills\ncp -r everything-claude-code\u002Fskills\u002F* ~\u002F.claude\u002Fskills\u002F\n```\n\n#### Add hooks to settings.json\n\nCopy the hooks from `hooks\u002Fhooks.json` to your `~\u002F.claude\u002Fsettings.json`.\n\n#### Configure MCPs\n\nCopy desired MCP servers from `mcp-configs\u002Fmcp-servers.json` to your `~\u002F.claude.json`.\n\n**Important:** Replace `YOUR_*_HERE` placeholders with your actual API keys.\n\n---\n\n## Key Concepts\n\n### Agents\n\nSubagents handle delegated tasks with limited scope. Example:\n\n```markdown\n---\nname: code-reviewer\ndescription: Reviews code for quality, security, and maintainability\ntools: Read, Grep, Glob, Bash\nmodel: opus\n---\n\nYou are a senior code reviewer...\n```\n\n### Skills\n\nSkills are workflow definitions invoked by commands or agents:\n\n```markdown\n# TDD Workflow\n\n1. Define interfaces first\n2. Write failing tests (RED)\n3. Implement minimal code (GREEN)\n4. Refactor (IMPROVE)\n5. Verify 80%+ coverage\n```\n\n### Hooks\n\nHooks fire on tool events. Example - warn about console.log:\n\n```json\n{\n  \"matcher\": \"tool == \\\"Edit\\\" && tool_input.file_path matches \\\"\\\\\\\\.(ts|tsx|js|jsx)$\\\"\",\n  \"hooks\": [{\n    \"type\": \"command\",\n    \"command\": \"#!\u002Fbin\u002Fbash\\ngrep -n 'console\\\\.log' \\\"$file_path\\\" && echo '[Hook] Remove console.log' >&2\"\n  }]\n}\n```\n\n### Rules\n\nRules are always-follow guidelines. Keep them modular:\n\n```\n~\u002F.claude\u002Frules\u002F\n  security.md      # No hardcoded secrets\n  coding-style.md  # Immutability, file limits\n  testing.md       # TDD, coverage requirements\n```\n\n---\n\n## Running Tests\n\nThe plugin includes a comprehensive test suite:\n\n```bash\n# Run all tests\nnode tests\u002Frun-all.js\n\n# Run individual test files\nnode tests\u002Flib\u002Futils.test.js\nnode tests\u002Flib\u002Fpackage-manager.test.js\nnode tests\u002Fhooks\u002Fhooks.test.js\n```\n\n---\n\n## Contributing\n\n**Contributions are welcome and encouraged.**\n\nThis repo is meant to be a community resource. If you have:\n- Useful agents or skills\n- Clever hooks\n- Better MCP configurations\n- Improved rules\n\nPlease contribute! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.\n\n### Ideas for Contributions\n\n- Language-specific skills (Python, Go, Rust patterns)\n- Framework-specific configs (Django, Rails, Laravel)\n- DevOps agents (Kubernetes, Terraform, AWS)\n- Testing strategies (different frameworks)\n- Domain-specific knowledge (ML, data engineering, mobile)\n\n---\n\n## Background\n\nI've been using Claude Code since the experimental rollout. Won the Anthropic x Forum Ventures hackathon in Sep 2025 building [zenith.chat](https:\u002F\u002Fzenith.chat) with [@DRodriguezFX](https:\u002F\u002Fx.com\u002FDRodriguezFX) - entirely using Claude Code.\n\nThese configs are battle-tested across multiple production applications.\n\n---\n\n## Important Notes\n\n### Context Window Management\n\n**Critical:** Don't enable all MCPs at once. Your 200k context window can shrink to 70k with too many tools enabled.\n\nRule of thumb:\n- Have 20-30 MCPs configured\n- Keep under 10 enabled per project\n- Under 80 tools active\n\nUse `disabledMcpServers` in project config to disable unused ones.\n\n### Customization\n\nThese configs work for my workflow. You should:\n1. Start with what resonates\n2. Modify for your stack\n3. Remove what you don't use\n4. Add your own patterns\n\n---\n\n## Star History\n\n[![Star History Chart](https:\u002F\u002Fapi.star-history.com\u002Fsvg?repos=affaan-m\u002Feverything-claude-code&type=Date)](https:\u002F\u002Fstar-history.com\u002F#affaan-m\u002Feverything-claude-code&Date)\n\n---\n\n## Links\n\n- **Shorthand Guide (Start Here):** [The Shorthand Guide to Everything Claude Code](https:\u002F\u002Fx.com\u002Faffaanmustafa\u002Fstatus\u002F2012378465664745795)\n- **Longform Guide (Advanced):** [The Longform Guide to Everything Claude Code](https:\u002F\u002Fx.com\u002Faffaanmustafa\u002Fstatus\u002F2014040193557471352)\n- **Follow:** [@affaanmustafa](https:\u002F\u002Fx.com\u002Faffaanmustafa)\n- **zenith.chat:** [zenith.chat](https:\u002F\u002Fzenith.chat)\n\n---\n\n## License\n\nMIT - Use freely, modify as needed, contribute back if you can.\n\n---\n\n**Star this repo if it helps. Read both guides. Build something great.**\n","Everything Claude Code 是一个面向 Claude 系列模型（特别是 Claude Code）的工程化开发增强工具包，提供可复用的智能体（agents）、命令（commands）、技能（skills）、规则（rules）和钩子（hooks）等配置组件。它基于 TypeScript\u002FNode.js 实现，支持跨平台（Windows\u002FmacOS\u002FLinux），具备自动包管理器识别、上下文持久化、模式自提取、验证循环与子智能体编排等核心能力，强调生产环境可用性与日常开发深度集成。适用于使用 Claude 进行 AI 辅助编程的工程师、技术团队及自动化开发流程建设者。",2,"trending"]