@n8n-as-code/n8nac
v2.2.0
Published
OpenClaw plugin for n8n-as-code — create and manage n8n workflows from OpenClaw
Maintainers
Readme
@n8n-as-code/n8nac
OpenClaw access to the standard n8n-as-code skills and workflow stack.
The plugin uses the same model as VS Code, Claude, and the CLI:
| Group | Command | Purpose |
|---|---|---|
| Primary Usage | n8nac env | Workspace environments |
| Workspace Maintenance | n8nac workspace | Readiness and unified workspace migration |
| Managed Local Instances | n8n-manager | Local managed instances and tunnels |
Install
openclaw plugins install @n8n-as-code/n8nacFor prerelease testing:
openclaw plugins install @n8n-as-code/n8nac@next
npx --yes n8nac@next env list
npx --yes @n8n-as-code/n8n-manager@next instance listIf you previously installed @n8n-as-code/openclaw-plugin, remove the old install first:
openclaw plugins uninstall n8nac
openclaw plugins install @n8n-as-code/n8nacUsage
Run setup, then restart the gateway:
openclaw n8nac:setup
openclaw gateway restartThen ask OpenClaw for workflow work:
Create an n8n workflow that sends a Slack message when a GitHub issue is opened.Workspace
OpenClaw files live in ~/.openclaw/n8nac/:
~/.openclaw/n8nac/
n8nac-config.json
AGENTS.md
.agents/skills/
workflows/n8nac-config.json stores workspace environments. API keys and local managed instance state stay local.
Manual equivalent:
n8nac env add Dev --base-url <url> --workflows-path workflows/dev
n8nac env auth set Dev --api-key-stdin
n8nac env use Dev
n8nac update-aiFor a local managed instance:
n8n-manager instance list
n8nac env add Local --managed-instance <id> --workflows-path workflows/localAgent Commands
Agents use the normal shell commands:
n8nac env status
n8nac list
n8nac pull <workflow-id>
n8nac push <path-to-workflow.workflow.ts> --verify
n8nac skills node-info <node-name>Local Development
Register this directory with OpenClaw:
openclaw plugins install --link /home/etienne/repos/n8n-as-code/plugins/openclaw/n8n-as-code
openclaw plugins info n8nacRestart the gateway after changes.
Source
Part of the n8n-as-code monorepo.
