🧭 Decision Guide
Why trending now: 无法从材料判断
Try it if you
-
你正在用 Claude Code 开发 JavaScript 或 Shell 项目,并需要现成的 agents、commands 与 rules。README 的“What's Inside”列出 agents、commands、rules,项目技术栈为 JavaScript、Shell。
-
你的团队需要 Windows、macOS、Linux 统一运行 hooks。README 的“Cross-Platform Support”说明插件支持三种操作系统,hooks 和 scripts 已用 Node.js 重写。
-
你希望加入 TDD、Playwright E2E、memory persistence 或 verification loop。README 的 skills、agents 和 hooks 目录分别列出 tdd-workflow、e2e-runner、memory-persistence 与 verification-loop。
Skip it if you
-
你的开发环境不使用 Claude Code,或不需要 Claude Code plugin、slash commands 和 hooks。README 明确称该仓库是“Claude Code plugin”,安装方式也是 Claude Code plugin 或手动复制到 ~/.claude。
-
项目要求已明确的开源许可或商用授权条款。项目基础信息中的许可协议为“Not specified”,README 的 License 章节内容也未提供。
-
你需要正式版本或稳定发布渠道来锁定依赖。项目元数据显示版本发布为 0 个,最新版本为“No releases”。
Requirements
- 需要 Claude Code,因为 README 将项目定义为“Claude Code plugin”。
- 可使用 Windows、macOS 或 Linux;README 的“Cross-Platform Support”明确支持三者。
- 运行测试需要 Node.js 命令,例如 node tests/run-all.js。
- 使用 MCP 配置时,需要把 mcp-configs/mcp-servers.json 中的 YOUR_*_HERE 替换为真实 API keys。
First step (verbatim from README)
/plugin marketplace add affaan-m/everything-claude-code
Watch out
-
直接启用 MCP 前要处理 YOUR_*_HERE 占位符,否则配置缺少真实 API keys。README 的“Configure MCPs”明确要求替换 YOUR_*_HERE。
-
只看仓库代码可能无法获得完整方法说明,Token optimization 等内容在 Longform Guide。README 写明“This repo is the raw code only”,并把 Token Optimization、Memory Persistence 等内容放在 Guides。
-
手动安装会把 agents、rules、commands、skills 复制到 ~/.claude 对应目录。README 的“Manual Installation”给出了四组 cp 命令和目标路径。
Not stated in the README
- README 未说明 Claude Code 的最低版本或兼容版本。
- README 未说明 JavaScript、Shell、Node.js 的最低版本要求。
- README 未给出各 agent、hook、MCP 配置的运行权限边界。
- README 未说明未指定许可协议下的再分发和商用条件。
- README 未提供正式 release、变更日志或版本锁定策略。
💡 Deep Analysis
6
No
My enterprise requires formal releases, a clear license, and auditable dependency provenance; with release_count at 0 and the license marked Unknown, can I directly include this project in our internal platform?
No, not directly for a critical enterprise platform, because the available project data does not satisfy your hard requirements for versioning and license auditability.
- The project data lists
licenseasUnknown, leaveslatest_releaseempty, and reportsrelease_countas 0. Therefore, no formal adoption version or redistribution terms can be confirmed from the available metadata. - Although the README includes
plugin.json,marketplace.json, and a test directory, it does not show a formal release process or stability policy. - The installation examples use
affaan-m/everything-claude-code, while the project identifier isWorldFlowAI/everything-claude-code. That source mismatch complicates supply-chain auditing and version pinning.
It may be evaluated as source code in a controlled environment, but it should not become the sole production safeguard until the license, repository origin, commit pinning, and change-approval process are verified.
- Project data: `license` is `Unknown`, `latest_release` is empty, and `release_count` is `0`
- README, “Installation”: “affaan-m/everything-claude-code”
- Project data: project name is `WorldFlowAI/everything-claude-code`
- README, “What’s Inside”: includes `plugin.json`, `marketplace.json`, and `tests/`
Yes
I need to use Claude Code on Windows, macOS, and Linux, while standardizing planning, code review, build fixing, and testing; is this toolkit suitable for me?
Yes, it fits because it is delivered as a Claude Code plugin with cross-platform Node.js scripts and includes the workflow stages you listed.
- The README explicitly states “fully supports Windows, macOS, and Linux” and says that hooks and scripts were rewritten in Node.js.
- The
agentsdirectory includes planner, code-reviewer, build-error-resolver, and e2e-runner agents;commandsincludes/plan,/code-review,/build-fix,/e2e, and/verify. - You can install the plugin as a whole or copy only selected agents, commands, rules, or skills, so adoption can remain modular.
It still depends on Claude Code’s plugin, command, and hook capabilities rather than replacing the model itself. The compatible Node.js version, shell behavior, permissions, and Claude Code version are not specified.
- README, “Cross-Platform Support”: “fully supports Windows, macOS, and Linux”
- README, “What’s Inside”: agents, commands, hooks, and scripts directories
- README, “Installation”: “install it directly or copy components manually”
/plugin marketplace add affaan-m/everything-claude-code
Yes
We mainly build React and Next.js projects and require TDD with at least 80% test coverage; can I import only the relevant rules, skills, and commands without enabling the entire plugin?
Yes, it is suitable, especially for a React/Next.js team that wants selective reuse of engineering rules, because the repository supports manual installation and separates rules, skills, and commands.
skills/frontend-patternsexplicitly targets React and Next.js, whileskills/tdd-workflowdefines RED, GREEN, IMPROVE, and verification steps.rules/testing.mdspecifies TDD and an 80% coverage requirement; the commands include/tdd,/verify, and/e2e.- The manual installation example copies
agents,rules,commands, andskillsseparately, so enabling every hook or MCP server is not required.
However, the 80% requirement is a workflow rule, not a complete test configuration or proof of meaningful business coverage. The README does not pin React/Next.js versions or prescribe the existing test command.
- README, “What’s Inside”: “frontend-patterns/ # React, Next.js patterns”
- README, “Key Concepts / Skills”: “Write failing tests (RED)… Verify 80%+ coverage”
- README, “What’s Inside”: “testing.md # TDD, 80% coverage requirement”
- README, “Manual Installation”: separate copies for agents, rules, commands, and skills
git clone https://github.com/affaan-m/everything-claude-code.git
It depends
I want to split a complex feature among planner, architect, tdd-guide, security-reviewer, and e2e-runner, using Git worktrees for parallel execution; does this project support that collaboration model?
It depends. The project offers clear role separation and verification entry points, but it does not automatically solve concurrency conflicts or cost boundaries.
- The
agentsdirectory includes planner, architect, tdd-guide, security-reviewer, and e2e-runner, covering planning, architecture, TDD, security review, and Playwright E2E. rules/agents.mddefines when to delegate to subagents, while/plan,/tdd,/e2e,/code-review, and/verifysupport a staged workflow.- The project insights explicitly identify subagents, Git worktrees, and parallel tasks as ways to improve complex delivery, while also noting higher compute cost, context-management complexity, and merge-conflict risk.
It therefore suits advanced users with disciplined Git practices, not teams that let multiple agents modify the same files without boundaries. The README does not provide concrete worktree creation, agent scheduling, or conflict-resolution commands.
- README, “What’s Inside / agents”: planner, architect, tdd-guide, security-reviewer, and e2e-runner
- README, “What’s Inside / rules”: “agents.md # When to delegate to subagents”
- README, “commands”: `/plan`, `/tdd`, `/e2e`, `/code-review`, and `/verify`
- Project insights, “usage_limitations”: parallelization and Git worktrees increase compute cost, context complexity, and merge-conflict risk
/plugin install everything-claude-code@everything-claude-code
It depends
I want to connect GitHub, Supabase, Vercel, and Railway to Claude Code, but must restrict API-key permissions and keep credentials out of the repository; can I adopt this project’s MCP configuration directly?
It depends. The project provides MCP templates for the target services, but they should not be treated as production-safe configurations without further review.
mcp-configs/mcp-servers.jsonlists GitHub, Supabase, Vercel, Railway, and other services, making it a useful integration starting point.- The manual installation section says to copy selected servers into
~/.claude.jsonand explicitly requires replacingYOUR_*_HEREplaceholders. - The repository also provides
security.md,security-reviewer, and/code-review, which can incorporate security checks into the workflow.
The decisive information is missing: exact permissions, credential storage, network boundaries, audit behavior, and third-party API versions are not documented in the README. Enabling every service would increase credential exposure and external write-operation risk.
- README, “What’s Inside”: “mcp-servers.json # GitHub, Supabase, Vercel, Railway, etc.”
- README, “Configure MCPs”: “Replace YOUR_*_HERE placeholders with your actual API keys.”
- README, “What’s Inside”: “security.md # Mandatory security checks”
It depends
I often run long Claude Code sessions and need both session-state persistence and context recovery after compaction; can this project meet those memory and context-management constraints?
It depends. The project does provide lifecycle hooks and compaction assistance, but the README does not prove that recovery will preserve every important part of a long-session context.
session-start.jsloads context at session start,session-end.jssaves state, andpre-compact.jssaves state before compaction.suggest-compact.jsprovides strategic compaction suggestions, whileevaluate-session.jsextracts patterns from sessions; the repository also listsmemory-persistenceandstrategic-compactskills./checkpoint,/learn, and/verifyexpose state saving, pattern extraction, and verification as callable commands.
The README does not specify which fields are saved, where they are stored, retention duration, sensitive-data filtering, or recovery-failure behavior. For confidential code, those boundaries must be established first.
- README, “What’s Inside / scripts”: “session-start.js # Load context on session start”
- README, “What’s Inside / scripts”: “session-end.js # Save state” and “pre-compact.js # Pre-compaction state saving”
- README, “What’s Inside / hooks”: “memory-persistence” and “strategic-compact”
- README, “commands”: `/checkpoint`, `/learn`, and `/verify`
node tests/run-all.js
✨ Highlights
-
Includes agents, skills, commands, rules, and hooks
-
Node.js-rewritten hooks support Windows, macOS, and Linux
-
Integrates memory-persistence and verification-loop
-
Includes Playwright E2E and an 80% coverage rule
🔧 Engineering
-
Run development workflows with /plan, /tdd, and /code-review
-
session-start.js and session-end.js manage session memory
-
mcp-servers.json provides GitHub, Supabase, and Vercel configurations
⚠️ Risks
-
MCP configs contain YOUR_*_HERE and require real API keys
-
The license is not specified, leaving commercial terms unclear
-
The repository has no releases and only 10 recent commits
-
The README says it is raw code only, with full explanations in two Guides
👥 For who?
-
Developers building JavaScript products with Claude Code
-
Frontend teams needing React and Next.js workflow templates
-
Teams introducing TDD, Playwright E2E, and code review