n8nac 2.0.2 → 2.0.4-next.10
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 +12 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -39,6 +39,8 @@ Or install globally if you prefer:
|
|
|
39
39
|
npm install -g n8nac
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
+
Full documentation: [CLI guide](https://n8nascode.dev/docs/usage/cli/) · [n8n-manager guide](https://n8nascode.dev/docs/usage/n8n-manager/)
|
|
43
|
+
|
|
42
44
|
## Commands
|
|
43
45
|
|
|
44
46
|
### v2 migration note
|
|
@@ -56,6 +58,14 @@ n8nac workspace set-sync-folder workflows
|
|
|
56
58
|
n8nac update-ai
|
|
57
59
|
```
|
|
58
60
|
|
|
61
|
+
If a repository should always use a specific registered instance, pin it locally after listing the global instances:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
n8n-manager instances list
|
|
65
|
+
n8nac workspace pin-instance --instance-id <instanceId>
|
|
66
|
+
n8nac workspace status --json
|
|
67
|
+
```
|
|
68
|
+
|
|
59
69
|
---
|
|
60
70
|
|
|
61
71
|
### `workspace`
|
|
@@ -75,6 +85,8 @@ The workspace config stays minimal: project selection, optional pinned instance,
|
|
|
75
85
|
|
|
76
86
|
Project defaults are selected with `n8n-manager projects select`. Workspace-specific project overrides use `n8nac workspace set-project`.
|
|
77
87
|
|
|
88
|
+
Effective context is resolved in this order: explicit command options, workspace overrides from `n8nac-config.json`, then global `n8n-manager` defaults.
|
|
89
|
+
|
|
78
90
|
---
|
|
79
91
|
|
|
80
92
|
### `list`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8nac",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4-next.10",
|
|
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",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"test:coverage": "vitest run --coverage"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@n8n-as-code/manager-adapter": "2.0.
|
|
26
|
-
"@n8n-as-code/n8n-manager-core": "^0.
|
|
27
|
-
"@n8n-as-code/skills": "2.0.
|
|
25
|
+
"@n8n-as-code/manager-adapter": "2.0.2",
|
|
26
|
+
"@n8n-as-code/n8n-manager-core": "^0.7.0",
|
|
27
|
+
"@n8n-as-code/skills": "2.0.2-next.10",
|
|
28
28
|
"@n8n-as-code/telemetry": "2.0.0",
|
|
29
29
|
"@n8n-as-code/transformer": "2.0.0",
|
|
30
30
|
"@n8n-as-code/workflow-core": "2.0.0",
|