neurawork-git

43 mods across 2 repositories, 21 stars between them.

deploy

25

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Push a local .workflow.ts to n8n, verify remote state, and live-test (test URL by default; --activate --prod runs production test). Side-effecting — only invoked explicitly via /deploy.

18 1mo ago A 47 tokens original MIT

feedback

26

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Review the current n8n-autopilot session for learnings (operational friction + workflow design anti-patterns), strip all PII, and push the redacted insights centrally via the plugin's ingest webhook (they land as batch comments on the public rollup issue). Side-effecting on sync/review-push — shows the redacted result…

18 1mo ago A 81 tokens original MIT

find-credential

27

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Search credentials on the active n8n instance by name pattern, scoped to a project. Use whenever the user asks "find credential X", "which credential is …", "list Dropbox/OpenAI/etc. credentials", or before referencing a credential ID in a workflow. Default scope = workspace-pinned project. Returns id, type, project…

18 1mo ago A 83 tokens original MIT

find-project

28

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

List all n8n projects visible on the active instance, showing which one the workspace is pinned to. Use whenever the user asks "which projects exist", "list n8n projects", "show projects on instance", or before pinning a workspace to a different project. Derives projects from credential list + workspace status — works…

18 1mo ago A 81 tokens original MIT

init-repo

29

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Bootstrap a new n8n workflow repo from scratch. Scaffolds directory structure, writes plugin-compatible CLAUDE.md/README/.gitignore/.env.example, runs the n8nac >= 2.3 setup flow (env add + env auth set + env use), pulls node schemas, and verifies setup. Use when starting a new customer/project n8n repo.

18 1mo ago A 86 tokens original MIT

inventory

30

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Read-only inventory of local n8n workflows — aggregates node-type usage, LLM models, credentials, and trigger types into docs/INVENTORY.md. Use when planning new workflows, auditing instance consistency, or onboarding to an existing n8n project.

18 1mo ago A 55 tokens original MIT

mirror-sync

31

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Pull every remote-only n8n workflow into the local repo so it mirrors the instance, via a deterministic JS Workflow (discover remote-only → fan-out pull → verify). Establishes and refreshes the local-first invariant that /n8n-autopilot:build-workflow-v2's edit flow relies on. Auto-triggered by the SessionStart drift…

18 1mo ago A 94 tokens original MIT

n8n-code-javascript

32

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Write JavaScript code in n8n Code nodes. Use when writing JavaScript in n8n, using $input/$json/$node syntax, making HTTP requests with $helpers, working with dates using DateTime, troubleshooting Code node errors, or choosing between Code node modes.

18 1mo ago A 63 tokens original MIT

n8n-code-python

33

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Write Python code in n8n Code nodes. Use when writing Python in n8n, using input/json/node syntax, working with standard library, or need to understand Python limitations in n8n Code nodes.

18 1mo ago A 52 tokens original MIT

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Fan-out / fan-in, parallel sub-workflow execution, and batch-orchestrator patterns in n8n. Use when a workflow processes a LIST in parallel, calls sub-workflows, needs faster wall-clock on many items, has a webhook that would otherwise block for minutes, or asks "how do I run sub-workflows in parallel / fan out / fan…

18 1mo ago A 84 tokens original MIT

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Extract or classify structured data from text/documents with an LLM in n8n using a real JSON schema. Use when a workflow needs structured fields out of unstructured input (invoice/contract/email extraction, classification), when deciding between an AI Agent and a dedicated extractor node, or when LLM JSON output is…

18 1mo ago A 77 tokens original MIT

n8nac-cheatsheet

36

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Curated "user intent → exact command" mapping for the n8nac CLI. Use this BEFORE reading n8nac-reference or running --help. Covers the 60+ common workflows — lookup, deploy, test, debug, migrate, credentials, projects, environments. If your task matches a row here, run the linked command verbatim — no flag fishing.

18 1mo ago A 86 tokens original MIT

n8nac-reference

37

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Authoritative reference for every n8nac CLI command, subcommand, and flag (n8nac 2.4.0). Use this BEFORE running --help interactively, BEFORE guessing flags, and BEFORE inventing a subcommand. If a command does not appear in this file, it does not exist — research stops, do not invent CLI surface. Covers workspace…

18 1mo ago A 130 tokens original MIT

plugin-testing

38

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

The ONLY supported way to test changes to the n8n-autopilot plugin itself: commit → push to the private repo → install FROM that repo → restart → verify registration. Use whenever a plugin change (agent, skill, hook, script) must be exercised in a real session. Hard rule: no cache hand-copying, no directory-pointer…

18 1mo ago A 93 tokens original MIT

pull-schemas

39

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Pull/update n8n node schemas for offline validation. Discovers node types from local workflows, fetches each via npx n8nac skills node-info, falls back to direct npm-package extraction for nodes n8nac does not index, then rebuilds schemas/index.json. Run when schemas are stale, when validation reports "unknown node…

18 1mo ago A 87 tokens original MIT

session-env

40

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Explain and verify how a Claude session pins itself (and all its n8nac workflow/instance commands) to exactly ONE n8n environment without clobbering other sessions' global active env. Use when the user asks "which env am I on", "how does session env pinning work", "pin this session to env X", "why was my env command…

18 1mo ago A 108 tokens original MIT

stack-intake

41

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Guided interview that turns a rough idea into a PRP-style use-case description ready for /n8n-autopilot:build-stack-v2. Classic question-by-question format aimed at people NOT yet experienced with n8n — it asks about overall inputs, outputs, a concrete worked example, expected behavior, external systems, volume, and…

18 1mo ago A 146 tokens original MIT

sync-credentials

42

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Sync credential IDs from the live n8n instance. Two modes — list (default) reports IDs + TypeScript snippets, fix-workflows rewrites stale credential IDs in local .workflow.ts files by joining on credential name. Use after n8n migration, when setting up a new instance, or in response to a credential-freshness…

18 1mo ago A 78 tokens original MIT

test-manual

43

neurawork-git/n8n-autopilot

Skill Claude CodeCodex

Test a non-HTTP-trigger workflow (schedule, manual, errorTrigger) that n8nac cannot fire from the CLI. Resolves the n8n UI URL, waits for you to run it and report the execution-id, then inspects the run. Read-only against the instance.

18 1mo ago A 63 tokens original MIT