Everything Claude Code ZH
everything-claude-code 中文翻译项目:完整的 Claude Code 配置集合(agents, skills, hooks, commands, rules, MCPs)。源自 Anthropic 黑客松获胜者的实战配置,助力中文工程师高效理解与使用 Claude Code。
What is Everything Claude Code ZH?
Everything Claude Code ZH is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to everything-claude-code 中文翻译项目:完整的 claude code 配置集合(agents, skills, hooks, commands, rules, mcps)。源自 anthropic 黑客松获胜者的实战配置,助力中文工程师高效理解与使用 claude code。
everything-claude-code 中文翻译项目:完整的 Claude Code 配置集合(agents, skills, hooks, commands, rules, MCPs)。源自 Anthropic 黑客松获胜者的实战配置,助力中文工程师高效理解与使用 Claude Code。
This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- everything-claude-code 中文翻译项目:完整的 Claude Code 配置集合(agents, s
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx everything-claude-code-zhConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use Everything Claude Code ZH
Everything Claude Code ZH is a Chinese-language translation and adaptation of the everything-claude-code framework — a battle-tested Claude Code configuration collection born from Anthropic hackathon winners. It includes 13 specialized agents, 50+ workflow skills, 33 slash commands, 29 coding-standards rules, and 8 hook event types, all translated and documented in Simplified Chinese so Chinese-speaking engineers can fully understand and customize each component. The project helps developers unlock the full productivity potential of Claude Code by providing production-proven configurations for agents, skills, hooks, and MCP connections.
Prerequisites
- Claude Code CLI installed: npm install -g @anthropic-ai/claude-code
- Anthropic API key (ANTHROPIC_API_KEY) or Claude subscription for Claude Code
- Node.js 18+ for running Claude Code and JavaScript-based hooks
- Git to clone the repository and copy configuration files
Clone the repository
Clone the everything-claude-code-zh repository to your local machine to get all agents, skills, rules, hooks, and MCP configurations.
git clone https://github.com/xu-xiang/everything-claude-code-zh.git
cd everything-claude-code-zhInstall coding-standards rules
Copy the language-agnostic common rules and any language-specific rules (TypeScript, Python, Go) to your global Claude rules directory.
mkdir -p ~/.claude/rules
cp -r rules/common/* ~/.claude/rules/
# Choose your stack — e.g. for TypeScript:
cp -r rules/typescript/* ~/.claude/rules/Copy agents and skills
Deploy the 13 specialized subagents and 50+ skill definitions to your Claude Code configuration directory so they are available in every project.
mkdir -p ~/.claude/agents ~/.claude/skills
cp -r agents/* ~/.claude/agents/
cp -r skills/* ~/.claude/skills/Set up hooks for automation
Copy hook configurations that enable automatic memory persistence across sessions, strategic context compression, and pattern extraction from conversations.
mkdir -p ~/.claude/hooks
cp -r hooks/* ~/.claude/hooks/Configure MCP servers
Review the bundled mcp-configs/mcp-servers.json file, choose the MCP servers relevant to your workflow, and merge them into your Claude Code settings, replacing placeholder API keys with real credentials.
cat mcp-configs/mcp-servers.jsonStart using slash commands
Launch Claude Code in your project directory and use the included slash commands to kick off structured workflows. Use /plan for implementation planning, /tdd for test-driven development, and /code-review for quality checks.
cd /path/to/your-project
claude
# Inside Claude Code:
# /plan implement a REST API for user authentication
# /code-review
# /tdd write tests for the UserService classEverything Claude Code ZH Examples
Client configuration
Example Claude Code settings showing how to enable a MCP server from the bundled configurations after replacing the placeholder API key.
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_your_token_here"
}
}
}
}Prompts to try
Slash commands and prompts to use inside Claude Code once the framework is installed.
- "/plan 为用户认证模块设计 REST API"
- "/tdd 为 UserService 类编写单元测试"
- "/code-review 审查当前修改的代码质量"
- "/build-fix 修复当前的构建错误"
- "使用安全审查 agent 分析这段代码的潜在漏洞"Troubleshooting Everything Claude Code ZH
Agents or skills are not recognized by Claude Code after copying
Ensure files were copied to the correct directories (~/.claude/agents/ and ~/.claude/skills/) and that file names use the expected .md or .json extensions. Restart Claude Code after copying.
MCP servers fail to start after adding the bundled config
Each MCP server entry in mcp-configs/mcp-servers.json contains placeholder API keys like YOUR_API_KEY. Replace all placeholders with real credentials before merging into your Claude settings. Disable MCP servers you don't need to preserve context window space.
Hooks do not trigger between sessions
Hooks require Claude Code to have write access to ~/.claude/hooks/. Check permissions and confirm the hook files are executable if they are shell scripts. Review Claude Code hook documentation for supported event types.
Frequently Asked Questions about Everything Claude Code ZH
What is Everything Claude Code ZH?
Everything Claude Code ZH is a Model Context Protocol (MCP) server that everything-claude-code 中文翻译项目:完整的 claude code 配置集合(agents, skills, hooks, commands, rules, mcps)。源自 anthropic 黑客松获胜者的实战配置,助力中文工程师高效理解与使用 claude code。 It connects AI assistants to external tools and data sources through a standardized interface.
How do I install Everything Claude Code ZH?
Follow the installation instructions on the Everything Claude Code ZH GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with Everything Claude Code ZH?
Everything Claude Code ZH works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is Everything Claude Code ZH free to use?
Yes, Everything Claude Code ZH is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
Everything Claude Code ZH Alternatives — Similar Developer Tools Servers
Looking for alternatives to Everything Claude Code ZH? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Browse More Developer Tools MCP Servers
Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up Everything Claude Code ZH in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use Everything Claude Code ZH?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.