n8nac 2.0.0-next.63 → 2.0.0-next.64

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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -24,6 +24,15 @@ If you need fully repeatable automation, pin an explicit package version instead
24
24
  npx --yes n8nac@1.8.0 <command>
25
25
  ```
26
26
 
27
+ For prerelease testing, use the `next` npm dist-tag consistently with any prerelease plugin or generated agent instructions:
28
+
29
+ ```bash
30
+ npx --yes n8nac@next <command>
31
+ npx --yes @n8n-as-code/n8n-manager@next <command>
32
+ ```
33
+
34
+ Do not use `npx --yes n8nac` for a workspace whose plugin or `AGENTS.md` was generated from the `next` branch; that resolves npm `latest` and may expose older stable commands.
35
+
27
36
  Or install globally if you prefer:
28
37
 
29
38
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8nac",
3
- "version": "2.0.0-next.63",
3
+ "version": "2.0.0-next.64",
4
4
  "description": "Unified CLI for n8n-as-code — manage workflows and access AI tools",
5
5
  "main": "./dist/lib.js",
6
6
  "types": "./dist/lib.d.ts",
@@ -24,8 +24,8 @@
24
24
  "dependencies": {
25
25
  "@n8n-as-code/manager-adapter": "0.1.0",
26
26
  "@n8n-as-code/n8n-manager-core": "^0.5.0",
27
- "@n8n-as-code/skills": "2.0.0-next.63",
28
- "@n8n-as-code/transformer": "2.0.0-next.63",
27
+ "@n8n-as-code/skills": "2.0.0-next.64",
28
+ "@n8n-as-code/transformer": "2.0.0-next.64",
29
29
  "@n8n-as-code/workflow-core": "0.1.0",
30
30
  "@types/json-stable-stringify": "^1.1.0",
31
31
  "axios": "^1.6.0",