Agent Skill
2/7/2026

help

OrchestKit skill directory. Use when you want to see available skills or need help.

Y
yonatangross
75GitHub Stars
1Views
npx skills add yonatangross/orchestkit

SKILL.md

Namehelp
DescriptionOrchestKit skill directory. Use when you want to see available skills or need help.

name: help license: MIT compatibility: "Claude Code 2.1.59+." description: "OrchestKit skill directory with categorized listings. Use when discovering skills for a task, finding the right workflow, or browsing capabilities." argument-hint: "[category]" context: fork version: 1.0.0 author: OrchestKit tags: [help, documentation, skills, discovery, meta] user-invocable: true allowed-tools: [AskUserQuestion] complexity: low model: haiku metadata: category: document-asset-creation

OrchestKit Skill Directory

Interactive guide to all user-invocable skills organized by category.

Quick Start

/ork:help           # Show all categories
/ork:help build     # Show BUILD skills only
/ork:help git       # Show GIT skills only

Argument Resolution

CATEGORY = "$ARGUMENTS[0]"  # Optional category filter: build, git, memory, quality, config, explore, media
# If provided, skip AskUserQuestion and show that category directly.
# $ARGUMENTS is the full string (CC 2.1.59 indexed access)

CRITICAL: Use AskUserQuestion for Category Selection

When invoked without arguments, present categories interactively:

AskUserQuestion(
  questions=[{
    "question": "What type of task are you working on?",
    "header": "Category",
    "options": [
      {"label": "BUILD", "description": "Implement features, brainstorm, verify", "markdown": "```\nBUILD Skills\n────────────\n/ork:implement     Feature impl\n/ork:brainstorming Design explore\n/ork:verify        Test & grade\n```"},
      {"label": "GIT", "description": "Commits, PRs, issues, recovery", "markdown": "```\nGIT Skills\n──────────\n/ork:commit       Conventional commit\n/ork:create-pr    PR with validation\n/ork:fix-issue    Debug + fix + PR\n/ork:git-workflow  Branch patterns\n```"},
      {"label": "MEMORY", "description": "Store decisions, search, sync context", "markdown": "```\nMEMORY Skills\n─────────────\n/ork:remember  Store decisions\n/ork:memory    Search & recall\n```"},
      {"label": "QUALITY", "description": "Assess code, health checks, golden datasets", "markdown": "```\nQUALITY Skills\n──────────────\n/ork:assess     Rate 0-10 + report\n/ork:review-pr  PR review (6 agents)\n/ork:audit-full 1M context audit\n```"},
      {"label": "CONFIG", "description": "Configure OrchestKit, feedback, skill evolution", "markdown": "```\nCONFIG Skills\n─────────────\n/ork:setup      Onboarding wizard\n/ork:configure  Plugin settings\n/ork:doctor     Health diagnostics\n/ork:feedback   Learning prefs\n```"},
      {"label": "EXPLORE", "description": "Explore codebase, coordinate worktrees", "markdown": "```\nEXPLORE Skills\n──────────────\n/ork:explore   Deep codebase search\n               4 parallel explorers\n               Code health scoring\n```"},
      {"label": "MEDIA", "description": "Create demo videos", "markdown": "```\nMEDIA Skills\n────────────\n/ork:demo-producer  Video creation\n  Supports: skill, agent, plugin,\n  tutorial, CLI, code walkthrough\n```"},
      {"label": "Show all", "description": "List all 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-workflowGit workflow with recovery support/ork:git-workflow

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
  • history - View decision timeline
  • viz - Visualize knowledge graph

QUALITY (3 skills)

Assessment and diagnostics

SkillDescriptionExample
/ork:assessRate quality 0-10 with pros/cons/ork:assess src/api/
/ork:doctorOrchestKit health diagnostics/ork:doctor
/ork:golden-datasetAdd documents to golden dataset/ork:golden-dataset

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

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:

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
QUALITY3Assessment & diagnostics
CONFIG3Plugin management
EXPLORE2Code exploration
MEDIA1Content creation
META1This help skill
UPGRADE1Platform upgrade assessment
Total22

CC Built-in Commands (2.1.63+)

These are Claude Code built-in slash commands — not OrchestKit skills:

CommandDescriptionSince
/simplifyReview changed code for reuse, quality, and efficiency, then fix issuesCC 2.1.63
/batchRun batch operations across multiple filesCC 2.1.63
/helpClaude Code built-in helpCC 2.1.0+
/configClaude Code configurationCC 2.1.0+
/clearClear conversation and reset cached skillsCC 2.1.63
/fastToggle fast mode (same model, faster output)CC 2.1.59+

Keyboard Shortcuts

ShortcutActionSince
Ctrl+FFind in session outputCC 2.1.47
EscDismiss autocomplete / cancel edit / stop generationCC 2.1.0+
Shift+EnterNewline in chat input (configurable via chat:newline keybinding)CC 2.1.49
Shift+DownMulti-line input entryCC 2.1.47
Ctrl+CCancel current operationCC 2.1.0+
/exitExit Claude Code sessionCC 2.1.0+

Related Skills

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

References

Load on demand with Read("${CLAUDE_PLUGIN_ROOT}/skills/help/references/<file>"):

FileContent
cc-keyboard-shortcuts.mdCC keyboard shortcuts reference
Skills Info
Original Name:helpAuthor:yonatangross