From n8n-autopilot
Authoritative reference for every n8nac CLI command, subcommand, and flag (n8nac 2.3.6). Use this to look up exact flags, argument orders, and confirm existence before running --help.
How this skill is triggered — by the user, by Claude, or both
Slash command
/n8n-autopilot:n8nac-referenceThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
The full `n8nac --help` tree is captured in [`reference.md`](reference.md) (auto-generated, 61 command/subcommand blocks across 24 top-level groups). Read it whenever you need to:
The full n8nac --help tree is captured in reference.md (auto-generated, 61 command/subcommand blocks across 24 top-level groups). Read it whenever you need to:
Search the reference file with grep:
# Find a parent command
grep "^## \`n8nac credential" "$CLAUDE_PLUGIN_ROOT/skills/n8nac-reference/reference.md"
# Find a specific subcommand
grep -n "^### \`n8nac credential list\`" "$CLAUDE_PLUGIN_ROOT/skills/n8nac-reference/reference.md"
# Pull the full help block for one subcommand (next 30 lines after the header)
awk '/^### `n8nac workflow credential-required`/{flag=1;n=0} flag{print;n++; if(n>30)exit}' \
"$CLAUDE_PLUGIN_ROOT/skills/n8nac-reference/reference.md"
| Parent | Subcommands |
|---|---|
| (root) | find, pull, push, promote, verify, test, test-plan, fetch, resolve, convert, convert-batch, list, mcp, setup, setup-modes, update-ai |
credential | create, delete, get, list, schema |
credentials (readiness/recipes) | delete, ensure, inventory, recipes, starter-kit, starter-kits, test |
env | add, auth, list, pin, remove, status, update |
execution | get, list |
skills | docs, examples, guides, list, mcp, node-info, node-schema, related, search, update-ai, validate |
workflow | activate, credential-required, deactivate, present |
workspace | status (alias get) — read-only since 2.3; all mutation moved to env |
telemetry | (no subcommands — flags only) |
credentials (plural) and credential (singular) are different parent groups. Plural is for recipe / readiness / inventory management; singular is for direct create/list/get/delete/schema operations on the active instance. Mixing them is a common source of "command not found" errors.
grep / awk snippet above to pull just the block you need. ~30 lines.env group do as a whole?").bash "$CLAUDE_PLUGIN_ROOT/scripts/dump-n8nac-help.sh" > "$CLAUDE_PLUGIN_ROOT/skills/n8nac-reference/reference.md"
Re-run whenever the setup-check.sh REFERENCE_N8NAC_VERSION constant is bumped. The script captures the version from npx n8nac --version and stamps it at the top + bottom of the file.
For the curated "which command for which user intent" mapping (cheat-sheet form), see n8nac-cheatsheet and the Cheat-Sheet section in CLAUDE.md. This skill is the raw-help fallback when the cheatsheet does not have a row for the user's request.
npx claudepluginhub neurawork-git/n8n-autopilot --plugin n8n-autopilotCurated mapping of user intents to exact n8nac CLI commands for 60+ workflows. Use this before the reference or --help.
Guides creation, organization, and debugging of slash commands for Claude Code, covering YAML frontmatter, dynamic arguments, bash execution, user interactions, programmatic invocation, and best practices.
Guides developers on creating, structuring, and organizing slash commands for Claude Code. Covers YAML frontmatter, dynamic arguments, bash execution, user interactions, and best practices for reusable command workflows.