help

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

OrchestKit 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 only

bash
/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
SkillDescriptionExample
/ork:implement
Full-power feature implementation with parallel subagents
/ork:implement user authentication
/ork:brainstorming
Design exploration with parallel agents
/ork:brainstorming API design for payments
/ork:verify
Comprehensive verification with parallel test agents
/ork:verify authentication flow

实现功能并验证变更
技能描述示例
/ork:implement
借助并行子agents实现全功能特性
/ork:implement user authentication
/ork:brainstorming
借助并行agents进行设计探索
/ork:brainstorming API design for payments
/ork:verify
借助并行测试agents进行全面验证
/ork:verify authentication flow

GIT (5 skills)

GIT(5个技能)

Version control and GitHub operations
SkillDescriptionExample
/ork:commit
Creates commits with conventional format
/ork:commit
/ork:create-pr
Create GitHub pull requests with validation
/ork:create-pr
/ork:review-pr
PR review with parallel specialized agents
/ork:review-pr 123
/ork:fix-issue
Fix GitHub issues with parallel analysis
/ork:fix-issue 456
/ork:git-recovery
Recovery from git mistakes
/ork:git-recovery

版本控制与GitHub操作
技能描述示例
/ork:commit
创建符合规范格式的提交
/ork:commit
/ork:create-pr
创建带验证的GitHub拉取请求
/ork:create-pr
/ork:review-pr
借助并行专用agents进行PR评审
/ork:review-pr 123
/ork:fix-issue
借助并行分析修复GitHub问题
/ork:fix-issue 456
/ork:git-recovery
从Git错误中恢复
/ork:git-recovery

MEMORY (2 skills)

MEMORY(2个技能)

Knowledge persistence and retrieval
SkillDescriptionExample
/ork:remember
Store decisions and patterns
/ork:remember We use cursor pagination
/ork:memory
Search, load, sync, history, viz
/ork:memory search pagination
Subcommands for
/ork:memory
:
  • search
    - Search decisions and patterns
  • load
    - Load session context
  • history
    - View decision timeline
  • viz
    - Visualize knowledge graph

知识持久化与检索
技能描述示例
/ork:remember
存储决策与模式
/ork:remember We use cursor pagination
/ork:memory
搜索、加载、同步、历史记录、可视化
/ork:memory search pagination
/ork:memory
的子命令:
  • search
    - 搜索决策与模式
  • load
    - 加载会话上下文
  • history
    - 查看决策时间线
  • viz
    - 可视化知识图谱

QUALITY (4 skills)

QUALITY(4个技能)

Assessment and diagnostics
SkillDescriptionExample
/ork:assess
Rate quality 0-10 with pros/cons
/ork:assess src/api/
/ork:assess-complexity
Assess task complexity with metrics
/ork:assess-complexity src/auth/
/ork:doctor
OrchestKit health diagnostics
/ork:doctor
/ork:add-golden
Add documents to golden dataset
/ork:add-golden

评估与诊断
技能描述示例
/ork:assess
以0-10分评级质量并列出优缺点
/ork:assess src/api/
/ork:assess-complexity
借助指标评估任务复杂度
/ork:assess-complexity src/auth/
/ork:doctor
OrchestKit健康诊断
/ork:doctor
/ork:add-golden
向黄金数据集添加文档
/ork:add-golden

CONFIG (3 skills)

CONFIG(3个技能)

Plugin configuration and management
SkillDescriptionExample
/ork:configure
OrchestKit configuration wizard
/ork:configure
/ork:feedback
Manage feedback system
/ork:feedback
/ork:skill-evolution
Evolve skills based on usage
/ork:skill-evolution

插件配置与管理
技能描述示例
/ork:configure
OrchestKit配置向导
/ork:configure
/ork:feedback
管理反馈系统
/ork:feedback
/ork:skill-evolution
根据使用情况优化技能
/ork:skill-evolution

EXPLORE (2 skills)

EXPLORE(2个技能)

Codebase exploration and coordination
SkillDescriptionExample
/ork:explore
Deep codebase exploration with agents
/ork:explore authentication
/ork:worktree-coordination
Coordinate multiple Claude instances
/ork:worktree-coordination status

代码库探索与协作
技能描述示例
/ork:explore
借助agents进行深度代码库探索
/ork:explore authentication
/ork:worktree-coordination
协调多个Claude实例
/ork:worktree-coordination status

MEDIA (1 skill)

MEDIA(1个技能)

Content creation
SkillDescriptionExample
/ork:demo-producer
Create polished demo videos
/ork:demo-producer commit skill

内容创作
技能描述示例
/ork:demo-producer
创建精美的演示视频
/ork:demo-producer commit skill

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-pr
Just 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

各类别技能数量

CategoryCountPurpose
BUILD3Feature development
GIT5Version control
MEMORY2Knowledge persistence
QUALITY4Assessment & diagnostics
CONFIG3Plugin management
EXPLORE2Code exploration
MEDIA1Content creation
META1This help skill
UPGRADE1Platform upgrade assessment
Total23

类别数量用途
BUILD3功能开发
GIT5版本控制
MEMORY2知识持久化
QUALITY4评估与诊断
CONFIG3插件管理
EXPLORE2代码探索
MEDIA1内容创作
META1本帮助技能
UPGRADE1平台升级评估
总计23

Related Skills

相关技能

  • /help
    - Claude Code built-in help
  • /config
    - Claude Code configuration
  • /doctor
    - OrchestKit health check
  • /help
    - Claude Code内置帮助
  • /config
    - Claude Code配置
  • /doctor
    - OrchestKit健康检查