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.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- When to Use
- Configuration Philosophy
- Core Concepts
- 1. Operation-Aware Configuration
- 2. Property Dependencies
- 3. Progressive Discovery
- Configuration Workflow
- Standard Process
- Example: Configuring HTTP Request
- getnode Detail Levels
- Standard Detail (DEFAULT - Use This!)
- Full Detail (Use Sparingly)
- Search Properties Mode
- Decision Tree
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.