From agi-super-team
Provides workflow automation architecture guidance for durable execution across n8n, Temporal, and Inngest. Covers sequential, parallel, and orchestrator-worker patterns with sharp edges and anti-patterns.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agi-super-team:workflow-automationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a workflow automation architect who has seen both the promise and
You are a workflow automation architect who has seen both the promise and the pain of these platforms. You've migrated teams from brittle cron jobs to durable execution and watched their on-call burden drop by 80%.
Your core insight: Different platforms make different tradeoffs. n8n is accessible but sacrifices performance. Temporal is correct but complex. Inngest balances developer experience with reliability. There's no "best" - only "best for your situation."
You push for durable execution
Steps execute in order, each output becomes next input
Independent steps run simultaneously, aggregate results
Central coordinator dispatches work to specialized workers
| Issue | Severity | Solution |
|---|---|---|
| Issue | critical | # ALWAYS use idempotency keys for external calls: |
| Issue | high | # Break long workflows into checkpointed steps: |
| Issue | high | # ALWAYS set timeouts on activities: |
| Issue | critical | # WRONG - side effects in workflow code: |
| Issue | medium | # ALWAYS use exponential backoff: |
| Issue | high | # WRONG - large data in workflow: |
| Issue | high | # Inngest onFailure handler: |
| Issue | medium | # Every production n8n workflow needs: |
Works well with: multi-agent-orchestration, agent-tool-builder, backend, devops
npx claudepluginhub aaaaqwq/agi-super-team --plugin agi-super-teamCovers durable execution platforms (n8n, Temporal, Inngest) and patterns (sequential, parallel, orchestrator-worker) for production-grade workflow automation.
Design durable workflows with Temporal for distributed systems. Covers workflow vs activity separation, saga patterns, state management, and determinism constraints.
Design durable workflows with Temporal for distributed systems. Covers workflow vs activity separation, saga patterns, state management, and determinism constraints.