sumulige-claude 1.2.1 → 1.3.0
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/.claude/.kickoff-hint.txt +1 -1
- package/.claude/AGENTS.md +6 -6
- package/.claude/USAGE.md +175 -0
- package/.claude/commands/fix.md +83 -0
- package/.claude/commands/plan.md +88 -0
- package/.claude/commands/refactor.md +102 -0
- package/.claude/hooks/pre-push.cjs +3 -2
- package/.claude/rag/skill-index.json +34 -15
- package/.claude/rules/coding-style.md +119 -0
- package/.claude/rules/hooks.md +288 -0
- package/.claude/rules/performance.md +78 -0
- package/.claude/rules/security.md +56 -0
- package/.claude/rules/testing.md +89 -0
- package/.claude/settings.local.json +19 -1
- package/.claude/skills/design-brain/SKILL.md +190 -0
- package/.claude/skills/design-brain/metadata.yaml +26 -0
- package/.claude/skills/quality-guard/SKILL.md +138 -0
- package/.claude/skills/quality-guard/metadata.yaml +27 -0
- package/.claude/skills/quick-fix/SKILL.md +138 -0
- package/.claude/skills/quick-fix/metadata.yaml +26 -0
- package/.claude/skills/test-master/SKILL.md +186 -0
- package/.claude/skills/test-master/metadata.yaml +29 -0
- package/AGENTS.md +25 -7
- package/CHANGELOG.md +39 -3
- package/README.md +57 -0
- package/config/official-skills.json +1 -1
- package/development/knowledge-base/.index.clean.json +1 -0
- package/package.json +1 -1
- package/.claude/skills/123-skill/SKILL.md +0 -61
- package/.claude/skills/123-skill/examples/basic.md +0 -3
- package/.claude/skills/123-skill/metadata.yaml +0 -30
- package/.claude/skills/123-skill/templates/default.md +0 -3
- package/.claude/skills/api-tester/SKILL.md +0 -90
- package/.claude/skills/api-tester/examples/basic.md +0 -3
- package/.claude/skills/api-tester/metadata.yaml +0 -30
- package/.claude/skills/api-tester/templates/default.md +0 -3
- package/.claude/skills/code-reviewer-123/SKILL.md +0 -61
- package/.claude/skills/code-reviewer-123/examples/basic.md +0 -3
- package/.claude/skills/code-reviewer-123/metadata.yaml +0 -30
- package/.claude/skills/code-reviewer-123/templates/default.md +0 -3
- package/.claude/skills/my-skill/SKILL.md +0 -61
- package/.claude/skills/my-skill/examples/basic.md +0 -3
- package/.claude/skills/my-skill/metadata.yaml +0 -30
- package/.claude/skills/my-skill/templates/default.md +0 -3
- package/.claude/skills/template/SKILL.md +0 -6
- package/.claude/skills/template/metadata.yaml +0 -30
- package/.claude/skills/test-skill-name/SKILL.md +0 -61
- package/.claude/skills/test-skill-name/examples/basic.md +0 -3
- package/.claude/skills/test-skill-name/metadata.yaml +0 -30
- package/.claude/skills/test-skill-name/templates/default.md +0 -3
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: test-master
|
|
2
|
+
version: 2.0.0
|
|
3
|
+
description: |
|
|
4
|
+
测试大师。合并了 TDD 工作流和 E2E 测试功能。
|
|
5
|
+
支持单元测试、E2E 测试、覆盖率分析三种模式。
|
|
6
|
+
遵循 RED-GREEN-REFACTOR 循环,目标覆盖率 80%+。
|
|
7
|
+
|
|
8
|
+
triggers:
|
|
9
|
+
- write test
|
|
10
|
+
- tdd
|
|
11
|
+
- test-driven
|
|
12
|
+
- e2e test
|
|
13
|
+
- playwright
|
|
14
|
+
- coverage
|
|
15
|
+
- unit test
|
|
16
|
+
- 写测试
|
|
17
|
+
- 测试覆盖
|
|
18
|
+
|
|
19
|
+
tools:
|
|
20
|
+
- Read
|
|
21
|
+
- Write
|
|
22
|
+
- Edit
|
|
23
|
+
- Bash
|
|
24
|
+
- Grep
|
|
25
|
+
- Glob
|
|
26
|
+
|
|
27
|
+
model: sonnet
|
|
28
|
+
|
|
29
|
+
source: merged from tdd-workflow + e2e-runner
|
package/AGENTS.md
CHANGED
|
@@ -436,12 +436,6 @@ Usage notes:
|
|
|
436
436
|
|
|
437
437
|
<available_skills>
|
|
438
438
|
|
|
439
|
-
<skill>
|
|
440
|
-
<name>123-skill</name>
|
|
441
|
-
<description></description>
|
|
442
|
-
<location>project</location>
|
|
443
|
-
</skill>
|
|
444
|
-
|
|
445
439
|
<skill>
|
|
446
440
|
<name>algorithmic-art</name>
|
|
447
441
|
<description>Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.</description>
|
|
@@ -450,7 +444,7 @@ Usage notes:
|
|
|
450
444
|
|
|
451
445
|
<skill>
|
|
452
446
|
<name>api-tester</name>
|
|
453
|
-
<description
|
|
447
|
+
<description></description>
|
|
454
448
|
<location>project</location>
|
|
455
449
|
</skill>
|
|
456
450
|
|
|
@@ -472,6 +466,12 @@ Usage notes:
|
|
|
472
466
|
<location>project</location>
|
|
473
467
|
</skill>
|
|
474
468
|
|
|
469
|
+
<skill>
|
|
470
|
+
<name>design-brain</name>
|
|
471
|
+
<description></description>
|
|
472
|
+
<location>project</location>
|
|
473
|
+
</skill>
|
|
474
|
+
|
|
475
475
|
<skill>
|
|
476
476
|
<name>doc-coauthoring</name>
|
|
477
477
|
<description>Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.</description>
|
|
@@ -526,6 +526,18 @@ Usage notes:
|
|
|
526
526
|
<location>project</location>
|
|
527
527
|
</skill>
|
|
528
528
|
|
|
529
|
+
<skill>
|
|
530
|
+
<name>quality-guard</name>
|
|
531
|
+
<description></description>
|
|
532
|
+
<location>project</location>
|
|
533
|
+
</skill>
|
|
534
|
+
|
|
535
|
+
<skill>
|
|
536
|
+
<name>quick-fix</name>
|
|
537
|
+
<description></description>
|
|
538
|
+
<location>project</location>
|
|
539
|
+
</skill>
|
|
540
|
+
|
|
529
541
|
<skill>
|
|
530
542
|
<name>skill-creator</name>
|
|
531
543
|
<description>Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.</description>
|
|
@@ -544,6 +556,12 @@ Usage notes:
|
|
|
544
556
|
<location>project</location>
|
|
545
557
|
</skill>
|
|
546
558
|
|
|
559
|
+
<skill>
|
|
560
|
+
<name>test-master</name>
|
|
561
|
+
<description></description>
|
|
562
|
+
<location>project</location>
|
|
563
|
+
</skill>
|
|
564
|
+
|
|
547
565
|
<skill>
|
|
548
566
|
<name>test-skill-name</name>
|
|
549
567
|
<description></description>
|
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,44 @@
|
|
|
1
|
-
|
|
1
|
+
## [1.3.0](https://github.com/sumulige/sumulige-claude/compare/v1.2.1...v1.3.0) (2026-01-22)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
### ✨ New Features
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
- **4 Core Skills System**: Cost-optimized skill architecture
|
|
6
|
+
- `quality-guard` (sonnet) - Code review + security + cleanup
|
|
7
|
+
- `test-master` (sonnet) - TDD + E2E + coverage
|
|
8
|
+
- `design-brain` (opus) - Planning + architecture
|
|
9
|
+
- `quick-fix` (haiku) - Fast error resolution
|
|
10
|
+
- **Model Strategy**: Automatic model selection based on task complexity
|
|
11
|
+
- **Workflow Engine**: 4-phase project workflow (research → approve → plan → develop)
|
|
12
|
+
- **Usage Manual**: Comprehensive `.claude/USAGE.md` documentation
|
|
13
|
+
|
|
14
|
+
### 🐛 Bug Fixes
|
|
15
|
+
|
|
16
|
+
- make git hooks executable (e748915a)
|
|
17
|
+
- fix pre-push hook for deleted files detection (46cccc6)
|
|
18
|
+
|
|
19
|
+
### 📝 Documentation
|
|
20
|
+
|
|
21
|
+
- add `.claude/USAGE.md` with complete skills guide
|
|
22
|
+
- add Layer 5.5 Core Skills section to README
|
|
23
|
+
- update CHANGELOG with test coverage improvements
|
|
24
|
+
|
|
25
|
+
### ♻️ Refactor
|
|
26
|
+
|
|
27
|
+
- **BREAKING**: merge 9 skills into 4 core skills (60-70% cost reduction)
|
|
28
|
+
- delete 6 placeholder skills
|
|
29
|
+
- streamline commands from 17 to 12
|
|
30
|
+
|
|
31
|
+
### 🧪 Tests
|
|
32
|
+
|
|
33
|
+
- improve test coverage to 63.53%
|
|
34
|
+
- all 575 tests passing
|
|
35
|
+
|
|
36
|
+
### 🧹 Chores
|
|
37
|
+
|
|
38
|
+
- add workflows, templates, and development infrastructure
|
|
39
|
+
- add hook templates for customization
|
|
40
|
+
|
|
41
|
+
## [1.2.1](https://github.com/sumulige/sumulige-claude/compare/v1.1.2...v1.2.1) (2026-01-18)
|
|
6
42
|
|
|
7
43
|
|
|
8
44
|
### Fixed
|
package/README.md
CHANGED
|
@@ -261,6 +261,63 @@ smc kickoff
|
|
|
261
261
|
|
|
262
262
|
---
|
|
263
263
|
|
|
264
|
+
## Layer 5.5: Core Skills / 核心技能系统
|
|
265
|
+
|
|
266
|
+
### 4 Core Skills / 4 个核心技能
|
|
267
|
+
|
|
268
|
+
> v2.0.0 优化:将 9 个技能合并为 4 个核心技能,成本降低 60-70%
|
|
269
|
+
|
|
270
|
+
| Skill | 命令 | 模型 | 作用 |
|
|
271
|
+
|-------|------|------|------|
|
|
272
|
+
| `quality-guard` | `/review` | sonnet | 代码审查 + 安全检查 + 清理建议 |
|
|
273
|
+
| `test-master` | `/test` | sonnet | TDD + E2E + 覆盖率分析 |
|
|
274
|
+
| `design-brain` | `/plan` | opus | 规划 + 架构设计 |
|
|
275
|
+
| `quick-fix` | `/fix` | haiku | 快速修复构建/类型/lint 错误 |
|
|
276
|
+
|
|
277
|
+
### Quick Reference / 命令速查
|
|
278
|
+
|
|
279
|
+
```bash
|
|
280
|
+
# 代码审查
|
|
281
|
+
/review # 标准审查
|
|
282
|
+
/review --security # 安全深扫 (OWASP Top 10)
|
|
283
|
+
/review --clean # 死代码清理
|
|
284
|
+
|
|
285
|
+
# 测试
|
|
286
|
+
/test # 运行测试
|
|
287
|
+
/test --tdd # TDD 模式
|
|
288
|
+
/test --e2e # E2E 测试
|
|
289
|
+
/test --coverage # 覆盖率
|
|
290
|
+
|
|
291
|
+
# 规划
|
|
292
|
+
/plan # 快速规划
|
|
293
|
+
/plan --deep # 深度设计
|
|
294
|
+
|
|
295
|
+
# 快速修复
|
|
296
|
+
/fix # 自动检测修复
|
|
297
|
+
/fix --build # 构建错误
|
|
298
|
+
/fix --type # 类型错误
|
|
299
|
+
|
|
300
|
+
# 重构
|
|
301
|
+
/refactor # 分析建议
|
|
302
|
+
/refactor --execute # 执行清理
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
### Model Cost Strategy / 模型成本策略
|
|
306
|
+
|
|
307
|
+
```
|
|
308
|
+
┌─────────┬─────────────────────┬──────────┬────────┐
|
|
309
|
+
│ 模型 │ 使用场景 │ 相对成本 │ 速度 │
|
|
310
|
+
├─────────┼─────────────────────┼──────────┼────────┤
|
|
311
|
+
│ haiku │ /fix 快速修复 │ 1x │ 最快 │
|
|
312
|
+
│ sonnet │ /review, /test │ 5x │ 中等 │
|
|
313
|
+
│ opus │ /plan --deep │ 15x │ 较慢 │
|
|
314
|
+
└─────────┴─────────────────────┴──────────┴────────┘
|
|
315
|
+
```
|
|
316
|
+
|
|
317
|
+
详细使用指南: [.claude/USAGE.md](.claude/USAGE.md)
|
|
318
|
+
|
|
319
|
+
---
|
|
320
|
+
|
|
264
321
|
## Layer 6: Advanced / 第六层:高级配置
|
|
265
322
|
|
|
266
323
|
### Multi-Agent Configuration / 多 Agent 配置
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
package/package.json
CHANGED
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
# 123 Skill
|
|
2
|
-
|
|
3
|
-
> 简短描述这个技能的作用(一句话)
|
|
4
|
-
|
|
5
|
-
**版本**: 1.0.0
|
|
6
|
-
**作者**: @username
|
|
7
|
-
**标签**: [category1, category2]
|
|
8
|
-
**难度**: 初级/中级/高级
|
|
9
|
-
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
## 概述
|
|
13
|
-
|
|
14
|
-
详细描述这个技能的功能和用途。
|
|
15
|
-
|
|
16
|
-
## 适用场景
|
|
17
|
-
|
|
18
|
-
- 场景 1
|
|
19
|
-
- 场景 2
|
|
20
|
-
- 场景 3
|
|
21
|
-
|
|
22
|
-
## 触发关键词
|
|
23
|
-
|
|
24
|
-
```
|
|
25
|
-
keyword1, keyword2, "exact phrase"
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
## 使用方法
|
|
29
|
-
|
|
30
|
-
### 基础用法
|
|
31
|
-
|
|
32
|
-
```bash
|
|
33
|
-
# 示例命令
|
|
34
|
-
your-command-here
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
### 高级用法
|
|
38
|
-
|
|
39
|
-
```yaml
|
|
40
|
-
# 配置示例
|
|
41
|
-
key: value
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
## 输出格式
|
|
45
|
-
|
|
46
|
-
描述这个技能的输出结果格式。
|
|
47
|
-
|
|
48
|
-
## 注意事项
|
|
49
|
-
|
|
50
|
-
- 注意事项 1
|
|
51
|
-
- 注意事项 2
|
|
52
|
-
|
|
53
|
-
## 相关技能
|
|
54
|
-
|
|
55
|
-
- [related-skill](../related-skill/)
|
|
56
|
-
- [another-skill](../another-skill/)
|
|
57
|
-
|
|
58
|
-
## 更新日志
|
|
59
|
-
|
|
60
|
-
### 1.0.0 (YYYY-MM-DD)
|
|
61
|
-
- 初始版本
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
# Skill Metadata
|
|
2
|
-
# 这个文件定义技能的基本信息,用于自动发现和索引
|
|
3
|
-
|
|
4
|
-
name: 123-skill
|
|
5
|
-
version: 1.0.0
|
|
6
|
-
author: @username
|
|
7
|
-
description: 简短描述技能功能
|
|
8
|
-
|
|
9
|
-
tags:
|
|
10
|
-
- category1
|
|
11
|
-
- category2
|
|
12
|
-
|
|
13
|
-
triggers:
|
|
14
|
-
- keyword1
|
|
15
|
-
- keyword2
|
|
16
|
-
- "exact phrase"
|
|
17
|
-
|
|
18
|
-
dependencies: [] # 依赖的其他技能
|
|
19
|
-
|
|
20
|
-
difficulty: beginner # beginner | intermediate | advanced
|
|
21
|
-
|
|
22
|
-
# 模板文件
|
|
23
|
-
templates:
|
|
24
|
-
- name: default
|
|
25
|
-
file: templates/default.md
|
|
26
|
-
|
|
27
|
-
# 示例文件
|
|
28
|
-
examples:
|
|
29
|
-
- name: basic
|
|
30
|
-
file: examples/basic.md
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: api-tester
|
|
3
|
-
description: API testing and HTTP request validation tool for REST/GraphQL endpoints
|
|
4
|
-
see_also:
|
|
5
|
-
- mcp-builder
|
|
6
|
-
- webapp-testing
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# API Tester
|
|
10
|
-
|
|
11
|
-
> Test and validate REST/GraphQL APIs with automated request/response checking
|
|
12
|
-
|
|
13
|
-
**Version**: 1.0.0
|
|
14
|
-
**Author**: sumulige
|
|
15
|
-
**Tags**: [api, testing, http, rest, graphql]
|
|
16
|
-
**Difficulty**: 中级
|
|
17
|
-
|
|
18
|
-
---
|
|
19
|
-
|
|
20
|
-
## 概述
|
|
21
|
-
|
|
22
|
-
API Tester 是一个用于测试和验证 API 接口的技能。支持 REST 和 GraphQL,可以自动检查响应状态码、数据结构和性能指标。
|
|
23
|
-
|
|
24
|
-
## 适用场景
|
|
25
|
-
|
|
26
|
-
- 测试 REST API 端点
|
|
27
|
-
- 验证 API 响应格式
|
|
28
|
-
- 检查 HTTP 状态码
|
|
29
|
-
- 测试 API 认证
|
|
30
|
-
- 性能基准测试
|
|
31
|
-
|
|
32
|
-
## 触发关键词
|
|
33
|
-
|
|
34
|
-
```
|
|
35
|
-
api test, "test the api", "check endpoint", http request, "validate api",
|
|
36
|
-
graphql query, rest api, postman, curl
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
## 使用方法
|
|
40
|
-
|
|
41
|
-
### 基础用法
|
|
42
|
-
|
|
43
|
-
```bash
|
|
44
|
-
# 测试 GET 请求
|
|
45
|
-
curl -X GET https://api.example.com/users
|
|
46
|
-
|
|
47
|
-
# 测试 POST 请求
|
|
48
|
-
curl -X POST https://api.example.com/users \
|
|
49
|
-
-H "Content-Type: application/json" \
|
|
50
|
-
-d '{"name": "John"}'
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
### 验证响应
|
|
54
|
-
|
|
55
|
-
```javascript
|
|
56
|
-
// 检查状态码
|
|
57
|
-
response.status === 200
|
|
58
|
-
|
|
59
|
-
// 验证数据结构
|
|
60
|
-
response.data.users.forEach(user => {
|
|
61
|
-
assert(user.id, 'User must have id');
|
|
62
|
-
assert(user.email, 'User must have email');
|
|
63
|
-
});
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
## 输出格式
|
|
67
|
-
|
|
68
|
-
```
|
|
69
|
-
✅ GET /api/users - 200 OK (142ms)
|
|
70
|
-
✅ POST /api/users - 201 Created (89ms)
|
|
71
|
-
❌ GET /api/users/999 - 404 Not Found (45ms)
|
|
72
|
-
```
|
|
73
|
-
|
|
74
|
-
## 注意事项
|
|
75
|
-
|
|
76
|
-
- 使用测试环境 API,避免生产数据修改
|
|
77
|
-
- 检查 API 速率限制
|
|
78
|
-
- 验证认证 Token 有效性
|
|
79
|
-
- 处理分页响应
|
|
80
|
-
|
|
81
|
-
## 相关技能
|
|
82
|
-
|
|
83
|
-
- [mcp-builder](../mcp-builder/) - MCP 服务器构建
|
|
84
|
-
- [webapp-testing](../webapp-testing/) - Web 应用测试
|
|
85
|
-
|
|
86
|
-
## 更新日志
|
|
87
|
-
|
|
88
|
-
### 1.0.0 (2026-01-15)
|
|
89
|
-
- 初始版本
|
|
90
|
-
- 添加 REST/GraphQL 支持
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
# Skill Metadata
|
|
2
|
-
# 这个文件定义技能的基本信息,用于自动发现和索引
|
|
3
|
-
|
|
4
|
-
name: api-tester
|
|
5
|
-
version: 1.0.0
|
|
6
|
-
author: @username
|
|
7
|
-
description: 简短描述技能功能
|
|
8
|
-
|
|
9
|
-
tags:
|
|
10
|
-
- category1
|
|
11
|
-
- category2
|
|
12
|
-
|
|
13
|
-
triggers:
|
|
14
|
-
- keyword1
|
|
15
|
-
- keyword2
|
|
16
|
-
- "exact phrase"
|
|
17
|
-
|
|
18
|
-
dependencies: [] # 依赖的其他技能
|
|
19
|
-
|
|
20
|
-
difficulty: beginner # beginner | intermediate | advanced
|
|
21
|
-
|
|
22
|
-
# 模板文件
|
|
23
|
-
templates:
|
|
24
|
-
- name: default
|
|
25
|
-
file: templates/default.md
|
|
26
|
-
|
|
27
|
-
# 示例文件
|
|
28
|
-
examples:
|
|
29
|
-
- name: basic
|
|
30
|
-
file: examples/basic.md
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
# Code Reviewer 123
|
|
2
|
-
|
|
3
|
-
> 简短描述这个技能的作用(一句话)
|
|
4
|
-
|
|
5
|
-
**版本**: 1.0.0
|
|
6
|
-
**作者**: @username
|
|
7
|
-
**标签**: [category1, category2]
|
|
8
|
-
**难度**: 初级/中级/高级
|
|
9
|
-
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
## 概述
|
|
13
|
-
|
|
14
|
-
详细描述这个技能的功能和用途。
|
|
15
|
-
|
|
16
|
-
## 适用场景
|
|
17
|
-
|
|
18
|
-
- 场景 1
|
|
19
|
-
- 场景 2
|
|
20
|
-
- 场景 3
|
|
21
|
-
|
|
22
|
-
## 触发关键词
|
|
23
|
-
|
|
24
|
-
```
|
|
25
|
-
keyword1, keyword2, "exact phrase"
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
## 使用方法
|
|
29
|
-
|
|
30
|
-
### 基础用法
|
|
31
|
-
|
|
32
|
-
```bash
|
|
33
|
-
# 示例命令
|
|
34
|
-
your-command-here
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
### 高级用法
|
|
38
|
-
|
|
39
|
-
```yaml
|
|
40
|
-
# 配置示例
|
|
41
|
-
key: value
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
## 输出格式
|
|
45
|
-
|
|
46
|
-
描述这个技能的输出结果格式。
|
|
47
|
-
|
|
48
|
-
## 注意事项
|
|
49
|
-
|
|
50
|
-
- 注意事项 1
|
|
51
|
-
- 注意事项 2
|
|
52
|
-
|
|
53
|
-
## 相关技能
|
|
54
|
-
|
|
55
|
-
- [related-skill](../related-skill/)
|
|
56
|
-
- [another-skill](../another-skill/)
|
|
57
|
-
|
|
58
|
-
## 更新日志
|
|
59
|
-
|
|
60
|
-
### 1.0.0 (YYYY-MM-DD)
|
|
61
|
-
- 初始版本
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
# Skill Metadata
|
|
2
|
-
# 这个文件定义技能的基本信息,用于自动发现和索引
|
|
3
|
-
|
|
4
|
-
name: code-reviewer-123
|
|
5
|
-
version: 1.0.0
|
|
6
|
-
author: @username
|
|
7
|
-
description: 简短描述技能功能
|
|
8
|
-
|
|
9
|
-
tags:
|
|
10
|
-
- category1
|
|
11
|
-
- category2
|
|
12
|
-
|
|
13
|
-
triggers:
|
|
14
|
-
- keyword1
|
|
15
|
-
- keyword2
|
|
16
|
-
- "exact phrase"
|
|
17
|
-
|
|
18
|
-
dependencies: [] # 依赖的其他技能
|
|
19
|
-
|
|
20
|
-
difficulty: beginner # beginner | intermediate | advanced
|
|
21
|
-
|
|
22
|
-
# 模板文件
|
|
23
|
-
templates:
|
|
24
|
-
- name: default
|
|
25
|
-
file: templates/default.md
|
|
26
|
-
|
|
27
|
-
# 示例文件
|
|
28
|
-
examples:
|
|
29
|
-
- name: basic
|
|
30
|
-
file: examples/basic.md
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
# My Skill
|
|
2
|
-
|
|
3
|
-
> 简短描述这个技能的作用(一句话)
|
|
4
|
-
|
|
5
|
-
**版本**: 1.0.0
|
|
6
|
-
**作者**: @username
|
|
7
|
-
**标签**: [category1, category2]
|
|
8
|
-
**难度**: 初级/中级/高级
|
|
9
|
-
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
## 概述
|
|
13
|
-
|
|
14
|
-
详细描述这个技能的功能和用途。
|
|
15
|
-
|
|
16
|
-
## 适用场景
|
|
17
|
-
|
|
18
|
-
- 场景 1
|
|
19
|
-
- 场景 2
|
|
20
|
-
- 场景 3
|
|
21
|
-
|
|
22
|
-
## 触发关键词
|
|
23
|
-
|
|
24
|
-
```
|
|
25
|
-
keyword1, keyword2, "exact phrase"
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
## 使用方法
|
|
29
|
-
|
|
30
|
-
### 基础用法
|
|
31
|
-
|
|
32
|
-
```bash
|
|
33
|
-
# 示例命令
|
|
34
|
-
your-command-here
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
### 高级用法
|
|
38
|
-
|
|
39
|
-
```yaml
|
|
40
|
-
# 配置示例
|
|
41
|
-
key: value
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
## 输出格式
|
|
45
|
-
|
|
46
|
-
描述这个技能的输出结果格式。
|
|
47
|
-
|
|
48
|
-
## 注意事项
|
|
49
|
-
|
|
50
|
-
- 注意事项 1
|
|
51
|
-
- 注意事项 2
|
|
52
|
-
|
|
53
|
-
## 相关技能
|
|
54
|
-
|
|
55
|
-
- [related-skill](../related-skill/)
|
|
56
|
-
- [another-skill](../another-skill/)
|
|
57
|
-
|
|
58
|
-
## 更新日志
|
|
59
|
-
|
|
60
|
-
### 1.0.0 (YYYY-MM-DD)
|
|
61
|
-
- 初始版本
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
# Skill Metadata
|
|
2
|
-
# 这个文件定义技能的基本信息,用于自动发现和索引
|
|
3
|
-
|
|
4
|
-
name: my-skill
|
|
5
|
-
version: 1.0.0
|
|
6
|
-
author: @username
|
|
7
|
-
description: 简短描述技能功能
|
|
8
|
-
|
|
9
|
-
tags:
|
|
10
|
-
- category1
|
|
11
|
-
- category2
|
|
12
|
-
|
|
13
|
-
triggers:
|
|
14
|
-
- keyword1
|
|
15
|
-
- keyword2
|
|
16
|
-
- "exact phrase"
|
|
17
|
-
|
|
18
|
-
dependencies: [] # 依赖的其他技能
|
|
19
|
-
|
|
20
|
-
difficulty: beginner # beginner | intermediate | advanced
|
|
21
|
-
|
|
22
|
-
# 模板文件
|
|
23
|
-
templates:
|
|
24
|
-
- name: default
|
|
25
|
-
file: templates/default.md
|
|
26
|
-
|
|
27
|
-
# 示例文件
|
|
28
|
-
examples:
|
|
29
|
-
- name: basic
|
|
30
|
-
file: examples/basic.md
|