| name | orchestration-commands |
| description | Registry and index of all orchestration command skills |
| category | Orchestration Framework |
| metadata | {"version":"1.0","source":"Agent33","original_command":"COMMAND_REGISTRY","tags":["orchestration","commands","registry","index"]} |
Orchestration Command Registry
This registry defines all available orchestration command skills. Each command is a standalone skill that can be invoked independently.
Available Commands
Schema
Each command skill follows this schema:
id: string
name: string
description: string
triggers:
- manual
- scheduled
- event
inputs:
- document: string
required: bool
outputs:
- document: string
action: string
Command Conventions
Invocation
Commands are invoked by referencing the skill name:
orch-{command} [required-args] [optional-args]
Standard Outputs
All commands should produce:
- Primary artifacts (code, docs, tests)
- Evidence of execution
- Task tracking update (if applicable)
Error Handling
- Commands should fail gracefully with clear messages
- Partial progress should be captured
- Escalation path should be clear
Adding New Commands
- Create a new subdirectory under
commands/ named orch-<id>/
- Add a
SKILL.md following the frontmatter schema
- Add an entry to this registry table
- Document any new artifacts or dependencies
Related Skills
../handoff-protocol/ - Handoff protocol definitions (when available)
../../GENERAL CODING WORKFLOWS/session-wrap/ - Session wrap workflow