@n8n-as-code/n8nac 2.0.0-next.63 → 2.0.0-next.68
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/README.md +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,16 @@ Version 2 removes the facade-specific OpenClaw runtime tool path. The plugin now
|
|
|
14
14
|
openclaw plugins install @n8n-as-code/n8nac
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
For prerelease testing, install the `next` dist-tag and use matching prerelease CLI commands in any manual shell steps:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
openclaw plugins install @n8n-as-code/n8nac@next
|
|
21
|
+
npx --yes n8nac@next workspace status --json
|
|
22
|
+
npx --yes @n8n-as-code/n8n-manager@next instances list
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Do not mix an OpenClaw plugin installed from `@next` with `n8nac@latest`; bundled prerelease skills may reference CLI commands that are not in the stable release yet.
|
|
26
|
+
|
|
17
27
|
If you previously installed `@n8n-as-code/openclaw-plugin`, remove the old install first so OpenClaw re-registers the plugin cleanly under `n8nac`:
|
|
18
28
|
|
|
19
29
|
```bash
|