plugins/patterns/skills/workflow-composition/SKILL.md
Build complex pipelines from reusable workflow components. Compose parent-child workflows, orchestrate multi-stage automation, and eliminate copy-paste YAML.
npx skillsauth add adaptive-enforcement-lab/claude-skills workflow-compositionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
As automation pipelines grow, a single monolithic workflow becomes unmaintainable. Composition patterns let you build complex pipelines from smaller, reusable pieces. A parent workflow can spawn children, wait for their completion, and orchestrate the overall flow.
Test Children First
Always test child workflows independently before composing them into a parent. Debugging failures in composed workflows is much harder than debugging standalone workflows.
| Pattern | Description | | --------- | ------------- | | Spawning Child Workflows | Create and wait for child workflow completion | | Parallel Execution | Run multiple workflows simultaneously | | DAG Orchestration | Dependency-based execution ordering | | Cross-Workflow Communication | Passing data and triggering decoupled workflows |
| Pattern | Description | | --------- | ------------- | | Spawning Child Workflows | Create and wait for child workflow completion | | Parallel Execution | Run multiple workflows simultaneously | | DAG Orchestration | Dependency-based execution ordering | | Cross-Workflow Communication | Passing data and triggering decoupled workflows |
documentation
Workload Identity Federation implementation guide. GKE setup, IAM bindings, ServiceAccount configuration, migration from service account keys, and troubleshooting patterns.
development
Secure GitHub Actions trigger patterns for pull requests, forks, and reusable workflows. Preventing privilege escalation and code injection through trigger misconfiguration.
development
Structured framework for evaluating GitHub Actions security before adoption. Trust tiers, risk assessment checklist, and decision tree for action evaluation.
testing
Securely store GitHub App credentials across different environments. GitHub Actions secrets, external CI, Kubernetes, and automated rotation patterns.