Help us improve
Share bugs, ideas, or general feedback.
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.
npx claudepluginhub ciciliaeth/claude-skills --plugin engineering-advanced-skillsHow 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
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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.