sequential-execution
Installation
SKILL.md
Sequential Execution
Execute tasks in order when dependencies exist between steps.
When to Use
Use sequential execution when:
- Tasks have dependencies (Task B needs Task A's output)
- Order matters for correctness
- Tasks modify shared state or files
- Workflow has clear sequential stages (e.g., commit → push → PR)
- Later tasks need results from earlier tasks
Parameters
- tasks: Ordered list of task descriptions
- dependencies: Map of task dependencies (which tasks depend on which outputs)