| name | ae-ltd-n8n-orbit |
| description | Use when converting plain-language automation goals into production-ready n8n workflow JSON with retries, error paths, and credential-safe placeholders. AE.LTD automation blueprint workflow. |
AE.LTD n8n Orbit
What This Skill Does
Converts plain-language automation goals into production-ready n8n workflow JSON with retries, error paths, and credential-safe placeholders. Niche gem source: n8n-workflow plugin from awesome-claude-code-toolkit.
- Parse business intent into trigger/transform/action
- Design deterministic node graph with error branches
- Generate n8n JSON with reliability controls
- Deliver operator handoff with import steps
Quick Start
User: "When a GitHub PR is merged, post to Slack and update Jira"
→ Parse intent → Design nodes → Generate JSON → Add error handling
Workflow
-
Parse business intent into trigger, transform, action.
Clarify source events, processing logic, and destination systems.
-
Design node graph.
Map deterministic node order with named branches for success/failure.
-
Generate n8n JSON.
Use current node types with explicit config and credential placeholders.
-
Add reliability controls.
Retries, timeouts, dead-letter/error notifications, and idempotency keys.
-
Deliver operator handoff.
Include import steps, required credentials, and environment assumptions.
Guardrails
- Never hardcode secrets; always use credential references.
- Include explicit error-handling paths for production workflows.
- Prefer reusable sub-workflows for repeated logic.
- Validate JSON structure before handoff.