stack-intake

stack-intake is a skill for Claude Code from neurawork-git/n8n-autopilot. It costs 146 tokens per session (1,705 once invoked), scanned A, original, MIT.

A guided interview that turns a rough automation idea into a detailed description for building n8n workflows. n8n is a tool for connecting services and automating tasks without writing every integration from scratch.

In plain words
What is it for?
Use it to describe an automation through questions about its inputs, outputs, real examples, connected systems, and workload before implementation.
Why use it?
People often know the result they want but omit the inputs, steps, examples, systems, and expected behavior needed to build the automation correctly.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

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

Good fit Use it to describe an automation through questions about its inputs, outputs, real examples, connected systems, and workload before implementation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/neurawork-git/n8n-autopilot/stack-intake
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add neurawork-git/n8n-autopilot --skill stack-intake
Clone the repo
git clone --depth 1 https://github.com/neurawork-git/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 stack-intake

README.md
[![agentmods](https://agentmods.dev/badge/skills/neurawork-git/n8n-autopilot/stack-intake.svg)](https://agentmods.dev/skills/neurawork-git/n8n-autopilot/stack-intake)
Your own site
<a href="https://agentmods.dev/skills/neurawork-git/n8n-autopilot/stack-intake"><img src="https://agentmods.dev/badge/skills/neurawork-git/n8n-autopilot/stack-intake.svg" alt="Measured on agentmods" height="20"></a>
Per session 146 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,705 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.00146 $0.01705
Opus 5 $0.00073 $0.00852
Sonnet 5 $0.00029 $0.00341
Haiku 4.5 $0.00015 $0.00170

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

Security

Grade A, and why

stack-intake 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 7d ago.

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/stack-intake/SKILL.md · 124 lines

How it starts

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

Stack Intake — guided PRP interview

Most people can describe what they want ("when a lead comes in, research it and tell me if it's worth chasing") but not how to wire it in n8n. This skill bridges that: a friendly, classic interview that draws out inputs, outputs, and concrete examples, then writes a PRP-style use-case description that /n8n-autopilot:build-stack-v2 can decompose into a real workflow stack. You do the n8n thinking; the user only describes their world.

Principles

  • One topic at a time. Ask, listen, follow up. Do NOT dump all questions at once — this is an interview, not a form. Adapt: skip what's already obvious, dig where it's vague.
  • Speak their language, not n8n's. Never ask "what trigger type?" Ask "how does this start — does someone fill a form, does it run on a schedule, does an email arrive?" Map their answer to n8n concepts yourself.
  • Always anchor on a concrete example. Abstract specs decompose badly. Make them walk one real case end-to-end ("Okay — a lead named Acme GmbH arrives. What happens first? Then?").
  • You hold the n8n knowledge. Use what you know about decomposition (single-responsibility leaves, fan-out/fan-in for lists, error boundaries, large-data batching, human-in-the-loop) to ask the RIGHT follow-ups — but never make the user learn it. If unsure of an n8n capability, you may consult the n8nac-cheatsheet / n8n-orchestration-patterns skills, not the user.

The interview (cover every section; adapt the wording)

Use AskUserQuestion for the closed choices (trigger family, volume, error policy, HITL) so the user just clicks; use plain conversation for the worked example and free descriptions.

  1. The goal in one sentence. "In one line, what should this automation achieve?" (Seed from $ARGUMENTS if given.)
  2. How it starts (input / trigger). A schedule? A webhook/form someone submits? An incoming email? A chat message? A manual run? — and what data comes with it. Ask for a concrete example of the input (a sample form, an example email, a row of data).
  3. What "done" looks like (output). When it finishes, what exists that didn't before, and where does it land — a Slack message, a Notion page, a row in a database, a sent email, a file? Ask for an example of the finished result.
  4. One worked example, end-to-end. Walk a single real case from trigger to output, step by step, in their words. This is the most important answer — capture it verbatim.
  5. External systems & accounts. Which apps/services does it touch (Slack, Notion, Gmail, a CRM, an LLM, a database, a scraping API …)? Each one likely needs a credential — note them, don't set them up.
  6. Volume & batching. One thing at a time, or a list/batch? Roughly how many per run? (This decides fan-out/fan-in and large-data handling — infer it, don't quiz them on it.)
  7. When something goes wrong. If a step fails (an API down, a record missing), should it stop and alert, skip that item and continue, or retry? (Maps to error boundaries.)
  8. Human checkpoints. Any step where a person must review/approve before it proceeds?
  9. Reuse & scope. Is any part of this already done elsewhere, or useful on its own? Anything explicitly out of scope for now?

Read the full file on GitHub · 124 lines

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. 7d ago First seen · 124 lines · 146 tokens per session scan A 8042e4565b38

Subscribe to this mod's changes

stack-intake is a skill published in the GitHub repository neurawork-git/n8n-autopilot (18 stars, last pushed 1mo ago), licensed MIT. It adds 146 tokens to every session and 1,705 once invoked, about $0.0007 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-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-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-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-subworkflows

Build reusable, composable n8n sub-workflows. Use when extracting shared logic, building anything multi-step or reused across workflows, or any workflow over 10 nodes — and whenever the user mentions sub-workflows, Execute Workflow, reuse, shared/common logic, modular workflows, "Define Below" inputs…

czlonkowski/n8n-skills · 121 tokens

n8n-validation-expert

Interpret validation errors and guide fixing them. Use when encountering validation errors, validation warnings, false positives, operator structure issues, or need help understanding validation results. Also use when asking about validation profiles, error types, the validation loop process, or auto-fix capabilities.…

czlonkowski/n8n-skills · 91 tokens

n8n-workflow-patterns

Proven workflow architectural patterns from real n8n workflows. Use when building new workflows, designing workflow structure, choosing workflow patterns, planning workflow architecture, or asking about webhook processing, HTTP API integration, database operations, AI agent workflows, batch processing, or scheduled…

czlonkowski/n8n-skills · 144 tokens