Everything Claude Code ZH

v1.0.0Developer Toolsstable

everything-claude-code 中文翻译项目:完整的 Claude Code 配置集合(agents, skills, hooks, commands, rules, MCPs)。源自 Anthropic 黑客松获胜者的实战配置,助力中文工程师高效理解与使用 Claude Code。

ai-agentsanthropicclaudeclaude-codedeveloper-tools
Share:
638
Stars
0
Downloads
0
Weekly
0/5

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

Chinese Claude Code configuration guide
Agents, skills, and hooks setup
Anthropic hackathon winner resources
xu-xiang

Maintainer

LicenseMIT
Languagejavascript
Versionv1.0.0
UpdatedMay 22, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx everything-claude-code-zh

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

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
1

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-zh
2

Install 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/
3

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/
4

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/
5

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.json
6

Start 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 class

Everything 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.

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.

Quick Config Preview

{ "mcpServers": { "everything-claude-code-zh": { "command": "npx", "args": ["-y", "everything-claude-code-zh"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

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.

33,000+ ServersFree & Open SourceStep-by-Step Guides