@n8n-as-code/n8nac 2026.4.0 → 2026.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @n8n-as-code/n8nac
2
2
 
3
+ ## [2026.4.1](https://github.com/EtienneLescot/n8n-as-code/compare/@n8n-as-code/n8nac@v2026.4.0...@n8n-as-code/n8nac@v2026.4.1) (2026-03-30)
4
+
5
+ ### Bug Fixes
6
+
7
+ * make agent workflow testing and sync state resilient ([5850d07](https://github.com/EtienneLescot/n8n-as-code/commit/5850d07d8136ffb24c5106c7391b2d49d4dd2e5d))
8
+
3
9
  ## [2026.4.0](https://github.com/EtienneLescot/n8n-as-code/compare/@n8n-as-code/n8nac@v2026.3.1...@n8n-as-code/n8nac@v2026.4.0) (2026-03-17)
4
10
 
5
11
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@n8n-as-code/n8nac",
3
- "version": "2026.4.0",
3
+ "version": "2026.4.1",
4
4
  "description": "OpenClaw plugin for n8n-as-code — create and manage n8n workflows from OpenClaw",
5
5
  "keywords": [
6
6
  "n8n",
@@ -15,7 +15,7 @@
15
15
  "url": "git+https://github.com/EtienneLescot/n8n-as-code.git",
16
16
  "directory": "plugins/openclaw/n8n-as-code"
17
17
  },
18
- "license": "Apache-2.0",
18
+ "license": "MIT",
19
19
  "type": "module",
20
20
  "scripts": {
21
21
  "build": "npm run typecheck",
@@ -20,6 +20,10 @@ Use this skill only for explicit n8n workflow work.
20
20
  - Use `action: "skills"` whenever you need node search or schema details.
21
21
  - Never guess node parameters. The schema lookup is the source of truth.
22
22
  - Treat `AGENTS.md` as the authoritative workflow-engineering protocol once this skill is active.
23
+ - When a workflow fails due to missing credentials (Class A), identify the missing credentials clearly and use the documented `n8nac` CLI commands from `AGENTS.md` (for example `npx --yes n8nac workflow credential-required <workflowId> --json`, `npx --yes n8nac credential schema <type>`, `npx --yes n8nac credential create --type <type> --name "<name>" --file cred.json --json`, and `npx --yes n8nac workflow activate <workflowId>`). Do not invent unsupported `n8nac` tool actions or CLI flags; use `--help` if you are unsure.
24
+ - When `n8nac test` reports that a webhook is not registered, treat that as a runtime-state issue first, not as a workflow-code bug. For classic Webhook/Form triggers, the test URL usually requires a manual arm step in the n8n editor (`Execute workflow` or `Listen for test event`). There is no documented public API here to arm test webhooks automatically.
25
+ - When a webhook call succeeds but the workflow still seems broken, inspect the resulting execution with the documented CLI commands from `AGENTS.md` (for example `npx --yes n8nac execution list --workflow-id <workflowId> --limit 5 --json` then `npx --yes n8nac execution get <executionId> --include-data --json`).
26
+ - For GET/HEAD webhooks, prefer `n8nac test --query <json>` when the workflow reads from `$json.query`. Do not invent flags like `--query` unless they are documented in the current `--help`.
23
27
 
24
28
  ## Reading workflow files efficiently
25
29