n8n-hubCentralized n8n hub for designing reliable flows (idempotency, retries, HITL) and operating them via the public REST API. Use for planning, JSON output, and lifecycle actions like list/publish/debug.
Install via ClawdBot CLI:
clawdbot install codedao12/n8n-hubThis skill merges two tracks:
1) Design: plan dependable workflows and optionally emit workflow.json.
2) Operate: handle workflows/executions via the public REST API.
Suggested environment variables (or store in .n8n-api-config):
export N8N_API_BASE_URL="https://your-instance.app.n8n.cloud/api/v1" # or http://localhost:5678/api/v1
export N8N_API_KEY="your-api-key-here"
Create an API key at: n8n Settings β n8n API β Create an API key.
workflow.json plus a runbook template.Required
Optional
workflow.json + workflow-lab.md (from assets/workflow-lab.md)All requests must include:
X-N8N-API-KEY: $N8N_API_KEY
curl -s -H "X-N8N-API-KEY: $N8N_API_KEY" "$N8N_API_BASE_URL/workflows" \
| jq '.data[] | {id, name, active}'
curl -s -H "X-N8N-API-KEY: $N8N_API_KEY" "$N8N_API_BASE_URL/workflows/{id}"
# Activate (publish)
curl -s -X POST -H "X-N8N-API-KEY: $N8N_API_KEY" \
-H "Content-Type: application/json" \
-d '{"versionId":"","name":"","description":""}' \
"$N8N_API_BASE_URL/workflows/{id}/activate"
# Deactivate
curl -s -X POST -H "X-N8N-API-KEY: $N8N_API_KEY" \
"$N8N_API_BASE_URL/workflows/{id}/deactivate"
curl -s -X POST "$N8N_API_BASE_URL/../webhook/{webhook-path}" \
-H "Content-Type: application/json" \
-d '{"key":"value"}'
curl -s -H "X-N8N-API-KEY: $N8N_API_KEY" \
"$N8N_API_BASE_URL/executions?limit=10" \
| jq '.data[] | {id, workflowId, status, startedAt}'
curl -s -X POST -H "X-N8N-API-KEY: $N8N_API_KEY" \
-H "Content-Type: application/json" \
-d '{"loadWorkflow":true}' \
"$N8N_API_BASE_URL/executions/{id}/retry"
See assets/endpoints-api.md for the complete endpoint list.
Generated Mar 1, 2026
Automates order fulfillment by triggering workflows when new orders arrive via webhook, ensuring idempotency with order IDs as dedup keys. It retries failed steps, logs each run for audit, and sends exceptions to a human review queue for manual intervention.
Manages support tickets by scheduling workflows to sync data from helpdesk systems, validate inputs, and route tickets based on criteria. It includes error handling with retries and logs for compliance, pushing unresolved issues to a review queue.
Aggregates financial data from multiple APIs on a scheduled basis, using dedup keys to prevent duplicate entries and retry policies for API failures. It outputs validated data to databases and sends failures to a review queue for financial oversight.
Orchestrates email and social media campaigns by triggering workflows based on timezone-aware schedules, ensuring idempotency with campaign IDs. It logs execution details, retries on delivery failures, and escalates issues to a marketing team queue.
Monitors IoT devices by processing webhook data from sensors, validating payloads, and triggering alerts. It uses dedup keys for device events, implements retries for network issues, and sends anomalies to a review queue for engineering analysis.
Offers n8n as a service to businesses needing workflow automation, charging subscription fees based on API usage and workflow complexity. Revenue comes from tiered plans that include API access, support, and custom workflow design services.
Provides expert consulting to design and deploy reliable n8n workflows for clients, focusing on idempotency and audit trails. Revenue is generated through project-based fees, ongoing maintenance contracts, and training workshops.
Targets large enterprises by selling comprehensive n8n hub packages that include custom integrations, security controls, and lifecycle management. Revenue streams include licensing fees, API usage charges, and premium support services.
π¬ Integration Tip
Ensure API keys are securely stored in environment variables and test webhook endpoints without API headers to avoid authentication issues during initial setup.
Automatically update Clawdbot and all installed skills once daily. Runs via cron, checks for updates, applies them, and messages the user with a summary of what changed.
Full desktop computer use for headless Linux servers. Xvfb + XFCE virtual desktop with xdotool automation. 17 actions (click, type, scroll, screenshot, drag,...
Essential Docker commands and workflows for container management, image operations, and debugging.
Tool discovery and shell one-liner reference for sysadmin, DevOps, and security tasks. AUTO-CONSULT this skill when the user is: troubleshooting network issues, debugging processes, analyzing logs, working with SSL/TLS, managing DNS, testing HTTP endpoints, auditing security, working with containers, writing shell scripts, or asks 'what tool should I use for X'. Source: github.com/trimstray/the-book-of-secret-knowledge
Deploy applications and manage projects with complete CLI reference. Commands for deployments, projects, domains, environment variables, and live documentation access.
Monitor topics of interest and proactively alert when important developments occur. Use when user wants automated monitoring of specific subjects (e.g., product releases, price changes, news topics, technology updates). Supports scheduled web searches, AI-powered importance scoring, smart alerts vs weekly digests, and memory-aware contextual summaries.