n8n_scaffold_node
Scaffolds a TypeScript skeleton for a custom n8n node from a plain-English description, including INodeType interface, credentials reference, and execute method stub.
Instructions
Scaffold a TypeScript skeleton for an n8n custom node from a plain-English description. Returns a single TypeScript file implementing INodeType with description, credentials reference, and an execute method stub.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | Plain-English description of what the node should do. | |
| nodeName | No | Optional PascalCase node class name, e.g. 'DiscordRateLimited'. Derived from the description if omitted. |