[META] OrchestKit skill directory. Use when you want to see available skills or need help.
View on GitHubyonatangross/orchestkit
ork-workflows
February 4, 2026
Select agents to install to:
npx add-skill https://github.com/yonatangross/orchestkit/blob/main/plugins/ork-workflows/skills/help/SKILL.md -a claude-code --skill helpInstallation paths:
.claude/skills/help/# 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*
| Skill | Description | Example |
|-------|-------------|---------|
| `/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` |
---
### GIT (5 skills)
*Version control and GitHub operations*
| Skill | Description | Example |
|-------|-------------|---------|
| `/ork:commit` | Creates commits with conventional format | `/ork:commit` |
| `/ork:create-pr` | Create GitHub pull requests with validation | `/ork:create-