n8nac 2.2.0 → 2.2.1-next.12

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 +10 -17
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -35,14 +35,14 @@ Full documentation: [CLI guide](https://n8nascode.dev/docs/usage/cli/) · [n8n-m
35
35
 
36
36
  | Group | Command | Purpose |
37
37
  |---|---|---|
38
- | Usage Principal | `n8nac env` | Workspace environments: n8n URL or managed instance, project, sync folder, active environment |
39
- | Maintenance Workspace | `n8nac workspace` | Readiness, unified migration, upgrade |
40
- | Instances Managées | `n8n-manager` | Local managed instances, Docker lifecycle, tunnels, local secrets |
41
- | Compat Cachée | `instance-target`, `target`, `setup`, old `workspace` mutations | Compatibility only |
38
+ | Primary Usage | `n8nac env` | Workspace environments: remote n8n URL or local managed instance, project, sync folder, active environment |
39
+ | Workspace Maintenance | `n8nac workspace` | Readiness and unified workspace migration |
40
+ | Managed Local Instances | `n8n-manager` | Local managed instances, Docker lifecycle, tunnels, local secrets |
41
+ | Hidden Compatibility | `instance-target`, `target`, `setup`, old `workspace` mutations | Compatibility only |
42
42
 
43
43
  ## Workspace Environments
44
44
 
45
- Create an environment for an existing n8n URL:
45
+ Create a remote n8n environment for an existing n8n URL:
46
46
 
47
47
  ```bash
48
48
  n8nac env add Dev --base-url https://n8n.example.com --sync-folder workflows/dev
@@ -50,7 +50,7 @@ printf '%s' "$N8N_API_KEY" | n8nac env auth set Dev --api-key-stdin
50
50
  n8nac env use Dev
51
51
  ```
52
52
 
53
- Create an environment from a local managed instance:
53
+ Attach a workspace environment to a local managed instance:
54
54
 
55
55
  ```bash
56
56
  n8n-manager instance list
@@ -72,11 +72,11 @@ Remove an environment mapping:
72
72
  n8nac env remove Dev
73
73
  ```
74
74
 
75
- Removing an environment does not delete remote workflows, local workflow files, or local managed instances.
75
+ Removing a workspace environment does not delete remote workflows, local workflow files, or local managed instances.
76
76
 
77
- ## Migration And Upgrade
77
+ ## Workspace Migration
78
78
 
79
- Legacy V1/V2 config:
79
+ Inspect and apply required workspace migrations explicitly:
80
80
 
81
81
  ```bash
82
82
  n8nac workspace migrate --json
@@ -85,13 +85,6 @@ n8nac workspace migrate --json
85
85
  n8nac env status --json
86
86
  ```
87
87
 
88
- Previous V3/`next` config model:
89
-
90
- ```bash
91
- n8nac workspace upgrade
92
- n8nac workspace upgrade --write
93
- ```
94
-
95
88
  Dry-run with `--json` first, then apply with `--write` after reviewing the unified `operations` list. Applied migrations create a backup before replacing `n8nac-config.json`.
96
89
 
97
90
  ## Sync Commands
@@ -176,7 +169,7 @@ Current workspace config is environment-based:
176
169
  }
177
170
  ```
178
171
 
179
- Do not store API keys in this file. Use `n8nac env auth set <env> --api-key-stdin` for remote environments.
172
+ In config examples, `kind: "external-instance"` is the persisted target kind for a remote n8n URL. Do not store API keys in this file. Use `n8nac env auth set <env> --api-key-stdin` for remote n8n environments.
180
173
 
181
174
  ## Compatibility Commands
182
175
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8nac",
3
- "version": "2.2.0",
3
+ "version": "2.2.1-next.12",
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,7 +24,7 @@
24
24
  "dependencies": {
25
25
  "@n8n-as-code/manager-adapter": "2.0.3",
26
26
  "@n8n-as-code/n8n-manager-core": "^0.7.0",
27
- "@n8n-as-code/skills": "2.1.2",
27
+ "@n8n-as-code/skills": "2.1.3-next.12",
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",