Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

n8n-buildern8n 建设者

Agent Skill

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

总安装

706

周安装

30

GitHub Stars

2

下载量

247
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/bsamiee/parametric_forge --skill n8n-builder

简介

n8n-builder 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于 n8n 工作流构建、自动化脚本开发和系统集成场景。
  • 通过关键词搜索、来源仓库和原始 README 核验具体用法,结合安装命令使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

[H1][N8N-BUILDER]

Dictum: *Schema compliance enables n8n import without runtime validation errors.*

Generate valid n8n workflow JSON.

Tasks:

  1. Read schema.md — Root structure, settings
  2. Read nodes.md — Node definition, typeVersion
  3. Read connections.md — Graph topology, AI types
  4. (dynamic values) Read expressions.md — Variables, functions
  5. (specific nodes) Read integrations.md — Node parameters
  6. Generate JSON — Apply template from workflow.template.md
  7. Validate — Run uv run.claude/skills/n8n-builder/scripts/validate-workflow.py

REFERENCE): index.md — File listing.


[0][N8N_2.0]

Dictum: *Breaking changes invalidate pre-2025 patterns.*

Breaking Changes (December 2025):

  • Database — PostgreSQL required; MySQL/MariaDB support dropped.
  • Python"language": "python" removed; use "pythonNative" with task runners.
  • SecurityExecuteCommand and LocalFileTrigger disabled by default.
  • Code Isolation — Environment variable access blocked in Code nodes (N8N_BLOCK_ENV_ACCESS_IN_NODE=true).
  • Agent Type — Agent type selection removed (v1.82+); all agents are Tools Agent.

[1][SCHEMA]

Dictum: *Root structure enables n8n parser recognition and execution.*

Guidance:

  • AI Workflows — Require executionOrder: "v1" in settings; async node ordering fails without.
  • Portability — Credential IDs and errorWorkflow UUIDs are instance-specific; expect reassignment post-import.
  • Optional Fields — Include empty objects ("pinData": {}) over omission; prevents import edge cases.
  • Sub-Workflow Typing — Use workflowInputs schema on trigger nodes to validate caller payloads before execution.
  • pinData Limits — Keep under 12MB; large payloads slow editor rendering and cannot contain binary data.

Best-Practices:

  • [ALWAYS] Set "active": false on generation; activation is a deployment decision.
  • [NEVER] Hardcode credential IDs; use placeholder names for cross-instance transfer.

[2][NODES]

Dictum: *Unique identity enables deterministic cross-node references.*

Guidance:

  • Name Collisions — n8n auto-renames duplicates (Set→Set1); breaks $('NodeName') expressions silently.
  • Version Matching — typeVersion must match target n8n instance; newer versions may lack backward compatibility.
  • Error Strategy — Use onError: "continueErrorOutput" for fault-tolerant pipelines; default stops execution.
  • Node Documentation — Use notes field for inline documentation; notesInFlow: true displays on canvas.

Best-Practices:

  • [ALWAYS] Generate UUID per node before building connections; connections reference node.name.
  • [ALWAYS] Space nodes 200px horizontal, 150px vertical for canvas readability.

[3][CONNECTIONS]

Dictum: *Connection types enable workflow mode distinction at parse time.*

Guidance:

  • AI vs Main — AI nodes require specialized types (ai_tool, ai_languageModel); main causes silent tool invisibility.
  • Fan-out — Single output to multiple nodes executes in parallel; order within array is non-deterministic.
  • Multi-output — Array index maps to output port; IF node: index 0 = true branch, index 1 = false branch.
  • Single Model — Agent accepts exactly one ai_languageModel connection; multiple models conflict silently.
  • Memory Scopeai_memory persists within single trigger execution only; no cross-session persistence.

Best-Practices:

  • [ALWAYS] Match connection key AND type property; mismatches cause silent failures.
  • [NEVER] Connect AI tools via main type; agent cannot discover them.
  • [NEVER] Connect multiple language models to single agent; use Model Selector node for dynamic selection.

[4][EXPRESSIONS]

Dictum: *Dynamic evaluation eliminates hardcoded parameters.*

Guidance:

  • Static vs Dynamic — Prefix = signals evaluation; without it, value is literal string including {{}}.
  • Pinned Data — Test mode pins lack execution context; .item fails, use .first() or .all()[0] instead.
  • Complex Logic — IIFE pattern {{(function(){return...})()}} enables multi-statement evaluation.
  • Scope Confusion$json accesses current node input only; use $('NodeName').item.json for other nodes.

Best-Practices:

  • [ALWAYS] Use $('NodeName') for cross-node data; $json only accesses current node input.
  • [ALWAYS] Escape quotes in JSON strings or use template literals to prevent invalid JSON.
  • [NEVER] Assume .item works in all contexts; pinned data testing requires explicit accessors.

[5][INTEGRATIONS]

Dictum: *Node type selection determines integration capability.*

Guidance:

  • Trigger Selection — Webhook for external calls, scheduleTrigger for periodic; choose based on initiation source.
  • AI Tool Visibility — Sub-workflow tools require description parameter; agent uses it for tool selection reasoning.
  • Code Language — Use "pythonNative" for Python; "python" is deprecated.
  • Error Propagation — Use stopAndError node for controlled failures; triggers designated error workflow.
  • 2025 Features — MCP nodes enable cross-agent interoperability; Guardrails nodes enforce AI output safety.
  • Output ParseroutputParserStructured jsonSchema must be static; expressions in schema are ignored silently.
  • Batch Processing — Use splitInBatches for large datasets to prevent memory exhaustion; process in chunks.

Best-Practices:

  • [ALWAYS] Set responseMode: "lastNode" for webhook→response patterns; ensures output reaches caller.
  • [ALWAYS] Include description on HTTP nodes used as AI tools; undocumented tools are invisible to agent.
  • [ALWAYS] Include unique webhookId per workflow to prevent path collisions across workflows.

[6][RAG]

Dictum: *RAG pipelines ground LLM responses in domain-specific knowledge.*

Guidance:

  • Vector Store Selection — Simple for development; PGVector/Pinecone/Qdrant for production persistence.
  • Embedding Consistency — Same embedding model required for insert and query; mismatch causes semantic drift.
  • Chunk Strategy — Recursive Character splitter recommended; splits Markdown/HTML/code before character fallback.
  • Memory vs Chains — Only agents support memory; chains are stateless single-turn processors.
  • Retriever Modes — MultiQuery for complex questions; Contextual Compression for noise reduction.

Best-Practices:

  • [ALWAYS] Match embedding model between document insert and query operations.
  • [ALWAYS] Use ai_memory connection type for memory nodes; main silently fails.
  • [NEVER] Use Simple Vector Store in production; data lost on restart, global user access.

[7][VALIDATION]

Dictum: *Pre-export validation prevents n8n import failures.*

Script:

uv run .claude/skills/n8n-builder/scripts/validate-workflow.py workflow.json
uv run .claude/skills/n8n-builder/scripts/validate-workflow.py workflow.json --strict

Checks (12 automated):

  • root_required — name, nodes, connections present
  • node_id_unique / node_name_unique — no duplicates
  • node_id_uuid — valid UUID format
  • conn_targets_exist — connection targets reference existing nodes
  • conn_ai_type_match — AI connection key matches type property
  • settings_exec_order_ai — LangChain workflows require executionOrder: "v1"
  • settings_caller_policy / node_on_error — enum value validation

Guidance:

  • API Deployment — Use POST then PUT pattern; single POST may ignore settings due to API bug.
  • PerformancesaveExecutionProgress: true triggers DB I/O per node; disable for high-throughput (>1000 RPM).
  • Source Control — Strip instanceId when sharing; credential files contain stubs only, not secrets.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.36%
按下载量换算70

OpenCode

24.41%
按下载量换算60

Antigravity

17.41%
按下载量换算43

Gemini CLI

11.68%
按下载量换算29

Codex

8.24%
按下载量换算20

Cursor

3.9%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills