AgentSkillsCN

orc-help

介绍 ORC 相关技能。以示例展示各类别(ship、orc),适用于用户寻求 ORC 相关帮助,或希望探索可用技能时使用。

SKILL.md
--- frontmatter
name: orc-help
description: Orientation to ORC skills. Shows categories (ship, orc) with examples. Use when user asks for help with ORC or wants to discover available skills.

ORC Help

Orientation skill that shows available ORC skill categories with examples.

Usage

code
/orc-help                 (show category overview)
/orc-help ship            (show all ship-* skills)
/orc-help orc             (show all orc-* skills)

Behavior

Step 1: Read Skills

Read the deployed skills directory:

bash
ls ~/.claude/skills/

Filter to ORC prefixes only:

  • ship-* - Shipment workflow
  • orc-* - Utilities

Step 2: Check for Argument

If a category argument is provided (ship, orc):

  • List all skills in that category
  • For each, read frontmatter and show name + description
  • Skip to Step 4

If no argument, continue to Step 3.

Step 3: Show Category Overview

Display the category overview:

code
ORC Skill Categories

**ship-*** - Shipment Workflow
  Create and manage shipments from exploration to deployment
  Examples: /ship-new, /ship-plan, /ship-deploy, /ship-complete

**orc-*** - Utilities
  General ORC commands and maintenance
  Examples: /orc-interview, /orc-help

Want details on a category? Say "tell me about ship" or run /orc-help ship

Step 4: Check for Missing Frontmatter

For any skills that couldn't be parsed (missing or invalid frontmatter), add a warning:

code
Skills with missing frontmatter: orc-foo, orc-bar

Category Drill-Down

When user asks about a specific category (e.g., "tell me about ship" or /orc-help ship):

  1. List all skills with that prefix from ~/.claude/skills/
  2. For each skill, read SKILL.md and extract frontmatter
  3. Display as:
code
Ship Skills (Shipment Workflow)

/ship-new
  Create a new shipment for implementation work

/ship-synthesize
  Knowledge compaction for shipments

/ship-plan
  C2/C3 engineering review that creates tasks

/ship-deploy
  Merge shipment branch to master

/ship-complete
  Close a shipment

Notes

  • Only shows ORC-related skills (filtered by prefix)
  • Reads from deployed location (~/.claude/skills/), not source
  • Gracefully handles missing frontmatter with warnings