Agent skill

n8n-node-configuration

Operation-aware node configuration guidance. Use when configuring nodes, understanding property dependencies, determining required fields, choosing between get_node detail levels, or learning common configuration patterns by node type.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill n8n-node-configuration --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 17 KB
Bundled scripts: none
Path: skills/n8n-node-configuration/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# n8n Node Configuration Expert guidance for operation-aware node configuration with property dependencies. ## When to Use - You need to configure an n8n node correctly for a specific resource and operation. - The task involves required fields, property dependencies, or choosing the right `get_node` detail level. - You are troubleshooting node setup rather than overall workflow architecture. --- ## Configuration Philosophy **Progressive disclosure**: Start minimal, add complexity as needed Configuration best practices: - `get_node` with `detail: "standard"` is the most used discovery pattern - 56 seconds average between configuration edits - Covers 95% of use cases with 1-2K tokens response **Key insight**: Most configurations need only standard detail, not full schema! --- ## Core Concepts ### 1. Operation-Aware Configuration **Not all fields are always required** - it depends on operation! **Example**: Slack node ```javascript // For operation='post' { "resource": "message", "operation": "post", "channel": "#general", // Required for post "text": "Hello!" // Required for post } // For operation='update' { "resource": "message", "operation": "update", "messageId": "123", // Requir

What's inside
Steps it walks through
  1. When to Use
  2. Configuration Philosophy
  3. Core Concepts
  4. 1. Operation-Aware Configuration
  5. 2. Property Dependencies
  6. 3. Progressive Discovery
  7. Configuration Workflow
  8. Standard Process
  9. Example: Configuring HTTP Request
  10. getnode Detail Levels
  11. Standard Detail (DEFAULT - Use This!)
  12. Full Detail (Use Sparingly)
  13. Search Properties Mode
  14. Decision Tree
Ships with 1 file
  • references/NODE_FAMILY_GOTCHAS.md
More from agentic-awesome-skills
All skills →
About this skill
What does the n8n-node-configuration skill do?

Operation-aware node configuration guidance. Use when configuring nodes, understanding property dependencies, determining required fields, choosing between get_node detail levels, or learning common configuration patterns by node type.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill n8n-node-configuration --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going