# Orchestration

> Coordinate multi-step workflows across skills with execution plans, state tracking, and rollback support. Use when tasks require multiple coordinated operations. Use when this capability is needed.

- Skill: `tomevault-io/orchestration-5` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/orchestration-5`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/orchestration-5/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/orchestration-5

---


# Orchestration Skill

Coordinate multi-step workflows with planning, execution, and rollback.

## Allowed Operations

- Create execution plans
- Execute plans step-by-step
- Coordinate between skills
- Track execution state
- Handle rollbacks

## Forbidden Operations

- Execute without plan approval
- Skip plan validation
- Ignore step failures
- Parallel execution without explicit flag
- Modify plan during execution

## Execution Phases

### 1. Plan Phase
- Output all steps
- Identify tools and risks
- NO side effects
- Requires approval

### 2. Validation Phase
- Validate all inputs
- Check permissions
- Dry-run each step

### 3. Execution Phase
- Execute step-by-step
- Abort on error
- Track state for rollback

### 4. Rollback Phase (if needed)
- Execute in reverse order
- Log all actions
- Report final state

## Quick Plan Structure

```yaml
plan:
  id: "plan-001"
  name: "Implement Feature"
  steps:
    - id: "step-1"
      skill: "git-operations"
      action: "create-branch"
      params:
        name: "feature/PROJ-123"
      rollback:
        action: "delete-branch"

    - id: "step-2"
      skill: "jira-write"
      action: "transition"
      params:
        issue: "PROJ-123"
        status: "In Progress"
      dependsOn: ["step-1"]
```

For complete plan examples, see [PLAN-EXAMPLES.md](references/PLAN-EXAMPLES.md).

For rollback patterns, see [ROLLBACK-STRATEGIES.md](references/ROLLBACK-STRATEGIES.md).

## Error Handling

| Scenario | Action |
|----------|--------|
| Single step failure | Pause and report |
| Multiple failures | Abort and rollback |
| Rollback failure | Alert for manual intervention |

## Example Usage

```
Create a plan to implement feature PROJ-123
Execute the approved plan step by step
Resume plan execution from step 3
Rollback the last failed plan
```

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/yoshikemolo) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-12 -->

