n8n-workflow-templatesProduction-ready n8n workflow templates for AI agents. Deploy pre-built automations for webhooks, RSS monitoring, health checks, social metrics, and data bac...
Install via ClawdBot CLI:
clawdbot install yoder-bawt/n8n-workflow-templatesDeploy production-ready n8n workflows in seconds. Five battle-tested templates plus management scripts for the complete n8n workflow lifecycle.
# Set your n8n credentials
export N8N_HOST="http://localhost:5678"
export N8N_API_KEY="n8n_api_xxxxx"
# List existing workflows
bash list-workflows.sh
# Deploy a template
bash deploy.sh "$N8N_HOST" "$N8N_API_KEY" templates/webhook-to-telegram.json
| Template | Description | Use Case |
|----------|-------------|----------|
| webhook-to-telegram.json | Webhook receiver → Telegram alerts | Instant notifications from any service |
| rss-monitor.json | RSS feed monitoring with filtering | Track blogs, news, releases |
| health-check.json | HTTP health checks with alerts | Monitor services, APIs, websites |
| social-metrics.json | Scheduled social media collection | Track followers, engagement |
| data-backup.json | Automated backup with notifications | Database/file backups |
| Variable | Required | Default | Description |
|----------|----------|---------|-------------|
| N8N_HOST | Yes | - | n8n instance URL |
| N8N_API_KEY | Yes | - | API key from n8n settings |
bash deploy.sh <n8n-url> <api-key> <template-file> [workflow-name]
Arguments:
n8n-url - Full URL to n8n instance (e.g., http://10.0.0.120:5678)api-key - n8n API keytemplate-file - Path to workflow JSON fileworkflow-name (optional) - Override the workflow nameExample:
bash deploy.sh "http://10.0.0.120:5678" "n8n_api_abc123" templates/health-check.json "My Health Monitor"
bash list-workflows.sh <n8n-url> <api-key>
Lists all active workflows with their IDs, names, and activation status.
Receives HTTP POST requests, processes JSON payload, sends formatted messages to Telegram.
Webhook URL: ${N8N_HOST}/webhook/workflow-id
Expected payload:
{
"message": "Alert from my service",
"level": "warning",
"timestamp": "2026-02-10T22:00:00Z"
}
Required setup: Configure Telegram bot token and chat ID in the workflow.
Monitors RSS feeds on schedule, filters by keywords, alerts on new items.
Features:
Required setup: Set RSS feed URL and alert destination.
Performs HTTP health checks, alerts on failure, tracks response times.
Features:
Required setup: Set target URLs and alert channels.
Collects social media metrics on schedule, stores for trending.
Features:
Required setup: Configure API credentials for each platform.
Automated backup workflow with pre/post checks and notifications.
Features:
Required setup: Configure backup source, destination, and credentials.
The scripts use n8n REST API v1:
GET /api/v1/workflows # List workflows
POST /api/v1/workflows # Create workflow
GET /api/v1/workflows/:id # Get workflow
PUT /api/v1/workflows/:id # Update workflow
POST /api/v1/workflows/:id/activate # Activate
POST /api/v1/workflows/:id/deactivate # Deactivate
Full API docs: ${N8N_HOST}/api/v1/docs
Templates are standard n8n workflow JSON. Edit in n8n UI or modify the JSON directly:
# Copy and customize
cp templates/health-check.json my-custom-check.json
# Edit my-custom-check.json with your favorite editor
bash deploy.sh "$N8N_HOST" "$N8N_API_KEY" my-custom-check.json
python3 -c "import json; json.load(open('template.json'))"Generated Mar 1, 2026
Deploy the health-check template to monitor critical services and APIs, alerting teams via Telegram on failures. This ensures uptime and quick incident response for internal systems or customer-facing applications.
Use the rss-monitor template to track RSS feeds for industry news, blog updates, or product releases, filtering by keywords and sending alerts to Discord or email. Ideal for staying informed on competitors or market trends.
Implement the data-backup template to schedule automated backups of databases or files, with pre-validation and notifications for success or failure. Ensures data integrity and compliance for small businesses or development teams.
Leverage the social-metrics template to collect daily follower counts and engagement metrics from platforms like X/Twitter and LinkedIn, storing data for trend analysis. Supports marketing campaigns and performance reporting.
Set up the webhook-to-telegram template to receive webhook alerts from monitoring tools or custom applications, converting JSON payloads into formatted Telegram messages. Enables instant notifications for DevOps or support teams.
Offer managed n8n workflow deployments as a subscription service, using these templates to provide clients with ready-made automations for monitoring, backups, or alerts. Revenue comes from monthly fees and setup charges.
Provide consulting services to businesses for customizing and deploying these n8n templates, integrating them with existing systems like CRMs or databases. Revenue is generated through project-based fees and ongoing support contracts.
Sell specialized n8n workflow templates based on these core ones, targeting niche industries like healthcare or finance with compliance features. Revenue streams include one-time template sales and premium support packages.
💬 Integration Tip
Ensure the n8n instance has API access enabled and test connectivity with list-workflows.sh before deploying templates to avoid common errors like unauthorized access.
A fast Rust-based headless browser automation CLI with Node.js fallback that enables AI agents to navigate, click, type, and snapshot pages via structured commands.
Automate web browser interactions using natural language via CLI commands. Use when the user asks to browse websites, navigate web pages, extract data from websites, take screenshots, fill forms, click buttons, or interact with web applications.
Advanced desktop automation with mouse, keyboard, and screen control
Manage n8n workflows and automations via API. Use when working with n8n workflows, executions, or automation tasks - listing workflows, activating/deactivating, checking execution status, manually triggering workflows, or debugging automation issues.
Design and implement automation workflows to save time and scale operations as a solopreneur. Use when identifying repetitive tasks to automate, building workflows across tools, setting up triggers and actions, or optimizing existing automations. Covers automation opportunity identification, workflow design, tool selection (Zapier, Make, n8n), testing, and maintenance. Trigger on "automate", "automation", "workflow automation", "save time", "reduce manual work", "automate my business", "no-code automation".
Browser automation via Playwright MCP server. Navigate websites, click elements, fill forms, extract data, take screenshots, and perform full browser automation workflows.