What problem does it solve?
This Skill provides a robust framework for designing and implementing complex, multi-step workflows where skills pass data and state between each other using artifacts, ensuring deterministic and auditable execution.
Core Features & Use Cases
- Skill Chaining: Define sequences of skills that execute in order, with the output of one feeding into the next.
- Artifact-Based State Handoff: Use standardized file artifacts for passing complex data between skills, avoiding context window limitations and ensuring persistence.
- Workflow Isolation: Control context inheritance (
fork vs. inherit) for cleaner execution and parallel processing.
- Preprocessing: Use
!command syntax to inject live system data directly into prompts before they are sent to the model.
- Use Case: Building an automated code review pipeline where one skill generates a summary, another performs a security audit, and a third generates a report, all passing their findings via artifacts.
Quick Start
Use the skills-workflows skill to design a multi-skill pipeline for code review, starting with a triage skill and ending with a shipping skill.