AgentSkillsCN

help

【元】OrchestKit 技能目录。当你想了解可用技能,或需要帮助时,此功能将为你提供指引。

SKILL.md
--- frontmatter
name: help
description: "[META] OrchestKit skill directory. Use when you want to see available skills or need help."
context: fork
version: 1.0.0
author: OrchestKit
tags: [help, documentation, skills, discovery, meta]
user-invocable: true
allowedTools: [AskUserQuestion]

OrchestKit Skill Directory

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

CRITICAL: Use AskUserQuestion for Category Selection

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
  }]
)

Skill Categories

BUILD (3 skills)

Implement features and verify changes

SkillDescriptionExample
/ork:implementFull-power feature implementation with parallel subagents/ork:implement user authentication
/ork:brainstormingDesign exploration with parallel agents/ork:brainstorming API design for payments
/ork:verifyComprehensive verification with parallel test agents/ork:verify authentication flow

GIT (5 skills)

Version control and GitHub operations

SkillDescriptionExample
/ork:commitCreates commits with conventional format/ork:commit
/ork:create-prCreate GitHub pull requests with validation/ork:create-pr
/ork:review-prPR review with parallel specialized agents/ork:review-pr 123
/ork:fix-issueFix GitHub issues with parallel analysis/ork:fix-issue 456
/ork:git-recovery-commandRecovery from git mistakes/ork:git-recovery

MEMORY (2 skills)

Knowledge persistence and retrieval

SkillDescriptionExample
/ork:rememberStore decisions and patterns/ork:remember We use cursor pagination
/ork:memorySearch, load, sync, history, viz/ork:memory search pagination

Subcommands for /ork:memory:

  • search - Search decisions and patterns
  • load - Load session context
  • sync - Sync to mem0 cloud
  • history - View decision timeline
  • viz - Visualize knowledge graph

QUALITY (4 skills)

Assessment and diagnostics

SkillDescriptionExample
/ork:assessRate quality 0-10 with pros/cons/ork:assess src/api/
/ork:assess-complexityAssess task complexity with metrics/ork:assess-complexity src/auth/
/ork:doctorOrchestKit health diagnostics/ork:doctor
/ork:add-goldenAdd documents to golden dataset/ork:add-golden

CONFIG (3 skills)

Plugin configuration and management

SkillDescriptionExample
/ork:configureOrchestKit configuration wizard/ork:configure
/ork:feedbackManage feedback system/ork:feedback
/ork:skill-evolutionEvolve skills based on usage/ork:skill-evolution

EXPLORE (2 skills)

Codebase exploration and coordination

SkillDescriptionExample
/ork:exploreDeep codebase exploration with agents/ork:explore authentication
/ork:worktree-coordinationCoordinate multiple Claude instances/ork:worktree-coordination status

MEDIA (1 skill)

Content creation

SkillDescriptionExample
/ork:demo-producerCreate polished demo videos/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:

code
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.


Skill Count by Category

CategoryCountPurpose
BUILD3Feature development
GIT5Version control
MEMORY2Knowledge persistence
QUALITY4Assessment & diagnostics
CONFIG3Plugin management
EXPLORE2Code exploration
MEDIA1Content creation
META1This help skill
Total21

Note: 4 deprecated memory skills remain available but redirect to the consolidated skills.


Related

  • /help - Claude Code built-in help
  • /config - Claude Code configuration
  • /doctor - OrchestKit health check