From orchestration
Provides detailed documentation on orchestration topics including syntax, features, and reference guides. Supports topic selection via arguments or interactive menu.
How this command is triggered — by the user, by Claude, or both
Slash command
/orchestration:explainThe summary Claude sees in its command listing — used to decide when to auto-load this command
# ⚠️ DEPRECATED: Orchestration Topic Documentation **This command is deprecated.** Skills now contain embedded documentation with progressive disclosure. ## Migration Guide Documentation is now integrated into skills: - **creating-workflows** skill - Workflow creation docs - **executing-workflows** skill - Execution and syntax docs - **managing-agents** skill - Agent lifecycle docs - **designing-syntax** skill - Custom syntax docs - **debugging-workflows** skill - Debugging guides --- ## Legacy Usage (Still Works) Provide detailed documentation on specific orchestration topics. ## Ar...
This command is deprecated. Skills now contain embedded documentation with progressive disclosure.
Documentation is now integrated into skills:
Provide detailed documentation on specific orchestration topics.
Core Topics (docs/topics/):
Features (docs/features/):
Reference (docs/reference/):
If {{ARGS}} is empty, present topic selection menu:
AskUserQuestion({
questions: [{
question: "Which topic would you like to learn about?",
header: "Topic",
multiSelect: false,
options: [
{label: "syntax", description: "Complete syntax guide"},
{label: "custom-syntax", description: "Custom syntax elements"},
{label: "natural-language", description: "Natural language creation"},
{label: "templates", description: "Template system"},
{label: "defined-agents", description: "Reusable agents"},
{label: "temporary-agents", description: "Inline agents ($agent)"},
{label: "agent-promotion", description: "Temp to defined agents"},
{label: "error-handling", description: "Error recovery"},
{label: "examples", description: "Examples gallery"},
{label: "best-practices", description: "Guidelines and patterns"}
]
}]
})
If {{ARGS}} contains a topic name, load the corresponding documentation:
Available topic files:
~/.claude/plugins/repos/orchestration/docs/topics/${topic}.md~/.claude/plugins/repos/orchestration/docs/features/${topic}.md~/.claude/plugins/repos/orchestration/docs/reference/${topic}.md// Try topics directory first
Read(`~/.claude/plugins/repos/orchestration/docs/topics/${topic}.md`)
// If not found, try features directory
// If not found, try reference directory
Display the full content to the user.
If the topic file doesn't exist:
Ask the user what they'd like to do next:
AskUserQuestion({
questions: [{
question: "What would you like to do next?",
header: "Next",
multiSelect: false,
options: [
{label: "Learn another topic", description: "View different topic documentation"},
{label: "See examples", description: "View example workflows"},
{label: "Try it out", description: "Create a workflow using this concept"},
{label: "Return to menu", description: "Go back to main menu"}
]
}]
})
Handler Actions:
/orchestration:explain (without args to show menu)/orchestration:examples/orchestration:run <syntax>/orchestration:menunpx claudepluginhub joshuarweaver/cascade-code-general-misc-3 --plugin sixallfaces-orkestr2plugins reuse this command
First indexed Jan 1, 2026
/explainProvides detailed documentation on orchestration topics including syntax, features, and reference guides. Supports topic selection via arguments or interactive menu.
/orchestr8-expertProvides expert guidance on Orchestr8 optimization strategies and resource creation, including agent building, JIT loading, fragment sizing, and metadata optimization.
/helpDisplays comprehensive documentation for the Orchestrator, covering all commands, development lifecycle, specialized agents, quality gates, and error recovery workflows.
/helpLists and browses OrchestKit skills by category. Supports filtering by build, git, memory, quality, config, explore, plan, or media categories, and shows all user-invocable skills.
/criar-orquestradorGuides brainstorming, specification, and generation of v3.0-pattern orquestradores (commands) with retomada, script-based gates, and 1-line responses.
/explainExplains code, concepts, or system behavior with adaptive depth, persona-based roles, and MCP integration for accurate educational explanations.