Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

n8nn8n 自动化

Agent Skill

n8n 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

563

周安装

23

GitHub Stars

公开资料未说明

下载量

180
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:n8n(n8n 自动化)
来源仓库:https://github.com/gracebotly/flowetic-app
仓库路径:skills/n8n
安装命令:
npx skills add https://github.com/gracebotly/flowetic-app --skill n8n
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/gracebotly/flowetic-app --skill n8n

简介

n8n 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果时使用。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • n8n 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

n8n — Dashboard-First Skill (Workflow Activity Dashboard)

Prime Directive (User Journey)

Your job is to get the agency user from Connected n8n → Live preview dashboard in minutes with low cognitive load:

  1. Celebrate connection (no JSON)
  2. Recommend Workflow Activity Dashboard by default
  3. Auto-map fields silently (ask only when missing)
  4. Show preview with real data
  5. Offer optional "Turn a workflow into a product" next

For MVP, always start by selecting exactly one workflow that already has executions/events so the preview can be generated from real data immediately.

Never ask for UUIDs or show raw payloads unless user explicitly requests "raw".


Step 1 — "Connected!" Success Copy (use in chat + UI-friendly wording)

When n8n is connected and you have events/executions, summarize like:

🎉 n8n Connected

  • ✅ Workflows indexed
  • ✅ Execution activity detected
  • ✅ Ready to build your Workflow Activity Dashboard

Detected signals (example phrasing):

  • execution status (success/failure)
  • execution duration (runtime)
  • workflow identifier/name (grouping)
  • timestamps (trend charts)
  • error messages (for troubleshooting)

Primary CTA language: "Build Dashboard"


Step 2 — Default Template Choice

Default recommendation: Workflow Activity Dashboard (aka workflow monitoring / ops dashboard).

Choose this when the user says anything like:

  • "monitor workflows", "activity dashboard", "failures", "reliability", "ops", "runs", "executions", "SLA", "debug", "what's breaking"

If the user asks for ROI: still start with Workflow Activity Dashboard, then add ROI widgets later (time saved, tasks automated estimates).


Tool Call Sequence (Agent MUST Follow This Order)

Required Tools for Dashboard Generation

StepToolPurposeRequired
1analyzeSchemaDetect fields from events (inspects state + labels JSONB)YES
2generateMappingMap detected fields → template requirements using semantic aliasesYES
3checkMappingCompletenessValidate confidence ≥ 0.75, list missing fieldsYES
4validatePreviewReadinessConfirm all prerequisites before preview generationYES
5runGeneratePreviewWorkflowGenerate the actual previewYES

Usage Rules

  1. ALWAYS call analyzeSchema before any mapping tool
  2. ALWAYS use generateMapping (id: generate-mapping) — NOT proposeMapping
  3. NEVER assume field names — use only what analyzeSchema returns
  4. NEVER proceed to preview if confidence < 0.75 — ask user to confirm missing fields first
  5. If analyzeSchema returns fields from state JSONB (e.g., started_at, status, duration_ms), these are the normalized fields — prefer them over raw labels fields

Template ID Mapping

User SaysTemplate IDRequired Fields
"workflow dashboard", "activity dashboard", "ops dashboard"workflow-dashboardworkflow_id, status, started_at, ended_at
"workflow monitor"workflow-dashboard(same — workflow-monitor is a deprecated alias)
Default for n8nworkflow-dashboard(always use this for n8n)

Step 3 — Auto-Mapping (what fields to look for)

Vocabulary

  • workflow = automation definition
  • execution = one run of a workflow
  • node = a step inside a workflow
  • trigger = how it starts (webhook/schedule/manual)
  • status = outcome (success/error/waiting/running/crashed)

Minimal required signals for the dashboard

Map these with highest priority:

  1. execution_status
  • n8n: status
  • normalize:

- successcompleted - error / crashedfailed - waiting / runningrunning

  1. timestamp
  • prefer: stoppedAt for completed/failed executions
  • fallback: startedAt if stoppedAt missing
  1. duration_ms
  • prefer: duration if present
  • else: derive (stoppedAt - startedAt) in ms when both exist
  • if still running: now - startedAt (optional)

Strongly recommended (for grouping + filtering)

  • workflow_id: workflowId (or workflow name if that's what you have)
  • trigger_type: mode (webhook/manual/trigger)
  • execution_id: id

Step 4 — What to Show (widgets the user expects)

Use user-friendly labels:

  • Total Executions (last 7d)
  • Success Rate
  • Failures (count)
  • Avg Duration
  • Executions Over Time (line chart)
  • Recent Executions (table)
  • Top Failing Workflows (bar list)
  • Latest Errors (safe summaries)

If node-level data is available, offer optional drill-down: "slow node", "failed node" (don't assume it exists).


Step 5 — "Confirm Field Mapping" UX Rules

  • 90% should be auto-matched.
  • Only interrupt the user when required fields are missing or ambiguous.
  • If missing, present 2–3 suggested fields (no manual typing first).

Ask in a UI-friendly way:

  • "I can't find duration. I found: execution_time, runtime_ms, stopped_at-started_at. Which should we use?"

Pre-Preview Checklist (Validate Before Generating)

Before calling runGeneratePreviewWorkflow, verify:

  • analyzeSchema returned fields from state JSONB (not just top-level columns)
  • status field is mapped and has non-empty values
  • started_at field is mapped (source: normalizer's state.started_at)
  • ended_at field is mapped (source: normalizer's state.ended_at)
  • duration_ms is available (computed by normalizer from timestamps)
  • workflow_id is mapped for grouping
  • Overall mapping confidence ≥ 0.75
  • If confidence < 0.75: asked user about missing fields with 2-3 suggestions

If started_at or ended_at are missing but timestamp exists: → Offer: "I found timestamps but not execution start/end times. This means duration-based widgets will be empty. Continue anyway?"


Step 6 — Optional: Turn Into a Product (SaaS wrapper mode)

Only after dashboard preview is working, offer:

"Want to turn one of these workflows into a client-facing product (form → workflow → output), fully white-labeled?"

When user says yes:

  • pick a single workflow
  • define inputs (form fields)
  • define output (success message, file, record created, webhook response)
  • keep it branded and platform-hidden (do not mention n8n in client-facing copy)

Common Data Signals in n8n (don't overwhelm the user)

  • Execution reliability: success/failure, retries
  • Performance: duration, slow runs
  • Volume: runs per day/hour
  • Errors: message, failed node (if available)
  • Triggers: webhook/manual/schedule

For deeper details, read:

  • references/data-signals.md
  • references/workflow-archetypes.md
  • references/mapping-cheatsheet.md

What Not To Do

  • Do not show raw JSON, schemas, UUIDs, or database details unless user asks.
  • Do not assume node-level details exist (only use if present).
  • Do not "invent" ROI numbers. If estimating time saved, label it as estimate and explain the assumption briefly.
  • Do not break the dashboard-first flow by jumping to productization immediately unless user explicitly asks.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.69%
按下载量换算64

Claude

27.89%
按下载量换算50

Cursor

17.14%
按下载量换算31

Gemini CLI

9.64%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills