diff --git a/README.md b/README.md
index ef8c5ad..7ccf246 100644
--- a/README.md
+++ b/README.md
@@ -1,45 +1,34 @@
+
+> [!NOTE]
+> 本文档由 WeHub 基于上游 README 翻译整理,属于社区翻译,非官方中文文档。
+> [English](./README.en.md) · [原始项目](https://github.com/SuperClaude-Org/SuperClaude_Framework) · [上游 README](https://github.com/SuperClaude-Org/SuperClaude_Framework/blob/HEAD/README.md)
+> 原作者、版权与许可证归属以原始项目及本仓库 LICENSE 文件为准。
+
@@ -66,14 +55,14 @@
-## 📊 **Framework Statistics**
+## 📊 **框架统计**
-| **Commands** | **Agents** | **Modes** | **MCP Servers** |
+| **命令** | **智能体** | **模式** | **MCP服务器** |
|:------------:|:----------:|:---------:|:---------------:|
-| **30** | **20** | **7** | **8** |
-| Slash Commands | Specialized AI | Behavioral | Integrations |
+| **30** | **16** | **7** | **8** |
+| 斜杠命令 | 专业AI | 行为模式 | 集成服务 |
-30 slash commands covering the complete development lifecycle from brainstorming to deployment.
+30个斜杠命令覆盖从头脑风暴到部署的完整开发生命周期。
@@ -81,111 +70,102 @@
-## 🎯 **Overview**
+## 🎯 **概述**
-SuperClaude is a **meta-programming configuration framework** that transforms Claude Code into a structured development platform through behavioral instruction injection and component orchestration. It provides systematic workflow automation with powerful tools and intelligent agents.
+SuperClaude是一个**元编程配置框架**,通过行为指令注入和组件编排,将Claude Code转换为结构化开发平台。它提供系统化的工作流自动化,配备强大的工具和智能代理。
-## Disclaimer
+## 免责声明
-This project is not affiliated with or endorsed by Anthropic.
-Claude Code is a product built and maintained by [Anthropic](https://www.anthropic.com/).
+本项目与Anthropic无关联或认可。
+Claude Code是由[Anthropic](https://www.anthropic.com/)构建和维护的产品。
-## 📖 **For Developers & Contributors**
+## 📖 **开发者与贡献者指南**
-**Essential documentation for working with SuperClaude Framework:**
+**使用SuperClaude框架的必备文档:**
-| Document | Purpose | When to Read |
+| 文档 | 用途 | 何时阅读 |
|----------|---------|--------------|
-| **[PLANNING.md](PLANNING.md)** | Architecture, design principles, absolute rules | Session start, before implementation |
-| **[TASK.md](TASK.md)** | Current tasks, priorities, backlog | Daily, before starting work |
-| **[KNOWLEDGE.md](KNOWLEDGE.md)** | Accumulated insights, best practices, troubleshooting | When encountering issues, learning patterns |
-| **[CONTRIBUTING.md](CONTRIBUTING.md)** | Contribution guidelines, workflow | Before submitting PRs |
-| **[Commands Reference](docs/user-guide/commands.md)** | Complete reference for all 30 `/sc:*` commands with syntax, examples, workflows, and decision guides | Learning SuperClaude, choosing the right command |
+| **[PLANNING.md](PLANNING.md)** | 架构、设计原则、绝对规则 | 会话开始、实施前 |
+| **[TASK.md](TASK.md)** | 当前任务、优先级、待办事项 | 每天、开始工作前 |
+| **[KNOWLEDGE.md](KNOWLEDGE.md)** | 积累的见解、最佳实践、故障排除 | 遇到问题时、学习模式 |
+| **[CONTRIBUTING.md](CONTRIBUTING.md)** | 贡献指南、工作流程 | 提交PR前 |
-> **💡 Pro Tip**: Claude Code reads these files at session start to ensure consistent, high-quality development aligned with project standards.
->
-> **📚 New to SuperClaude?** Start with [Commands Reference](docs/user-guide/commands.md) — it contains visual decision trees, detailed command comparisons, and workflow examples to help you understand which commands to use and when.
+> **💡 专业提示**:Claude Code在会话开始时会读取这些文件,以确保符合项目标准的一致、高质量开发。
-## ⚡ **Quick Installation**
+## ⚡ **快速安装**
-> **IMPORTANT**: The TypeScript plugin system described in older documentation is
-> not yet available (planned for v5.0). For current installation
-> instructions, please follow the steps below for v4.x.
+> **重要**:旧文档中描述的TypeScript插件系统
+> 尚未可用(计划在v5.0中推出)。请按照以下v4.x的
+> 当前安装说明操作。
-### **Current Stable Version (v4.3.0)**
+### **当前稳定版本 (v4.3.0)**
-SuperClaude currently uses slash commands.
+SuperClaude目前使用斜杠命令。
-**Option 1: pipx (Recommended)**
+**选项1:pipx(推荐)**
```bash
-# Install from PyPI
+# 从PyPI安装
pipx install superclaude
-# Install commands (installs all 30 slash commands)
+# 安装命令(安装 /research, /index-repo, /agent, /recommend)
superclaude install
-# Install MCP servers (optional, for enhanced capabilities)
-superclaude mcp --list # List available MCP servers
-superclaude mcp # Interactive installation
-superclaude mcp --servers tavily --servers context7 # Install specific servers
-
-# Verify installation
+# 验证安装
superclaude install --list
superclaude doctor
```
-After installation, restart Claude Code to use 30 commands including:
-- `/sc:research` - Deep web research (enhanced with Tavily MCP)
-- `/sc:brainstorm` - Structured brainstorming
-- `/sc:implement` - Code implementation
-- `/sc:test` - Testing workflows
-- `/sc:pm` - Project management
-- `/sc` - Show all 30 available commands
+安装后,重启Claude Code以使用命令:
+- `/sc:research` - 并行搜索的深度网络研究
+- `/sc:index-repo` - 用于上下文优化的仓库索引
+- `/sc:agent` - 专业AI智能体
+- `/sc:recommend` - 命令推荐
+- `/sc` - 显示所有可用的SuperClaude命令
-**Option 2: Direct Installation from Git**
+**选项2:从Git直接安装**
```bash
-# Clone the repository
+# 克隆仓库
git clone https://github.com/SuperClaude-Org/SuperClaude_Framework.git
cd SuperClaude_Framework
-# Run the installation script
+# 运行安装脚本
./install.sh
```
-### **Coming in v5.0 (In Development)**
+### **v5.0即将推出(开发中)**
-We are actively working on a new TypeScript plugin system (see issue [#419](https://github.com/SuperClaude-Org/SuperClaude_Framework/issues/419) for details). When released, installation will be simplified to:
+我们正在积极开发新的TypeScript插件系统(详见issue [#419](https://github.com/SuperClaude-Org/SuperClaude_Framework/issues/419))。发布后,安装将简化为:
```bash
-# This feature is not yet available
+# 此功能尚未可用
/plugin marketplace add SuperClaude-Org/superclaude-plugin-marketplace
/plugin install superclaude
```
-**Status**: In development. No ETA has been set.
+**状态**:开发中。尚未设定ETA。
-### **Enhanced Performance (Optional MCPs)**
+### **增强性能(可选MCP)**
-For **2-3x faster** execution and **30-50% fewer tokens**, optionally install MCP servers:
+要获得**2-3倍**更快的执行速度和**30-50%**更少的token消耗,可选择安装MCP服务器:
```bash
-# Optional MCP servers for enhanced performance (via airis-mcp-gateway):
-# - Serena: Code understanding (2-3x faster)
-# - Sequential: Token-efficient reasoning (30-50% fewer tokens)
-# - Tavily: Web search for Deep Research
-# - Context7: Official documentation lookup
-# - Mindbase: Semantic search across all conversations (optional enhancement)
+# 用于增强性能的可选MCP服务器(通过airis-mcp-gateway):
+# - Serena: 代码理解(快2-3倍)
+# - Sequential: Token高效推理(减少30-50% token)
+# - Tavily: 用于深度研究的网络搜索
+# - Context7: 官方文档查找
+# - Mindbase: 跨所有对话的语义搜索(可选增强)
-# Note: Error learning available via built-in ReflexionMemory (no installation required)
-# Mindbase provides semantic search enhancement (requires "recommended" profile)
-# Install MCP servers: https://github.com/agiletec-inc/airis-mcp-gateway
-# See docs/mcp/mcp-integration-policy.md for details
+# 注意:错误学习通过内置的ReflexionMemory提供(无需安装)
+# Mindbase提供语义搜索增强(需要"recommended"配置文件)
+# 安装MCP服务器:https://github.com/agiletec-inc/airis-mcp-gateway
+# 详见 docs/mcp/mcp-integration-policy.md
```
-**Performance Comparison:**
-- **Without MCPs**: Fully functional, standard performance ✅
-- **With MCPs**: 2-3x faster, 30-50% fewer tokens ⚡
+**性能对比:**
+- **不使用MCP**:功能完整,标准性能 ✅
+- **使用MCP**:快2-3倍,减少30-50% token ⚡
@@ -193,15 +173,15 @@ For **2-3x faster** execution and **30-50% fewer tokens**, optionally install MC
-## 💖 **Support the Project**
+## 💖 **支持项目**
-> Hey, let's be real - maintaining SuperClaude takes time and resources.
+> 说实话,维护SuperClaude需要时间和资源。
>
-> *The Claude Max subscription alone runs $100/month for testing, and that's before counting the hours spent on documentation, bug fixes, and feature development.*
-> *If you're finding value in SuperClaude for your daily work, consider supporting the project.*
-> *Even a few dollars helps cover the basics and keeps development active.*
+> *仅Claude Max订阅每月就要100美元用于测试,这还不包括在文档、bug修复和功能开发上花费的时间。*
+> *如果您在日常工作中发现SuperClaude的价值,请考虑支持这个项目。*
+> *哪怕几美元也能帮助覆盖基础成本并保持开发活跃。*
>
-> Every contributor matters, whether through code, feedback, or support. Thanks for being part of this community! 🙏
+> 每个贡献者都很重要,无论是代码、反馈还是支持。感谢成为这个社区的一员!🙏
@@ -210,7 +190,7 @@ For **2-3x faster** execution and **30-50% fewer tokens**, optionally install MC
### ☕ **Ko-fi**
[](https://ko-fi.com/superclaude)
-*One-time contributions*
+*一次性贡献*
|
@@ -218,7 +198,7 @@ For **2-3x faster** execution and **30-50% fewer tokens**, optionally install MC
### 🎯 **Patreon**
[](https://patreon.com/superclaude)
-*Monthly support*
+*月度支持*
|
@@ -226,24 +206,24 @@ For **2-3x faster** execution and **30-50% fewer tokens**, optionally install MC
### 💜 **GitHub**
[](https://github.com/sponsors/SuperClaude-Org)
-*Flexible tiers*
+*灵活层级*
|
-### **Your Support Enables:**
+### **您的支持使以下工作成为可能:**
-| Item | Cost/Impact |
+| 项目 | 成本/影响 |
|------|-------------|
-| 🔬 **Claude Max Testing** | $100/month for validation & testing |
-| ⚡ **Feature Development** | New capabilities & improvements |
-| 📚 **Documentation** | Comprehensive guides & examples |
-| 🤝 **Community Support** | Quick issue responses & help |
-| 🔧 **MCP Integration** | Testing new server connections |
-| 🌐 **Infrastructure** | Hosting & deployment costs |
+| 🔬 **Claude Max测试** | 每月100美元用于验证和测试 |
+| ⚡ **功能开发** | 新功能和改进 |
+| 📚 **文档编写** | 全面的指南和示例 |
+| 🤝 **社区支持** | 快速问题响应和帮助 |
+| 🔧 **MCP集成** | 测试新服务器连接 |
+| 🌐 **基础设施** | 托管和部署成本 |
-> **Note:** No pressure though - the framework stays open source regardless. Just knowing people use and appreciate it is motivating. Contributing code, documentation, or spreading the word helps too! 🙏
+> **注意:** 不过没有压力——无论如何框架都会保持开源。仅仅知道有人在使用和欣赏它就很有激励作用。贡献代码、文档或传播消息也很有帮助!🙏
@@ -251,96 +231,83 @@ For **2-3x faster** execution and **30-50% fewer tokens**, optionally install MC
-## 🎉 **What's New in v4.1**
+## 🎉 **V4.1版本新功能**
-> *Version 4.1 focuses on stabilizing the slash command architecture, enhancing agent capabilities, and improving documentation.*
+> *版本4.1专注于稳定斜杠命令架构、增强智能体能力和改进文档。*
|
-### 🤖 **Smarter Agent System**
-**20 specialized agents** with domain expertise:
-- PM Agent ensures continuous learning through systematic documentation
-- Deep Research agent for autonomous web research
-- Security engineer catches real vulnerabilities
-- Frontend architect understands UI patterns
-- Automatic coordination based on context
-- Domain-specific expertise on demand
+### 🤖 **更智能的智能体系统**
+**16个专业智能体**具有领域专业知识:
+- PM Agent通过系统化文档确保持续学习
+- 深度研究智能体用于自主网络研究
+- 安全工程师发现真实漏洞
+- 前端架构师理解UI模式
+- 基于上下文的自动协调
+- 按需提供领域专业知识
|
-### ⚡ **Optimized Performance**
-**Smaller framework, bigger projects:**
-- Reduced framework footprint
-- More context for your code
-- Longer conversations possible
-- Complex operations enabled
+### ⚡ **优化性能**
+**更小的框架,更大的项目:**
+- 减少框架占用
+- 为您的代码提供更多上下文
+- 支持更长对话
+- 启用复杂操作
|
|
-### 🔧 **MCP Server Integration**
-**8 powerful servers** with easy CLI installation:
-
-```bash
-# List available MCP servers
-superclaude mcp --list
-
-# Install specific servers
-superclaude mcp --servers tavily context7
-
-# Interactive installation
-superclaude mcp
-```
-
-**Available servers:**
-- **Tavily** → Primary web search (Deep Research)
-- **Context7** → Official documentation lookup
-- **Sequential-Thinking** → Multi-step reasoning
-- **Serena** → Session persistence & memory
-- **Playwright** → Cross-browser automation
-- **Magic** → UI component generation
-- **Morphllm-Fast-Apply** → Context-aware code modifications
-- **Chrome DevTools** → Performance analysis
+### 🔧 **MCP服务器集成**
+**8个强大服务器**(通过airis-mcp-gateway):
+- **Tavily** → 主要网络搜索(深度研究)
+- **Serena** → 会话持久化和内存
+- **Mindbase** → 跨会话学习(零占用)
+- **Sequential** → Token高效推理
+- **Context7** → 官方文档查找
+- **Playwright** → JavaScript重度内容提取
+- **Magic** → UI组件生成
+- **Chrome DevTools** → 性能分析
|
-### 🎯 **Behavioral Modes**
-**7 adaptive modes** for different contexts:
-- **Brainstorming** → Asks right questions
-- **Business Panel** → Multi-expert strategic analysis
-- **Deep Research** → Autonomous web research
-- **Orchestration** → Efficient tool coordination
-- **Token-Efficiency** → 30-50% context savings
-- **Task Management** → Systematic organization
-- **Introspection** → Meta-cognitive analysis
+### 🎯 **行为模式**
+**7种自适应模式**适应不同上下文:
+- **头脑风暴** → 提出正确问题
+- **商业面板** → 多专家战略分析
+- **深度研究** → 自主网络研究
+- **编排** → 高效工具协调
+- **令牌效率** → 30-50%上下文节省
+- **任务管理** → 系统化组织
+- **内省** → 元认知分析
|
|
-### 📚 **Documentation Overhaul**
-**Complete rewrite** for developers:
-- Real examples & use cases
-- Common pitfalls documented
-- Practical workflows included
-- Better navigation structure
+### 📚 **文档全面改写**
+**为开发者完全重写:**
+- 真实示例和用例
+- 记录常见陷阱
+- 包含实用工作流
+- 更好的导航结构
|
-### 🧪 **Enhanced Stability**
-**Focus on reliability:**
-- Bug fixes for core commands
-- Improved test coverage
-- More robust error handling
-- CI/CD pipeline improvements
+### 🧪 **增强稳定性**
+**专注于可靠性:**
+- 核心命令的错误修复
+- 改进测试覆盖率
+- 更健壮的错误处理
+- CI/CD流水线改进
|
@@ -352,91 +319,91 @@ superclaude mcp
-## 🔬 **Deep Research Capabilities**
+## 🔬 **深度研究能力**
-### **Autonomous Web Research Aligned with DR Agent Architecture**
+### **与DR智能体架构一致的自主网络研究**
-SuperClaude v4.2 introduces comprehensive Deep Research capabilities, enabling autonomous, adaptive, and intelligent web research.
+SuperClaude v4.2引入了全面的深度研究能力,实现自主、自适应和智能的网络研究。
|
-### 🎯 **Adaptive Planning**
-**Three intelligent strategies:**
-- **Planning-Only**: Direct execution for clear queries
-- **Intent-Planning**: Clarification for ambiguous requests
-- **Unified**: Collaborative plan refinement (default)
+### 🎯 **自适应规划**
+**三种智能策略:**
+- **仅规划**:对明确查询直接执行
+- **意图规划**:对模糊请求进行澄清
+- **统一**:协作式计划完善(默认)
|
-### 🔄 **Multi-Hop Reasoning**
-**Up to 5 iterative searches:**
-- Entity expansion (Paper → Authors → Works)
-- Concept deepening (Topic → Details → Examples)
-- Temporal progression (Current → Historical)
-- Causal chains (Effect → Cause → Prevention)
+### 🔄 **多跳推理**
+**最多5次迭代搜索:**
+- 实体扩展(论文 → 作者 → 作品)
+- 概念深化(主题 → 细节 → 示例)
+- 时间进展(当前 → 历史)
+- 因果链(效果 → 原因 → 预防)
|
|
-### 📊 **Quality Scoring**
-**Confidence-based validation:**
-- Source credibility assessment (0.0-1.0)
-- Coverage completeness tracking
-- Synthesis coherence evaluation
-- Minimum threshold: 0.6, Target: 0.8
+### 📊 **质量评分**
+**基于置信度的验证:**
+- 来源可信度评估(0.0-1.0)
+- 覆盖完整性跟踪
+- 综合连贯性评估
+- 最低阈值:0.6,目标:0.8
|
-### 🧠 **Case-Based Learning**
-**Cross-session intelligence:**
-- Pattern recognition and reuse
-- Strategy optimization over time
-- Successful query formulations saved
-- Performance improvement tracking
+### 🧠 **基于案例的学习**
+**跨会话智能:**
+- 模式识别和重用
+- 随时间优化策略
+- 保存成功的查询公式
+- 性能改进跟踪
|
-### **Research Command Usage**
+### **研究命令使用**
```bash
-# Basic research with automatic depth
-/research "latest AI developments 2024"
+# 使用自动深度的基本研究
+/research "2024年最新AI发展"
-# Controlled research depth (via options in TypeScript)
-/research "quantum computing breakthroughs" # depth: exhaustive
+# 控制研究深度(通过TypeScript中的选项)
+/research "量子计算突破" # depth: exhaustive
-# Specific strategy selection
-/research "market analysis" # strategy: planning-only
+# 特定策略选择
+/research "市场分析" # strategy: planning-only
-# Domain-filtered research (Tavily MCP integration)
-/research "React patterns" # domains: reactjs.org,github.com
+# 领域过滤研究(Tavily MCP集成)
+/research "React模式" # domains: reactjs.org,github.com
```
-### **Research Depth Levels**
+### **研究深度级别**
-| Depth | Sources | Hops | Time | Best For |
+| 深度 | 来源 | 跳数 | 时间 | 最适合 |
|:-----:|:-------:|:----:|:----:|----------|
-| **Quick** | 5-10 | 1 | ~2min | Quick facts, simple queries |
-| **Standard** | 10-20 | 3 | ~5min | General research (default) |
-| **Deep** | 20-40 | 4 | ~8min | Comprehensive analysis |
-| **Exhaustive** | 40+ | 5 | ~10min | Academic-level research |
+| **快速** | 5-10 | 1 | ~2分钟 | 快速事实、简单查询 |
+| **标准** | 10-20 | 3 | ~5分钟 | 一般研究(默认) |
+| **深入** | 20-40 | 4 | ~8分钟 | 综合分析 |
+| **详尽** | 40+ | 5 | ~10分钟 | 学术级研究 |
-### **Integrated Tool Orchestration**
+### **集成工具编排**
-The Deep Research system intelligently coordinates multiple tools:
-- **Tavily MCP**: Primary web search and discovery
-- **Playwright MCP**: Complex content extraction
-- **Sequential MCP**: Multi-step reasoning and synthesis
-- **Serena MCP**: Memory and learning persistence
-- **Context7 MCP**: Technical documentation lookup
+深度研究系统智能协调多个工具:
+- **Tavily MCP**:主要网络搜索和发现
+- **Playwright MCP**:复杂内容提取
+- **Sequential MCP**:多步推理和综合
+- **Serena MCP**:内存和学习持久化
+- **Context7 MCP**:技术文档查找
@@ -444,66 +411,67 @@ The Deep Research system intelligently coordinates multiple tools:
-## 📚 **Documentation**
+## 📚 **文档**
-### **Complete Guide to SuperClaude**
+### **SuperClaude完整指南**
-| 🚀 Getting Started |
-📖 User Guides |
-🛠️ Developer Resources |
-📋 Reference |
+🚀 快速开始 |
+📖 用户指南 |
+🛠️ 开发资源 |
+📋 参考资料 |
|
-- 📝 [**Quick Start Guide**](docs/getting-started/quick-start.md)
- *Get up and running fast*
+- 📝 [**快速开始指南**](docs/getting-started/quick-start.md)
+ *快速上手使用*
-- 💾 [**Installation Guide**](docs/getting-started/installation.md)
- *Detailed setup instructions*
+- 💾 [**安装指南**](docs/getting-started/installation.md)
+ *详细的安装说明*
|
-- 🎯 [**Slash Commands**](docs/reference/commands-list.md)
- *All 30 commands organized by category*
+- 🎯 [**斜杠命令**](docs/user-guide/commands.md)
+ *完整的 `/sc` 命令列表*
-- 🤖 [**Agents Guide**](docs/user-guide/agents.md)
- *20 specialized agents*
+- 🤖 [**智能体指南**](docs/user-guide/agents.md)
+ *16个专业智能体*
-- 🎨 [**Behavioral Modes**](docs/user-guide/modes.md)
- *7 adaptive modes*
+- 🎨 [**行为模式**](docs/user-guide/modes.md)
+ *7种自适应模式*
-- 🚩 [**Flags Guide**](docs/user-guide/flags.md)
- *Control behaviors*
+- 🚩 [**标志指南**](docs/user-guide/flags.md)
+ *控制行为参数*
-- 🔧 [**MCP Servers**](docs/user-guide/mcp-servers.md)
- *8 server integrations*
+- 🔧 [**MCP服务器**](docs/user-guide/mcp-servers.md)
+ *8个服务器集成*
-- 💼 [**Session Management**](docs/user-guide/session-management.md)
- *Save & restore state*
+- 💼 [**会话管理**](docs/user-guide/session-management.md)
+ *保存和恢复状态*
|
-- 🏗️ [**Technical Architecture**](docs/developer-guide/technical-architecture.md)
- *System design details*
+- 🏗️ [**技术架构**](docs/developer-guide/technical-architecture.md)
+ *系统设计详情*
-- 💻 [**Contributing Code**](docs/developer-guide/contributing-code.md)
- *Development workflow*
+- 💻 [**贡献代码**](docs/developer-guide/contributing-code.md)
+ *开发工作流程*
-- 🧪 [**Testing & Debugging**](docs/developer-guide/testing-debugging.md)
- *Quality assurance*
+- 🧪 [**测试与调试**](docs/developer-guide/testing-debugging.md)
+ *质量保证*
|
-- 📓 [**Examples Cookbook**](docs/reference/examples-cookbook.md)
- *Real-world recipes*
-- 🔍 [**Troubleshooting**](docs/reference/troubleshooting.md)
- *Common issues & fixes*
+- 📓 [**示例手册**](docs/reference/examples-cookbook.md)
+ *实际应用示例*
+
+- 🔍 [**故障排除**](docs/reference/troubleshooting.md)
+ *常见问题和修复*
|
@@ -515,26 +483,26 @@ The Deep Research system intelligently coordinates multiple tools:
-## 🤝 **Contributing**
+## 🤝 **贡献**
-### **Join the SuperClaude Community**
+### **加入SuperClaude社区**
-We welcome contributions of all kinds! Here's how you can help:
+我们欢迎各种类型的贡献!以下是您可以帮助的方式:
-| Priority | Area | Description |
+| 优先级 | 领域 | 描述 |
|:--------:|------|-------------|
-| 📝 **High** | Documentation | Improve guides, add examples, fix typos |
-| 🔧 **High** | MCP Integration | Add server configs, test integrations |
-| 🎯 **Medium** | Workflows | Create command patterns & recipes |
-| 🧪 **Medium** | Testing | Add tests, validate features |
-| 🌐 **Low** | i18n | Translate docs to other languages |
+| 📝 **高** | 文档 | 改进指南,添加示例,修复错误 |
+| 🔧 **高** | MCP集成 | 添加服务器配置,测试集成 |
+| 🎯 **中** | 工作流 | 创建命令模式和配方 |
+| 🧪 **中** | 测试 | 添加测试,验证功能 |
+| 🌐 **低** | 国际化 | 将文档翻译为其他语言 |
-
+
-
+
@@ -544,9 +512,9 @@ We welcome contributions of all kinds! Here's how you can help:
-## ⚖️ **License**
+## ⚖️ **许可证**
-This project is licensed under the **MIT License** - see the [LICENSE](LICENSE) file for details.
+本项目基于**MIT许可证**授权 - 详情请参阅[LICENSE](LICENSE)文件。
@@ -558,7 +526,7 @@ This project is licensed under the **MIT License** - see the [LICENSE](LICENSE)