agentsclimarketplace

N8n

Skill S3YED/appie-kit/skills/misc/n8n

Build Your Own AI Employee. The complete starter kit for OpenClaw + Hermes Agent. 155 deduplicated skills, drag-and-drop workspace, case studies, install scripts.From the repository description

Install
npx -y skills add S3YED/appie-kit --skill n8n

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.0 KB, 561 tokens by cl100k_base, as published. Nobody here has run it

n8n Automation Skill

Purpose

Interact with n8n workflows - list, trigger, monitor, and manage automations.

Capabilities

  • List all workflows (active/inactive)
  • Trigger workflows via webhooks
  • Get execution history
  • Activate/deactivate workflows
  • Create workflows from templates

Configuration Required

Environment Variables

N8N_API_URL=https://app.n8n.weblyfe.nl/api/v1
N8N_API_KEY=your-api-key-here

Getting Your API Key

  1. Go to n8n Settings → API
  2. Create a new API key
  3. Store in environment or config

Usage Examples

List Active Workflows

n8n list --active

Trigger a Workflow

n8n trigger <workflow-id> --data '{"key": "value"}'

Get Execution Status

n8n executions <workflow-id>

Activate Workflow

n8n activate <workflow-id>

API Wrapper

api/n8n.js

const n8n = require('./api/n8n.js');

// List workflows
const workflows = await n8n.listWorkflows();

// Trigger workflow
const result = await n8n.trigger(workflowId, { data });

// Get executions
const executions = await n8n.getExecutions(workflowId);

Integration with Appie

Trigger from Chat

User: "Run the morning brief workflow"
Appie: → n8n.trigger('morning-brief-id', { user: 'Seyed' })

Notify on Completion

// After Appie task completes
await n8n.trigger('notification-workflow', {
    message: 'Task completed',
    appie: 'Appie-1'
});

Common Workflows to Create

WorkflowTriggerPurpose
Morning Brief7:00 AMGenerate daily brief
NotificationWebhookAlert Seyed of events
BackupHourlyBackup important data
SyncOn-changeSync with external services

Error Handling

  • 401: Invalid API key - check N8N_API_KEY
  • 404: Workflow not found - verify workflow-id
  • 429: Rate limit - wait and retry
  • 500: n8n server error - check n8n logs

See Also

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,679. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.