sumulige-claude 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,116 +1,180 @@
1
1
  # Sumulige Claude
2
2
 
3
- **The Ultimate Agent Harness for Claude Code**
3
+ **The Best Agent Harness for Claude Code**
4
4
  **Claude Code 的终极 Agent 编排框架**
5
5
 
6
6
  [![npm version](https://badge.fury.io/js/sumulige-claude.svg)](https://www.npmjs.com/package/sumulige-claude)
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
- [![Tests](https://img.shields.io/badge/tests-78%20passing-brightgreen)](./tests)
9
-
10
- ---
11
-
12
- ## About / 关于
13
-
14
- **English** | Sumulige Claude is a CLI tool designed for Claude Code, providing multi-agent orchestration, skill marketplace, and project template management for AI-assisted development.
15
-
16
- **中文** | Sumulige Claude 是专为 Claude Code 设计的 CLI 工具,提供多 Agent 编排、技能市场和项目模板管理,让 AI 辅助开发更智能、更高效。
17
8
 
18
9
  ---
19
10
 
20
11
  ## Table of Contents / 目录
21
12
 
22
- 1. [Features / 核心功能](#features--核心功能)
23
- 2. [Quick Start / 快速开始](#quick-start--快速开始)
24
- 3. [Commands Reference / 命令参考](#commands-reference--命令参考)
25
- 4. [Configuration / 配置](#configuration--配置)
26
- 5. [Documentation / 文档](#documentation--文档)
27
- 6. [Changelog / 更新日志](#changelog--更新日志)
28
- 7. [License / 许可证](#license--许可证)
13
+ 1. [Layer 1: What is it? / 第一层:它是什么?](#layer-1-what-is-it--第一层它是什么)
14
+ 2. [Layer 2: Why use it? / 第二层:为什么使用它?](#layer-2-why-use-it--第二层为什么使用它)
15
+ 3. [Layer 3: Core Concepts / 第三层:核心概念](#layer-3-core-concepts--第三层核心概念)
16
+ 4. [Layer 4: Quick Start / 第四层:快速开始](#layer-4-quick-start--第四层快速开始)
17
+ 5. [Layer 5: Commands / 第五层:命令参考](#layer-5-commands--第五层命令参考)
18
+ 6. [Layer 6: Advanced / 第六层:高级配置](#layer-6-advanced--第六层高级配置)
19
+ 7. [Documentation / 文档](#documentation--文档)
29
20
 
30
21
  ---
31
22
 
32
- ## Features / 核心功能
23
+ ## Layer 1: What is it? / 第一层:它是什么?
33
24
 
34
- ### Multi-Agent System / Agent 系统
25
+ ### The 30-Second Version / 30 秒版本
35
26
 
36
- **English** | Coordinate 5 specialized AI agents, each with specific roles:
27
+ **English** | Sumulige Claude is a CLI tool that makes Claude Code smarter by:
28
+ - Adding specialized AI agents (like a team of experts)
29
+ - Providing ready-to-use project templates
30
+ - Managing reusable "skills" for common tasks
37
31
 
38
- **中文** | 协调 5 个专业 AI Agent,各司其职:
32
+ **中文** | Sumulige Claude 是一个让 Claude Code 更聪明的 CLI 工具:
33
+ - 添加专业的 AI Agent(像专家团队)
34
+ - 提供开箱即用的项目模板
35
+ - 管理可复用的"技能"
39
36
 
40
- | Agent | Role / 职责 |
41
- |-------|-------------|
42
- | **Conductor** | Task coordination and decomposition / 任务分解与协调 |
43
- | **Architect** | Architecture design and decisions / 架构设计与决策 |
44
- | **Builder** | Code implementation and testing / 代码实现与测试 |
45
- | **Reviewer** | Code review and quality check / 代码审查与质量检查 |
46
- | **Librarian** | Documentation and knowledge / 文档与知识管理 |
37
+ ### The 5-Minute Version / 5 分钟版本
38
+
39
+ ```
40
+ ┌─────────────────────────────────────────────────────────────┐
41
+ │ Without Sumulige Claude │
42
+ ├─────────────────────────────────────────────────────────────┤
43
+ │ 你 ──▶ Claude ──▶ 写代码 │
44
+ │ │ │
45
+ │ └─ 每次都要解释项目结构 │
46
+ │ └─ 要重复告诉 Claude 代码风格 │
47
+ │ └─ Claude 不知道你的团队约定 │
48
+ └─────────────────────────────────────────────────────────────┘
49
+
50
+ ┌─────────────────────────────────────────────────────────────┐
51
+ │ With Sumulige Claude │
52
+ ├─────────────────────────────────────────────────────────────┤
53
+ │ 你 ──▶ Conductor ──▶ Architect ──▶ Builder ──▶ 代码 │
54
+ │ (协调) (架构) (实现) │
55
+ │ │
56
+ │ ✓ 自动理解项目结构 │
57
+ │ ✓ 知道团队代码风格 │
58
+ │ ✓ 记住所有历史决策 │
59
+ └─────────────────────────────────────────────────────────────┘
60
+ ```
47
61
 
48
62
  ---
49
63
 
50
- ### Skill Marketplace / 技能市场 🆕
64
+ ## Layer 2: Why use it? / 第二层:为什么使用它?
51
65
 
52
- **English** | Discover, install, and sync skills from external repositories. Features automatic daily sync via GitHub Actions.
66
+ ### Problem vs Solution / 问题 vs 解决方案
53
67
 
54
- **中文** | 从外部仓库发现、安装和同步技能。支持 GitHub Actions 每日自动同步。
68
+ | 问题 | 传统方式 | Sumulige Claude |
69
+ |------|---------|-----------------|
70
+ | **每次都要解释项目结构** | 复制粘贴 README 内容 | `.claude/rag/` 自动存储项目知识 |
71
+ | **代码风格不一致** | 手动告诉 Claude 规则 | Quality Gate 自动检查 |
72
+ | **AI 不记得之前的决策** | 翻聊天记录找答案 | ThinkingLens 记忆所有对话 |
73
+ | **团队成员配置不同** | 各自配置 Claude | `smc sync` 统一环境 |
74
+ | **重复性任务** | 每次重新写 Prompt | Skills 系统,一键调用 |
55
75
 
56
- ```bash
57
- # List available skills / 列出可用技能
58
- smc marketplace:list
76
+ ### Three Key Benefits / 三大核心价值
59
77
 
60
- # Install a skill / 安装技能
61
- smc marketplace:install dev-browser
62
-
63
- # Sync external skills / 同步外部技能
64
- smc marketplace:sync
65
78
  ```
66
-
67
- **Skill Categories / 技能分类:**
68
-
69
- | Category | Description / 说明 |
70
- |----------|-------------------|
71
- | 🔧 **tools** | CLI tools and utilities / CLI 工具和实用程序 |
72
- | 💻 **development** | Language-specific dev assistance / 语言特定开发辅助 |
73
- | ⚡ **productivity** | Workflow automation / 工作流自动化 |
74
- | 🤖 **automation** | Browser, CI/CD, system automation / 浏览器、CI/CD、系统自动化 |
75
- | 📊 **data** | Database, data processing / 数据库、数据处理 |
76
- | 📚 **documentation** | Docs, diagrams, specs / 文档、图表、规范 |
77
- | 🎼 **workflow** | Multi-agent orchestration / 多代理编排 |
79
+ 1. 记忆 (Memory)
80
+ ┌─────────────────────────────────────────────┐
81
+ │ ThinkingLens │
82
+ │ ├─ 记住每次对话的上下文 │
83
+ │ ├─ 记住项目的架构决策 │
84
+ │ └─ 记住代码风格约定 │
85
+ └─────────────────────────────────────────────┘
86
+
87
+ 2. 分工 (Specialization)
88
+ ┌─────────────────────────────────────────────┐
89
+ │ Multi-Agent System │
90
+ │ ├─ Conductor → 任务分解 │
91
+ │ ├─ Architect → 架构设计 │
92
+ │ ├─ Builder → 代码实现 │
93
+ │ ├─ Reviewer → 质量检查 │
94
+ │ └─ Librarian → 文档整理 │
95
+ └─────────────────────────────────────────────┘
96
+
97
+ 3. 复用 (Reuse)
98
+ ┌─────────────────────────────────────────────┐
99
+ │ Skills System │
100
+ │ ├─ 安装社区技能 │
101
+ │ ├─ 创建自己的技能 │
102
+ │ └─ 团队共享技能库 │
103
+ └─────────────────────────────────────────────┘
104
+ ```
78
105
 
79
106
  ---
80
107
 
81
- ### Project Template / 项目模板
108
+ ## Layer 3: Core Concepts / 第三层:核心概念
82
109
 
83
- **English** | One-click deployment of a fully configured Claude Code project with:
110
+ ### Concept 1: What is an "Agent"? / 什么是 "Agent"?
84
111
 
85
- **中文** | 一键部署完整配置的 Claude Code 项目,包含:
112
+ **English** | An Agent is like a virtual team member with a specific role. Instead of one AI doing everything, you have specialized AIs working together.
86
113
 
87
- - **ThinkingLens** - Autonomous memory system / AI 自治记忆系统
88
- - **RAG System** - Dynamic skill discovery / 动态技能发现
89
- - **Slash Commands** - 7 pre-configured commands / 7 个预配置命令
90
- - **Hooks** - Automation for code formatting, TODO management / 代码格式化、任务管理自动化
91
- - **TODO System** - GTD-style task tracking / GTD 风格任务追踪
114
+ **中文** | Agent 就像是一个有特定职责的虚拟团队成员。不是让一个 AI 做所有事,而是让专业的 AI 协作。
92
115
 
93
- ---
116
+ ```
117
+ 传统方式:
118
+ ┌─────────────────────────────────────┐
119
+ │ Claude (通用 AI) │
120
+ │ 写代码 + 审查 + 架构 + 文档 │
121
+ └─────────────────────────────────────┘
122
+
123
+ Agent 方式:
124
+ ┌─────────┐ ┌─────────┐ ┌─────────┐
125
+ │Conductor│─▶│Architect│─▶│ Builder │
126
+ │ 分解任务 │ │ 设计架构 │ │ 实现代码 │
127
+ └─────────┘ └─────────┘ └─────────┘
128
+
129
+
130
+ ┌─────────┐
131
+ │Reviewer │
132
+ │ 审查代码 │
133
+ └─────────┘
134
+ ```
94
135
 
95
- ### Manus Workflow / Manus 工作流
136
+ ### Concept 2: What is a "Skill"? / 什么是 "Skill"?
96
137
 
97
- **English** | AI 2.0 development paradigm emphasizing comprehensive project planning before execution.
138
+ **English** | A Skill is a reusable set of instructions for Claude. Think of it as a "plugin" that gives Claude new capabilities.
98
139
 
99
- **中文** | AI 2.0 开发范式,强调执行前的完整项目规划。
140
+ **中文** | Skill 是一组可复用的指令,就像是给 Claude 安装"插件",赋予它新的能力。
100
141
 
101
- ```bash
102
- # Start project planning / 启动项目规划
103
- smc kickoff
104
142
  ```
143
+ Skill = 上下文 + 指令 + 资源
144
+
145
+ ┌─────────────────────────────────────┐
146
+ │ Skill: api-tester │
147
+ ├─────────────────────────────────────┤
148
+ │ 上下文: REST/GraphQL API 测试知识 │
149
+ │ 指令: 如何验证 API 响应 │
150
+ │ 资源: 测试脚本模板 │
151
+ └─────────────────────────────────────┘
152
+ ```
153
+
154
+ ### Concept 3: What is the Template? / 什么是模板?
155
+
156
+ **English** | The Template is a pre-configured project structure with all AI settings, hooks, and skills ready to use.
105
157
 
106
- Generated files / 生成文件:
107
- - `PROJECT_KICKOFF.md` - Project goals and constraints / 项目目标和约束
108
- - `TASK_PLAN.md` - Task execution plan with WBS / 任务执行计划
109
- - `PROJECT_PROPOSAL.md` - Complete project proposal / 完整项目计划书
158
+ **中文** | 模板是预先配置好的项目结构,包含所有 AI 设置、钩子和技能,开箱即用。
159
+
160
+ ```
161
+ smc template 之后,你的项目会变成:
162
+
163
+ your-project/
164
+ ├── .claude/
165
+ │ ├── commands/ # 斜杠命令定义
166
+ │ ├── skills/ # 技能库
167
+ │ ├── hooks/ # 自动化钩子
168
+ │ ├── rag/ # 项目知识库
169
+ │ └── sessions/ # 对话历史
170
+ ├── CLAUDE.md # AI 配置文件
171
+ └── development/
172
+ └── todos/ # 任务管理系统
173
+ ```
110
174
 
111
175
  ---
112
176
 
113
- ## Quick Start / 快速开始
177
+ ## Layer 4: Quick Start / 第四层:快速开始
114
178
 
115
179
  ### Installation / 安装
116
180
 
@@ -118,104 +182,117 @@ Generated files / 生成文件:
118
182
  npm install -g sumulige-claude
119
183
  ```
120
184
 
121
- ### Initialize / 初始化
185
+ ### Three Commands to Get Started / 三个命令开始使用
122
186
 
123
187
  ```bash
188
+ # Step 1: Initialize global config / 初始化全局配置
124
189
  smc init
125
- ```
126
-
127
- ### Deploy Template / 部署模板
128
190
 
129
- ```bash
130
- # Create a new project / 创建新项目
191
+ # Step 2: Deploy to your project / 部署到项目
131
192
  mkdir my-project && cd my-project
132
193
  smc template
133
194
 
134
- # Or specify a path / 或指定路径
135
- smc template /path/to/project
136
- ```
137
-
138
- ### Start Planning / 开始规划
139
-
140
- ```bash
195
+ # Step 3: Start planning / 开始规划
141
196
  smc kickoff
142
197
  ```
143
198
 
144
- ---
145
-
146
- ## Commands Reference / 命令参考
199
+ ### What Each Command Does / 每个命令做什么
147
200
 
148
- ### Basic Commands / 基础命令
201
+ | 命令 | 做什么 | 类比 |
202
+ |------|--------|------|
203
+ | `smc init` | 创建 `~/.claude/config.json` | 买房前准备工具箱 |
204
+ | `smc template` | 复制模板到项目 | 装修新房子 |
205
+ | `smc kickoff` | 启动项目规划 | 开工典礼 |
149
206
 
150
- | Command | Description / 说明 |
151
- |---------|-------------------|
152
- | `smc init` | Initialize configuration / 初始化配置 |
153
- | `smc status` | Show configuration status / 显示配置状态 |
154
- | `smc sync` | Sync to current project (auto-migrates old format) / 同步到当前项目(自动迁移旧格式) |
155
- | `smc migrate` | Manually run project migrations / 手动执行项目迁移 |
156
-
157
- ### Project Template / 项目模板
158
-
159
- | Command | Description / 说明 |
160
- |---------|-------------------|
161
- | `smc template [path]` | Deploy project template / 部署项目模板 |
162
- | `smc kickoff` | Start project planning (Manus-style) / 启动项目规划 |
163
-
164
- ### Skill Management / 技能管理
207
+ ---
165
208
 
166
- | Command | Description / 说明 |
167
- |---------|-------------------|
168
- | `smc skill:list` | List installed skills / 列出已安装技能 |
169
- | `smc skill:create <name>` | Create a new skill / 创建新技能 |
170
- | `smc skill:check [name]` | Check skill dependencies / 检查技能依赖 |
171
- | `smc skill:install <source>` | Install a skill / 安装技能 |
209
+ ## Layer 5: Commands / 第五层:命令参考
172
210
 
173
- ### Marketplace Commands / 市场命令 🆕
211
+ ### Command Groups / 命令分组
174
212
 
175
- | Command | Description / 说明 |
176
- |---------|-------------------|
177
- | `smc marketplace:list` | List all available skills / 列出所有可用技能 |
178
- | `smc marketplace:install <name>` | Install a skill from marketplace / 从市场安装技能 |
179
- | `smc marketplace:sync` | Sync external skills / 同步外部技能 |
180
- | `smc marketplace:add <repo>` | Add external skill source / 添加外部技能源 |
181
- | `smc marketplace:remove <name>` | Remove skill from sources / 从源中移除技能 |
182
- | `smc marketplace:status` | Show marketplace status / 显示市场状态 |
213
+ ```
214
+ ┌─────────────────────────────────────────────────────────────┐
215
+ │ 基础命令 (每次使用都需要) │
216
+ ├─────────────────────────────────────────────────────────────┤
217
+ smc init 初始化全局配置 │
218
+ smc status 查看当前状态 │
219
+ smc sync 同步到当前项目(增量) │
220
+ └─────────────────────────────────────────────────────────────┘
221
+
222
+ ┌─────────────────────────────────────────────────────────────┐
223
+ │ 项目命令 (新项目启动时使用) │
224
+ ├─────────────────────────────────────────────────────────────┤
225
+ │ smc template 部署项目模板 │
226
+ │ smc kickoff 启动项目规划 │
227
+ └─────────────────────────────────────────────────────────────┘
228
+
229
+ ┌─────────────────────────────────────────────────────────────┐
230
+ │ 技能命令 (管理 Claude 能力) │
231
+ ├─────────────────────────────────────────────────────────────┤
232
+ │ smc skill:list 列出已安装技能 │
233
+ │ smc marketplace:list 浏览技能市场 │
234
+ │ smc marketplace:install <name> 安装技能 │
235
+ └─────────────────────────────────────────────────────────────┘
236
+
237
+ ┌─────────────────────────────────────────────────────────────┐
238
+ │ 配置命令 (高级配置) │
239
+ ├─────────────────────────────────────────────────────────────┤
240
+ │ smc config:validate 验证配置文件 │
241
+ │ smc config:backup 创建配置备份 │
242
+ │ smc qg:check 运行质量检查 │
243
+ └─────────────────────────────────────────────────────────────┘
244
+ ```
183
245
 
184
- ### Agent Orchestration / Agent 编排
246
+ ### Command Flow / 命令流程
185
247
 
186
- | Command | Description / 说明 |
187
- |---------|-------------------|
188
- | `smc agent <task>` | Run agent orchestration / 运行 Agent 编排 |
248
+ ```
249
+ 新项目流程:
250
+ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐
251
+ │ 新建 │──▶ │ smc │──▶ │ smc │──▶ │ smc │
252
+ │ 项目 │ │ template │ │ kickoff │ │ 开发 │
253
+ └─────────┘ └─────────┘ └─────────┘ └─────────┘
254
+
255
+ 已有项目:
256
+ ┌─────────┐ ┌─────────┐ ┌─────────┐
257
+ │ 进入 │──▶ │ smc │──▶ │ 开发 │
258
+ │ 项目 │ │ sync │ │ │
259
+ └─────────┘ └─────────┘ └─────────┘
260
+ ```
189
261
 
190
262
  ---
191
263
 
192
- ## Configuration / 配置
264
+ ## Layer 6: Advanced / 第六层:高级配置
193
265
 
194
- ### Config Location / 配置位置
266
+ ### Multi-Agent Configuration / 多 Agent 配置
195
267
 
196
- **macOS/Linux**: `~/.claude/config.json`
268
+ **English** | Each agent can be customized with its own model and role description.
197
269
 
198
- ### Example / 示例
270
+ **中文** | 每个 Agent 都可以自定义模型和职责描述。
199
271
 
200
272
  ```json
201
273
  {
202
- "version": "1.0.11",
274
+ "version": "1.1.1",
203
275
  "model": "claude-opus-4.5",
204
276
  "agents": {
205
277
  "conductor": {
206
- "role": "Task coordination and decomposition"
278
+ "role": "任务协调与分解 - 理解需求并分配给合适的 Agent",
279
+ "model": "claude-opus-4.5"
207
280
  },
208
281
  "architect": {
209
- "role": "Architecture design and decisions"
282
+ "role": "架构设计 - 设计系统架构和技术选型",
283
+ "model": "claude-sonnet-4.5"
210
284
  },
211
285
  "builder": {
212
- "role": "Code implementation and testing"
286
+ "role": "代码实现 - 编写高质量代码和测试",
287
+ "model": "claude-sonnet-4.5"
213
288
  },
214
289
  "reviewer": {
215
- "role": "Code review and quality check"
290
+ "role": "代码审查 - 检查代码质量和安全问题",
291
+ "model": "claude-opus-4.5"
216
292
  },
217
293
  "librarian": {
218
- "role": "Documentation and knowledge"
294
+ "role": "文档管理 - 整理文档和知识库",
295
+ "model": "claude-haiku-4.5"
219
296
  }
220
297
  },
221
298
  "skills": [
@@ -230,121 +307,76 @@ smc kickoff
230
307
  }
231
308
  ```
232
309
 
233
- ---
310
+ ### Quality Gate / 质量门禁
234
311
 
235
- ## Testing / 测试
312
+ **English** | Automatically check code quality before commits.
236
313
 
237
- ```bash
238
- # Run tests / 运行测试
239
- npm test
314
+ **中文** | 提交前自动检查代码质量。
240
315
 
241
- # Run with coverage / 运行测试并生成覆盖率报告
242
- npm run test:coverage
316
+ ```json
317
+ {
318
+ "enabled": true,
319
+ "severity": "warn",
320
+ "rules": [
321
+ { "id": "line-count-limit", "enabled": true },
322
+ { "id": "no-console-logs", "enabled": true }
323
+ ],
324
+ "gates": {
325
+ "preCommit": true,
326
+ "prePush": true
327
+ }
328
+ }
243
329
  ```
244
330
 
245
- **Coverage / 覆盖率**:
246
- - utils.js: 100%
247
- - migrations.js: 86.66%
248
- - config.js: 86.2%
249
- - Overall: 36.58%
331
+ ### Skills Marketplace / 技能市场
250
332
 
251
- See **[tests/README.md](tests/README.md)** for detailed test documentation.
333
+ ```bash
334
+ # Browse available skills / 浏览可用技能
335
+ smc marketplace:list
336
+
337
+ # Install a skill / 安装技能
338
+ smc marketplace:install dev-browser
339
+
340
+ # Create your own skill / 创建自己的技能
341
+ smc skill:create my-skill
342
+ ```
252
343
 
253
344
  ---
254
345
 
255
346
  ## Documentation / 文档
256
347
 
257
- - **[Development Guide / 开发指南](docs/DEVELOPMENT.md)** - Architecture, adding skills, sync mechanism / 架构、添加技能、同步机制
258
- - **[Marketplace Guide / 市场指南](docs/MARKETPLACE.md)** - User guide for marketplace features / 市场功能用户指南
259
- - **[Tests Documentation / 测试文档](tests/README.md)** - Test coverage and strategy / 测试覆盖率和策略
348
+ - **[Development Guide / 开发指南](docs/DEVELOPMENT.md)** - Architecture, adding skills / 架构、添加技能
349
+ - **[Marketplace Guide / 市场指南](docs/MARKETPLACE.md)** - Skill marketplace user guide / 技能市场用户指南
350
+ - **[Q&A / 常见问题](Q&A.md)** - Core design concepts explained / 核心设计理念解释
260
351
 
261
352
  ---
262
353
 
263
354
  ## Changelog / 更新日志
264
355
 
265
- ### v1.0.11 (2026-01-15)
266
-
267
- **English** | Test suite and version-aware migration system.
268
-
269
- **中文** | 测试套件和版本感知迁移系统。
270
-
271
- - **Migration System / 迁移系统**
272
- - `lib/migrations.js` - Version-aware migrations / 版本感知迁移
273
- - `smc migrate` command / 迁移命令
274
- - Auto-migration on sync / 同步时自动迁移
275
- - **Test Suite / 测试套件**
276
- - 78 tests across 5 modules / 5 个模块共 78 个测试
277
- - Jest framework with mocking / Jest 框架和 Mock
356
+ ### v1.1.1 (2026-01-16)
278
357
 
279
- ### v1.0.10 (2026-01-15)
358
+ **English** | Config validation and quality gate system.
280
359
 
281
- **English** | Conversation logger hook for daily tracking.
360
+ **中文** | 配置验证和质量门禁系统。
282
361
 
283
- **中文** | 对话日志器 Hook,按日期记录。
362
+ - **Config System / 配置系统**
363
+ - JSON Schema validation for all configs / 所有配置的 JSON Schema 验证
364
+ - Backup/rollback functionality / 备份回滚功能
365
+ - Environment variable expansion / 环境变量展开
366
+ - **Quality Gate / 质量门禁**
367
+ - 8 built-in quality rules / 8 条内置质量规则
368
+ - Pre-commit/pre-push Git hooks / Git 钩子
369
+ - Configurable severity levels / 可配置严重级别
284
370
 
285
- - `template/.claude/hooks/conversation-logger.cjs` - Auto-record conversations / 自动记录对话
286
- - `DAILY_CONVERSATION.md` - Date-grouped history / 按日期分组的历史记录
371
+ ### v1.1.0 (2026-01-15)
287
372
 
288
- ### v1.0.9 (2026-01-15)
373
+ **English** | Skill Marketplace with auto-sync.
289
374
 
290
- **English** | Session cleanup improvements.
375
+ **中文** | 技能市场,支持自动同步。
291
376
 
292
- **中文** | 会话清理改进。
293
-
294
- - Clean up stale session entries / 清理过期会话记录
295
-
296
- ### v1.0.8 (2026-01-14)
297
-
298
- **English** | Skill Marketplace system with auto-sync.
299
-
300
- **中文** | 技能市场系统,支持自动同步。
301
-
302
- - **Marketplace System / 市场系统**
303
- - `.claude-plugin/marketplace.json` - Claude Code native plugin registry / 原生插件注册表
304
- - `sources.yaml` - External skills configuration / 外部技能配置
305
- - 6 new marketplace commands / 6 个新市场命令
306
- - **Auto-Sync / 自动同步**
307
- - `scripts/sync-external.mjs` - Sync engine / 同步引擎
308
- - `scripts/update-registry.mjs` - Registry generator / 注册表生成器
309
- - GitHub Actions daily sync / GitHub Actions 每日同步
310
- - **Documentation / 文档**
311
- - `docs/DEVELOPMENT.md` - Development guide / 开发指南
312
- - `docs/MARKETPLACE.md` - Marketplace user guide / 市场用户指南
313
-
314
- ### v1.0.7 (2025-01-14)
315
-
316
- **English** | Added Skill Marketplace system with auto-sync from external repositories.
317
-
318
- **中文** | 新增技能市场系统,支持从外部仓库自动同步。
319
-
320
- - **Marketplace System / 市场系统**
321
- - `.claude-plugin/marketplace.json` - Claude Code native plugin registry / 原生插件注册表
322
- - `sources.yaml` - External skills configuration / 外部技能配置
323
- - 6 new marketplace commands / 6 个新市场命令
324
- - **Auto-Sync / 自动同步**
325
- - `scripts/sync-external.mjs` - Sync engine / 同步引擎
326
- - `scripts/update-registry.mjs` - Registry generator / 注册表生成器
327
- - GitHub Actions daily sync / GitHub Actions 每日同步
328
- - **Documentation / 文档**
329
- - `docs/DEVELOPMENT.md` - Development guide / 开发指南
330
- - `docs/MARKETPLACE.md` - Marketplace user guide / 市场用户指南
331
-
332
- ### v1.0.6 (2026-01-14)
333
-
334
- **English** | Code refactoring - modularized cli.js from 862 lines.
335
-
336
- **中文** | 代码重构 - cli.js 从 862 行模块化拆分。
337
-
338
- - `lib/commands.js` - Command implementations / 命令实现
339
- - `lib/config.js` - Configuration management / 配置管理
340
- - `lib/utils.js` - Common utilities / 公共工具函数
341
- - Data-driven command dispatch / 数据驱动的命令分发
342
-
343
- ### v1.0.0 (2026-01-11)
344
-
345
- **English** | Initial release with 5 agents, project template, and RAG system.
346
-
347
- **中文** | 初始版本,包含 5 个 Agent、项目模板和 RAG 系统。
377
+ - Marketplace system with 6 new commands / 市场系统,6 个新命令
378
+ - Auto-sync via GitHub Actions / GitHub Actions 自动同步
379
+ - 20+ built-in skills / 20+ 内置技能
348
380
 
349
381
  ---
350
382
 
@@ -354,10 +386,4 @@ MIT © [sumulige](https://github.com/sumulige)
354
386
 
355
387
  ---
356
388
 
357
- ## Acknowledgments / 致谢
358
-
359
- Inspired by [oh-my-opencode](https://github.com/code-yeongyu/oh-my-opencode) and [n-skills](https://github.com/numman-ali/n-skills).
360
-
361
- ---
362
-
363
389
  **Happy Coding with AI! / 祝编码愉快! 🚀**