From engineering-advanced-skills
Design production-grade multi-agent workflows with clear pattern choice (sequential, parallel, hierarchical), handoff contracts, failure handling, and cost/context controls. Use when architecting a multi-step agent pipeline, choosing between single-agent vs multi-agent approaches, or refactoring an LLM workflow that suffers from context bloat or unreliable handoffs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/engineering-advanced-skills:agent-workflow-designerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Tier:** POWERFUL
Tier: POWERFUL
Category: Engineering
Domain: Multi-Agent Systems / AI Orchestration
Design production-grade multi-agent workflows with clear pattern choice, handoff contracts, failure handling, and cost/context controls.
# Generate a sequential workflow skeleton
python3 scripts/workflow_scaffolder.py sequential --name content-pipeline
# Generate an orchestrator workflow and save it
python3 scripts/workflow_scaffolder.py orchestrator --name incident-triage --output workflows/incident-triage.json
sequential: strict step-by-step dependency chainparallel: fan-out/fan-in for independent subtasksrouter: dispatch by intent/type with fallbackorchestrator: planner coordinates specialists with dependenciesevaluator: generator + quality gate loopDetailed templates: references/workflow-patterns.md
scripts/workflow_scaffolder.py.npx claudepluginhub ciciliaeth/claude-skills --plugin engineering-advanced-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.