help
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseOrchestKit Skill Directory
OrchestKit技能目录
Interactive guide to all user-invocable skills organized by category.
按类别整理的所有可用户调用技能的交互式指南。
Quick Start
快速开始
bash
/ork:help # Show all categories
/ork:help build # Show BUILD skills only
/ork:help git # Show GIT skills onlybash
/ork:help # 显示所有类别
/ork:help build # 仅显示BUILD类技能
/ork:help git # 仅显示GIT类技能CRITICAL: Use AskUserQuestion for Category Selection
重要提示:使用AskUserQuestion进行类别选择
When invoked without arguments, present categories interactively:
python
AskUserQuestion(
questions=[{
"question": "What type of task are you working on?",
"header": "Category",
"options": [
{"label": "BUILD", "description": "Implement features, brainstorm, verify"},
{"label": "GIT", "description": "Commits, PRs, issues, recovery"},
{"label": "MEMORY", "description": "Store decisions, search, sync context"},
{"label": "QUALITY", "description": "Assess code, health checks, golden datasets"},
{"label": "CONFIG", "description": "Configure OrchestKit, feedback, skill evolution"},
{"label": "EXPLORE", "description": "Explore codebase, coordinate worktrees"},
{"label": "MEDIA", "description": "Create demo videos"},
{"label": "Show all", "description": "List all 21 skills"}
],
"multiSelect": false
}]
)当不带参数调用时,以交互式方式展示类别:
python
AskUserQuestion(
questions=[{
"question": "What type of task are you working on?",
"header": "Category",
"options": [
{"label": "BUILD", "description": "Implement features, brainstorm, verify"},
{"label": "GIT", "description": "Commits, PRs, issues, recovery"},
{"label": "MEMORY", "description": "Store decisions, search, sync context"},
{"label": "QUALITY", "description": "Assess code, health checks, golden datasets"},
{"label": "CONFIG", "description": "Configure OrchestKit, feedback, skill evolution"},
{"label": "EXPLORE", "description": "Explore codebase, coordinate worktrees"},
{"label": "MEDIA", "description": "Create demo videos"},
{"label": "Show all", "description": "List all 21 skills"}
],
"multiSelect": false
}]
)Skill Categories
技能类别
BUILD (3 skills)
BUILD(3个技能)
Implement features and verify changes
| Skill | Description | Example |
|---|---|---|
| Full-power feature implementation with parallel subagents | |
| Design exploration with parallel agents | |
| Comprehensive verification with parallel test agents | |
实现功能并验证变更
| 技能 | 描述 | 示例 |
|---|---|---|
| 借助并行子agents实现全功能特性 | |
| 借助并行agents进行设计探索 | |
| 借助并行测试agents进行全面验证 | |
GIT (5 skills)
GIT(5个技能)
Version control and GitHub operations
| Skill | Description | Example |
|---|---|---|
| Creates commits with conventional format | |
| Create GitHub pull requests with validation | |
| PR review with parallel specialized agents | |
| Fix GitHub issues with parallel analysis | |
| Recovery from git mistakes | |
版本控制与GitHub操作
| 技能 | 描述 | 示例 |
|---|---|---|
| 创建符合规范格式的提交 | |
| 创建带验证的GitHub拉取请求 | |
| 借助并行专用agents进行PR评审 | |
| 借助并行分析修复GitHub问题 | |
| 从Git错误中恢复 | |
MEMORY (2 skills)
MEMORY(2个技能)
Knowledge persistence and retrieval
| Skill | Description | Example |
|---|---|---|
| Store decisions and patterns | |
| Search, load, sync, history, viz | |
Subcommands for :
/ork:memory- - Search decisions and patterns
search - - Load session context
load - - View decision timeline
history - - Visualize knowledge graph
viz
知识持久化与检索
| 技能 | 描述 | 示例 |
|---|---|---|
| 存储决策与模式 | |
| 搜索、加载、同步、历史记录、可视化 | |
/ork:memory- - 搜索决策与模式
search - - 加载会话上下文
load - - 查看决策时间线
history - - 可视化知识图谱
viz
QUALITY (4 skills)
QUALITY(4个技能)
Assessment and diagnostics
| Skill | Description | Example |
|---|---|---|
| Rate quality 0-10 with pros/cons | |
| Assess task complexity with metrics | |
| OrchestKit health diagnostics | |
| Add documents to golden dataset | |
评估与诊断
| 技能 | 描述 | 示例 |
|---|---|---|
| 以0-10分评级质量并列出优缺点 | |
| 借助指标评估任务复杂度 | |
| OrchestKit健康诊断 | |
| 向黄金数据集添加文档 | |
CONFIG (3 skills)
CONFIG(3个技能)
Plugin configuration and management
| Skill | Description | Example |
|---|---|---|
| OrchestKit configuration wizard | |
| Manage feedback system | |
| Evolve skills based on usage | |
插件配置与管理
| 技能 | 描述 | 示例 |
|---|---|---|
| OrchestKit配置向导 | |
| 管理反馈系统 | |
| 根据使用情况优化技能 | |
EXPLORE (2 skills)
EXPLORE(2个技能)
Codebase exploration and coordination
| Skill | Description | Example |
|---|---|---|
| Deep codebase exploration with agents | |
| Coordinate multiple Claude instances | |
代码库探索与协作
| 技能 | 描述 | 示例 |
|---|---|---|
| 借助agents进行深度代码库探索 | |
| 协调多个Claude实例 | |
MEDIA (1 skill)
MEDIA(1个技能)
Content creation
| Skill | Description | Example |
|---|---|---|
| Create polished demo videos | |
内容创作
| 技能 | 描述 | 示例 |
|---|---|---|
| 创建精美的演示视频 | |
Pro Tip: Just Describe What You Want
专业提示:直接描述你的需求
You don't need to memorize skills! OrchestKit auto-suggests the right skill based on your prompt:
User: "I need to implement user login"
→ OrchestKit suggests: /ork:implement
User: "Show me how the payment system works"
→ OrchestKit suggests: /ork:explore
User: "Review PR 123"
→ OrchestKit suggests: /ork:review-prJust describe your task naturally and OrchestKit will recommend the appropriate skill or agent.
你不需要记住所有技能!OrchestKit会根据你的提示自动推荐合适的技能:
User: "I need to implement user login"
→ OrchestKit suggests: /ork:implement
User: "Show me how the payment system works"
→ OrchestKit suggests: /ork:explore
User: "Review PR 123"
→ OrchestKit suggests: /ork:review-pr只需自然描述你的任务,OrchestKit就会推荐合适的技能或agent。
Skill Count by Category
各类别技能数量
| Category | Count | Purpose |
|---|---|---|
| BUILD | 3 | Feature development |
| GIT | 5 | Version control |
| MEMORY | 2 | Knowledge persistence |
| QUALITY | 4 | Assessment & diagnostics |
| CONFIG | 3 | Plugin management |
| EXPLORE | 2 | Code exploration |
| MEDIA | 1 | Content creation |
| META | 1 | This help skill |
| UPGRADE | 1 | Platform upgrade assessment |
| Total | 23 |
| 类别 | 数量 | 用途 |
|---|---|---|
| BUILD | 3 | 功能开发 |
| GIT | 5 | 版本控制 |
| MEMORY | 2 | 知识持久化 |
| QUALITY | 4 | 评估与诊断 |
| CONFIG | 3 | 插件管理 |
| EXPLORE | 2 | 代码探索 |
| MEDIA | 1 | 内容创作 |
| META | 1 | 本帮助技能 |
| UPGRADE | 1 | 平台升级评估 |
| 总计 | 23 |
Related Skills
相关技能
- - Claude Code built-in help
/help - - Claude Code configuration
/config - - OrchestKit health check
/doctor
- - Claude Code内置帮助
/help - - Claude Code配置
/config - - OrchestKit健康检查
/doctor