workflow-orchestrationlisted
Install: claude install-skill aiskillstore/marketplace
# Skill: workflow-orchestration
## Overview
This skill orchestrates complex workflows by chaining existing plugins into pipelines.
It maintains state awareness through CHANGELOG.md and coordinates cross-plugin operations.
## When to Use
- **Pre-commit validation**: Before any commit, ensure all quality gates pass
- **PR creation**: When changes are ready for review and PR creation
- **CI recovery**: When CI fails and automated diagnosis/fix is needed
- **Multi-step automation**: Any task requiring coordinated plugin execution
## Prerequisites
**Required Plugins:**
- `autonomous-ci` - Validation and CI monitoring
- `code-review` - Quality analysis
- `smart-commit` - Commit message generation
**Optional Plugins:**
- `jules-integration` - Async PR delegation
**Required Skills (from Superpowers):**
- `systematic-debugging` - For failure analysis
- `verification-before-completion` - For evidence-based completion
## Process
### Phase 1: Context Gathering
Before executing any pipeline:
```bash
# 1. Read CHANGELOG for recent context
Read the file: CHANGELOG.md
# Focus on [Unreleased] section to understand pending work
# 2. Check git state
git status --porcelain
git log --oneline -5
# 3. Verify required plugins are available
claude plugin list
```
### Phase 2: Pipeline Selection
Choose the appropriate pipeline based on the task:
| Task | Pipeline | Plugins Used |
|------|----------|--------------|
| Validate before commit | `pre-commit` | autonomous-ci, code-review