# Send n8n Workflow Templates to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "n8n-workflow-templates",
    "name": "n8n Workflow Templates",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/yoder-bawt/n8n-workflow-templates",
    "canonicalUrl": "https://clawhub.ai/yoder-bawt/n8n-workflow-templates",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/n8n-workflow-templates",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=n8n-workflow-templates",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "activate-workflow.sh",
      "delete-workflow.sh",
      "deploy.sh",
      "list-workflows.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/n8n-workflow-templates"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/n8n-workflow-templates",
    "downloadUrl": "https://openagent3.xyz/downloads/n8n-workflow-templates",
    "agentUrl": "https://openagent3.xyz/skills/n8n-workflow-templates/agent",
    "manifestUrl": "https://openagent3.xyz/skills/n8n-workflow-templates/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/n8n-workflow-templates/agent.md"
  }
}
```
## Documentation

### n8n Workflow Templates

Deploy production-ready n8n workflows in seconds. Five battle-tested templates plus management scripts for the complete n8n workflow lifecycle.

### Quick Start

# 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

### Templates

TemplateDescriptionUse Casewebhook-to-telegram.jsonWebhook receiver → Telegram alertsInstant notifications from any servicerss-monitor.jsonRSS feed monitoring with filteringTrack blogs, news, releaseshealth-check.jsonHTTP health checks with alertsMonitor services, APIs, websitessocial-metrics.jsonScheduled social media collectionTrack followers, engagementdata-backup.jsonAutomated backup with notificationsDatabase/file backups

### Environment Variables

VariableRequiredDefaultDescriptionN8N_HOSTYes-n8n instance URLN8N_API_KEYYes-API key from n8n settings

### Deployment

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 key
template-file - Path to workflow JSON file
workflow-name (optional) - Override the workflow name

Example:

bash deploy.sh "http://10.0.0.120:5678" "n8n_api_abc123" templates/health-check.json "My Health Monitor"

### Listing Workflows

bash list-workflows.sh <n8n-url> <api-key>

Lists all active workflows with their IDs, names, and activation status.

### webhook-to-telegram

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.

### rss-monitor

Monitors RSS feeds on schedule, filters by keywords, alerts on new items.

Features:

Runs every 15 minutes
Keyword filtering (include/exclude)
Duplicate detection
Multi-channel alerts (Telegram, Discord, email)

Required setup: Set RSS feed URL and alert destination.

### health-check

Performs HTTP health checks, alerts on failure, tracks response times.

Features:

Configurable check interval
Response time thresholds
Consecutive failure alerts
Status history tracking

Required setup: Set target URLs and alert channels.

### social-metrics

Collects social media metrics on schedule, stores for trending.

Features:

Daily metric collection
Multi-platform support (X/Twitter, LinkedIn, etc.)
Data storage in n8n or external DB
Trend analysis ready

Required setup: Configure API credentials for each platform.

### data-backup

Automated backup workflow with pre/post checks and notifications.

Features:

Schedule-based execution
Pre-backup validation
Backup verification
Success/failure notifications
Retention policy enforcement

Required setup: Configure backup source, destination, and credentials.

### API Reference

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

### Customizing Templates

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

### "Unauthorized" error

Verify API key is correct
Check API key hasn't expired in n8n settings

### "Connection refused"

Verify n8n is running
Check N8N_HOST includes correct port
Ensure firewall allows connection

### Workflow won't activate

Check all credentials are configured in the workflow
Verify webhook nodes don't conflict with existing webhooks
Check n8n execution logs for errors

### Template deployment fails

Validate JSON: python3 -c "import json; json.load(open('template.json'))"
Check n8n version compatibility (templates tested on v1.0+)

### Requirements

n8n instance v1.0 or later
API access enabled in n8n settings
curl and bash
Network access to n8n instance

### See Also

n8n Documentation: https://docs.n8n.io/
n8n API Reference: https://docs.n8n.io/api/
Workflow examples: https://n8n.io/workflows/
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: yoder-bawt
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/n8n-workflow-templates)
- [Send to Agent page](https://openagent3.xyz/skills/n8n-workflow-templates/agent)
- [JSON manifest](https://openagent3.xyz/skills/n8n-workflow-templates/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/n8n-workflow-templates/agent.md)
- [Download page](https://openagent3.xyz/downloads/n8n-workflow-templates)