pull-schemas

pull-schemas is a skill for Claude Code from neurawork-git/n8n-autopilot. It costs 87 tokens per session (1,164 once invoked), scanned A, original, MIT.

A command-line workflow for downloading n8n node definitions and rebuilding local schema files. n8n is a tool for building automations from connected nodes.

In plain words
What is it for?
Use it to discover node types in local workflows, fetch core or community node details, extract schemas from npm packages, and rebuild the schema index.
Why use it?
It keeps offline validation schemas up to date and handles nodes that are missing from the main index.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the n8n-autopilot plugin — 24 skills, 12 agents, 4 hooks shipped together

Good fit Use it to discover node types in local workflows, fetch core or community node details, extract schemas from npm packages, and rebuild the schema index.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add neurawork-git/n8n-autopilot
Claude Code
/plugin install n8n-autopilot

Made for: Claude Code.

Or install n8n-autopilot, the plugin that ships this one along with the rest of its 24 skills, 12 agents, 4 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pull-schemas

README.md
[![agentmods](https://agentmods.dev/badge/skills/neurawork-git/n8n-autopilot/pull-schemas/github.svg)](https://agentmods.dev/skills/neurawork-git/n8n-autopilot/pull-schemas)
Your own site
<a href="https://agentmods.dev/skills/neurawork-git/n8n-autopilot/pull-schemas"><img src="https://agentmods.dev/badge/skills/neurawork-git/n8n-autopilot/pull-schemas/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pull-schemas

Your own site · 80×15
<a href="https://agentmods.dev/skills/neurawork-git/n8n-autopilot/pull-schemas"><img src="https://agentmods.dev/badge/skills/neurawork-git/n8n-autopilot/pull-schemas.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,164 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00087 $0.01164
Opus 5 $0.00044 $0.00582
Sonnet 5 $0.00017 $0.00233
Haiku 4.5 $0.00009 $0.00116

Measured 10d ago against content hash fefaafb3b45e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

pull-schemas scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 5 executable files (scripts/discover-types.sh, scripts/fetch-one.sh, scripts/fetch-pkg.js, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/pull-schemas/SKILL.md · 74 lines

How it starts

The opening of the file, as written. The whole thing — 74 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Pull Node Schemas

All work happens in scripts/run.sh (colocated in this skill). The skill body is short on purpose — read the script's --help for the full flag reference.

How to invoke

Always call the bundled orchestrator. Do not write ad-hoc loops or improvise around the CLI calls.

bash "$CLAUDE_PLUGIN_ROOT/skills/pull-schemas/scripts/run.sh" [flags]
Flag Meaning
(none) Discover all node types referenced in workflows/**/*.workflow.ts, fetch all, rebuild index
--core-only Skip community nodes (only n8n-nodes-base.*)
--community-only Skip core nodes
--nodes <list> Skip discovery, fetch this comma-separated list of node types
--packages <list> Skip Stage 1 entirely, jump straight to Stage 2 (npm extraction) for each package — what the SessionStart auto-reaction emits
--workspace <dir> Workspace root (default: current directory)
--no-index Skip the final index rebuild

The script runs three stages internally:

  1. Stage 1 — for each discovered node type: npx n8nac skills node-info <type> --json > schemas/nodes/<type>.json. If n8nac returns "not found", schedule the type's package for Stage 2.
  2. Stage 2 — for any package n8nac did not cover (or any package passed via --packages): install it into a temp dir together with n8n-workflow, instantiate each exported node class, write the description payload to schemas/nodes/<pkg>.<node>.json (scoped packages get a per-scope subdir).
  3. Stage 3 — walk schemas/nodes/** and rebuild schemas/_index.json with type → {file, displayName, packageVersion}.

When to auto-trigger this skill

Situation Invocation
npx n8nac skills node-info <type> returns empty/not-found mid-workflow --packages <pkg-prefix> for that single package
n8nac validation reports unknown node type --packages <pkg-prefix>, then re-validate
packageVersion: null in _index.json for a community node --packages <pkg> to refresh the versioned schema
SessionStart check-schema-versions.sh emits AUTOPILOT_ACTION_REQUIRED: /n8n-autopilot:pull-schemas --community-only --packages <list> Run the literal command from the auto-reaction line

Read the full file on GitHub · 74 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 74 lines · 87 tokens per session scan A fefaafb3b45e

Subscribe to this mod's changes

pull-schemas is a skill published in the GitHub repository neurawork-git/n8n-autopilot (18 stars, last pushed 1mo ago), licensed MIT. It adds 87 tokens to every session and 1,164 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

n8n-mcp-tools-expert

Expert guide for using n8n-mcp MCP tools effectively. Use when searching for nodes, validating configurations, accessing templates, managing workflows, organizing workflows into folders, managing credentials, auditing instance security, or using any n8n-mcp tool. Provides tool selection guidance, parameter formats…

czlonkowski/n8n-skills · 135 tokens

n8n-agents

Design n8n AI agents the right way. Use when building or editing any @n8n/n8n-nodes-langchain. AI node — an AI Agent, LLM chain, Text Classifier, or Information Extractor — and whenever the user mentions AI agents, LLM with tools, tool calling, $fromAI, system prompts, agent memory, sessionId, structured/JSON output…

czlonkowski/n8n-skills · 156 tokens

n8n-code-tool

Write JavaScript or Python for the n8n Custom Code Tool (@n8n/n8n-nodes-langchain.toolCode) — the AI-agent-callable tool, NOT the workflow Code node. Use when building a Code Tool attached to an AI Agent, writing code that an LLM will invoke, parsing the query input, returning a string result, defining an input schema…

czlonkowski/n8n-skills · 221 tokens

n8n-error-handling

Wire n8n error handling so failures are loud, structured, and recoverable. Use when building any webhook/API workflow, a scheduled or unattended workflow, or any path where a silent failure would drop user-visible work — and whenever the user mentions error handling, onError, continueErrorOutput, error…

czlonkowski/n8n-skills · 128 tokens

n8n-expression-syntax

Validate n8n expression syntax and fix common errors. Use when writing n8n expressions, using {{}} syntax, accessing $json/$node variables, troubleshooting expression errors, mapping data between nodes, or referencing webhook data in workflows. Use this skill whenever configuring node fields that reference data from…

czlonkowski/n8n-skills · 104 tokens

n8n-node-configuration

Operation-aware node configuration guidance. Use when configuring nodes, understanding property dependencies, determining required fields, choosing between getnode detail levels, or learning common configuration patterns by node type. Always use this skill when setting up node parameters — it explains which fields are…

czlonkowski/n8n-skills · 84 tokens