Content
# Claude Code Development Kit
[](https://opensource.org/licenses/MIT)
[](README.md)
[](https://github.com/cfrs2005/claude-init/releases/latest)
[](https://github.com/cfrs2005/claude-init/releases)
[](https://github.com/cfrs2005/claude-init/stargazers)
[](https://github.com/cfrs2005/claude-init/network/members)
[](https://github.com/cfrs2005/claude-init/issues)
[](CONTRIBUTING.md)
[](README.md)
[](https://github.com/anthropics/claude-code)
[](README.md#mcp-服务器支持)
<div align="center">
🚀 **A smart development environment tailored for Chinese developers using Claude Code**
[Quick Start](#-快速开始) • [Features](#-特性) • [User Guide](#-使用指南) • [Feedback](#-使用反馈) • [Changelog](CHANGELOG.md)
---
🚀 **New Zhiyu AI Engine**: Recently integrated **[Zhiyu Big Model (BigModel.cn)](https://www.bigmodel.cn/claude-code?ic=H0RNPV3LNZ)**. Its flagship **GLM-4.5** model boasts coding capabilities comparable to Claude and offers an attractive monthly subscription service, making it an excellent choice for beginners and frequent users. **[Click here to register and receive 20 million free Tokens →](https://www.bigmodel.cn/claude-code?ic=H0RNPV3LNZ)**
</div>
This is a complete Chinese localization version based on the [Claude Code Development Kit](https://github.com/peterkrueck/Claude-Code-Development-Kit), providing a zero-threshold Chinese AI programming experience.
## ✨ Features
### 🎯 Complete Localization in Chinese
- **Chinese AI Instructions** - All AI contexts and prompts are fully localized in Chinese
- **Chinese Documentation System** - A Chinese version of the three-tier documentation architecture
- **Chinese Error Messages** - Friendly error prompts and help in Chinese
- **Chinese Installation Experience** - A fully Chinese experience from installation to configuration
### 🧠 Intelligent Context Management
- **Three-layer Document Architecture** - Hierarchical management of Base Layer / Component Layer / Function Layer
- **Automatic Context Injection** - Sub-agents automatically acquire project context
- **Intelligent Document Routing** - Load appropriate documents based on task complexity
- **Cross-session State Management** - Intelligent task handover and state preservation
### 🔧 Development Tool Integration
- **Hook System** - Localized automated Hook scripts
- **MCP Server Support** - Gemini consulting, Context7 documentation, etc.
- **Security Scanning** - Automatic MCP call security checks
- **Notification System** - System notifications for important events
### 📚 Complete Template Library
- **Project Templates** - Project structure templates for various programming languages
- **Document Templates** - Standardized Chinese document templates
- **Configuration Examples** - Ready-to-use configuration files
- **Skills Extension** - Modular capability extension system
- **Sample Projects** - Complete examples for Python, Node.js, and Web applications
## 🚀 Quick Start
### One-Click Installation
```bash
curl -fsSL https://raw.githubusercontent.com/cfrs2005/claude-init/main/install.sh | bash
```
### Manual Installation
```bash
# Clone the Repository
git clone https://github.com/cfrs2005/claude-init.git
cd claude-init
# Run the Installation Script
```bash
./setup.sh
```
## 📖 User Guide
### 1. Getting Started
After installation, start Claude Code in any project:
```bash
claude
```
Now you can converse with the AI in Chinese, with all context and prompts localized.
### 2. 🎯 MCP Server Features
#### 🧠 Gemini Deep Consultation
**Trigger Method:** Say "Consult Gemini" or "Please analyze with Gemini" to Claude
**Applicable Scenarios:**
- Complex architecture design issues
- Code performance optimization suggestions
- Multi-file code refactoring plans
- In-depth technical problem analysis
**Content to Send:**
- Describe your specific issue
- Attach relevant code files
- Specify what type of advice you are looking for
**What Gemini Can Do:**
- Provide comparisons of multiple solutions
- In-depth code review and optimization suggestions
- Best practices for architecture design
- Experience sharing across technology stacks
#### 📚 Context7 Document Query
**Trigger Method:** Inquire about the latest usage of any open-source library
**Applicable Scenarios:**
- Learning a new framework or library
- Finding the latest API documentation
- Resolving version compatibility issues
**Content to Send:**
- State the library name (e.g., "Latest usage of hooks in React")
- Describe the specific problem you want to solve
**What Context7 Can Do:**
- Retrieve the latest official documentation
- Provide practical code examples
- Explain the latest features and changes
### 3. 💡 Enhanced Features
#### 🎵 Custom Notification Sounds
**Default Path:** `.claude/hooks/sounds/`
**Supported Formats:** `.mp3`, `.wav`, `.aiff`
**Replacement Method:**
```bash
# Replace Task Completion Sound Effect
cp your-sound.mp3 .claude/hooks/sounds/complete.mp3
# Replace Input Prompt Sound Effect
cp your-sound.mp3 .claude/hooks/sounds/input.mp3
```
#### 🔒 Security Scan
**Automatic Function:** Automatically checks for sensitive information before all MCP calls
**Check Items:**
- API keys and tokens
- Passwords and sensitive configurations
- Personally identifiable information (个人身份信息)
- Private code snippets
#### 🤖 Intelligent Context Management
**Automatic Features:** Subtasks automatically acquire project context
**How It Works:**
- Automatically loads project documentation for each new task
- Intelligently selects relevant context information
- Maintains consistency of state between sessions
### 4. 🎯 Claude Code Slash Commands
Built-in Claude Code commands available after installation:
```bash
# 📊 Context Analysis
/full-context # Comprehensive context collection and analysis
# 🔍 Code Quality
/code-review # Multi-expert perspective code review
# 🧠 AI Consultation
/gemini-consult # In-depth conversation consultation with Gemini
# 📝 Document Management
/create-docs # Create AI-optimized document structure
/update-docs # Keep documents in sync with code
# ♻️ Code Maintenance
/refactor # Intelligent Refactoring Code
# 🤝 Session Management
/handoff # Retain context and task status
# 📡 MCP Tools
/mcp-status # Check MCP Server status
```
**Usage:** Enter the slash command directly in Claude Code
**Automatic Feature:** All commands automatically receive project context injection
### 5. 🎯 Skills Modular Capability Expansion
**What are Skills?** Skills are a powerful feature of [Claude Code Cloud Service](https://www.anthropic.com/news/claude-code-on-the-web) that allows you to create reusable capability modules.
**Core Features:**
- 📦 **Automatic Invocation** - Claude intelligently selects the appropriate skill based on demand
- 🎯 **Progressive Loading** - Loads only when needed, saving context space
- 🔧 **Easy to Create** - Simple Markdown + YAML format
- 🌍 **Flexible Deployment** - Global or project-level installation
**Built-in Skills:**
- 📰 **News Skill** - Anthropic news tracking and in-depth analysis
- Automatically fetches the latest official news
- Multi-dimensional analysis (technology, business, industry)
- Structured knowledge organization
**Usage Example:**
```
You: Analyze the latest Anthropic news
Claude: [Automatically uses news skill to fetch and analyze]
```
**Detailed Documentation:** See `templates/.claude/skills/README.md`
**Learn More:** [Introduction to Claude Code Cloud Service](https://www.anthropic.com/news/claude-code-on-the-web)
### 6. 📦 Project Example Repository
Provides a complete project template for quick development startup:
**Available Examples:**
#### 🐍 Python Projects
- FastAPI Web Application Structure
- Data Science Project Configuration
- Machine Learning Workflow
#### 🟢 Node.js Projects
- Express.js API Service
- React Full-Stack Application
- Microservices Architecture
#### 🌐 Web Application
- Frontend and backend separation architecture
- Mobile adaptation
- Deployment and operation configuration
**Quick Start:**
```bash
# Copy Example Project
cp -r examples/python-project my-new-project
cd my-new-project
# Getting Started
claude
```
**Detailed Documentation:** See `examples/README.md`
## 💬 User Feedback
### 🐛 Feedback Issues
**Encountering problems?** [Submit an Issue](https://github.com/cfrs2005/claude-init/issues)
**Common types of issues:**
- Installation failures or errors
- MCP Server not working
- Hook scripts not functioning
- Abnormal display of Chinese characters
- Feature suggestions and improvements
### 💡 Feature Suggestions
**Want a new feature?** [Start a discussion](https://github.com/cfrs2005/claude-init/discussions)
**Suggestions should include:**
- Feature description and use cases
- Expected functionality
- References to similar tools
### 🤝 Contributing
We welcome code submissions, documentation improvements, and translation optimizations!
## 📄 Open Source License
This project is open-sourced under the [MIT License](LICENSE).
## 🙏 Acknowledgments
- [Claude Code Development Kit](https://github.com/peterkrueck/Claude-Code-Development-Kit) - Original project
- [Anthropic](https://www.anthropic.com/) - Claude Code platform
- All contributors and the Chinese development community
---
🎉 **Start your Chinese AI programming journey now!**
```bash
curl -fsSL https://raw.githubusercontent.com/cfrs2005/claude-init/main/install.sh | bash
```
Connection Info
You Might Also Like
MarkItDown MCP
Converting files and office documents to Markdown.
Time
Obtaining current time information and converting time between different...
Filesystem
Model Context Protocol Servers
Sequential Thinking
Offers a structured approach to dynamic and reflective problem-solving,...
Git
Model Context Protocol Servers
Context 7
Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors