@n8n-as-code/skills 2.1.2-next.5 → 2.1.3-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.
- package/README.md +1 -1
- package/dist/agent-skills/n8n-architect/SKILL.md +6 -5
- package/dist/assets/n8n-credentials-ontology.json +1 -1
- package/dist/assets/n8n-docs-complete.json +2918 -2792
- package/dist/assets/n8n-knowledge-index.json +1723 -1593
- package/dist/assets/n8n-nodes-index.json +13 -13
- package/dist/assets/n8n-nodes-technical.json +14 -14
- package/dist/assets/workflows-index.json +1 -1
- package/dist/services/ai-context-generator.d.ts.map +1 -1
- package/dist/services/ai-context-generator.js +2 -1
- package/dist/services/ai-context-generator.js.map +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ This package powers the shared n8n ontology behind `n8n-as-code`: searchable nod
|
|
|
6
6
|
|
|
7
7
|
> **⚠️ BREAKING CHANGE (v0.16.0)**: Workflows are now generated and documented in **TypeScript format** (`.workflow.ts`) instead of JSON for better AI compatibility and readability.
|
|
8
8
|
|
|
9
|
-
> **BREAKING CHANGE (v2.0.0)**: Generated agent context now assumes the environment model: use `n8nac env` for workspace environments, `n8nac workspace` for readiness
|
|
9
|
+
> **BREAKING CHANGE (v2.0.0)**: Generated agent context now assumes the workspace environment model: use `n8nac env` for workspace environments, `n8nac workspace` for readiness and unified migration, and `n8n-manager` for local managed instances. Legacy workspace-local instance libraries are no longer treated as the source of truth.
|
|
10
10
|
|
|
11
11
|
Documentation: [CLI guide](https://n8nascode.dev/docs/usage/cli/) · [n8n-manager guide](https://n8nascode.dev/docs/usage/n8n-manager/) · [Skills guide](https://n8nascode.dev/docs/usage/skills/)
|
|
12
12
|
|
|
@@ -24,7 +24,8 @@ Use `{{N8NAC_CMD}}` as the primary interface. Use `{{N8N_MANAGER_CMD}}` only for
|
|
|
24
24
|
{{N8NAC_CMD}} env status --json
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
- Use the returned `workflowDir` for workflow files.
|
|
27
|
+
- Use the returned `workflowDir` for workflow files. Treat it as an opaque backend-derived path that may contain generated or hashed segments.
|
|
28
|
+
- `syncFolder` is only the user-configured sync root, not the workflow directory. Do not reconstruct `workflowDir` from `syncFolder`, environment name/id, `instanceIdentifier`, `instanceUserIdentifier`, `projectId`, or `projectName`.
|
|
28
29
|
- Never write `n8nac-config.json`, `~/.n8n-manager`, or n8n-manager secret files by hand.
|
|
29
30
|
|
|
30
31
|
## Workspace Readiness
|
|
@@ -81,7 +82,7 @@ Migration is one user-facing command. Do not reason about internal migration pha
|
|
|
81
82
|
10. Configure the environment with:
|
|
82
83
|
|
|
83
84
|
```bash
|
|
84
|
-
{{N8NAC_CMD}} env add <name> --base-url <url> --sync-folder workflows
|
|
85
|
+
{{N8NAC_CMD}} env add <name> --base-url <url> --sync-folder workflows
|
|
85
86
|
{{N8NAC_CMD}} env auth set <name> --api-key-stdin
|
|
86
87
|
{{N8NAC_CMD}} env use <name>
|
|
87
88
|
```
|
|
@@ -89,7 +90,7 @@ Migration is one user-facing command. Do not reason about internal migration pha
|
|
|
89
90
|
For a managed local instance:
|
|
90
91
|
|
|
91
92
|
```bash
|
|
92
|
-
{{N8NAC_CMD}} env add Local --managed-instance <id> --sync-folder workflows
|
|
93
|
+
{{N8NAC_CMD}} env add Local --managed-instance <id> --sync-folder workflows
|
|
93
94
|
{{N8NAC_CMD}} env use Local
|
|
94
95
|
```
|
|
95
96
|
|
|
@@ -102,7 +103,7 @@ Use `{{N8NAC_CMD}} env ...` for workspace environments, remote URLs, active envi
|
|
|
102
103
|
```bash
|
|
103
104
|
{{N8NAC_CMD}} env status --json
|
|
104
105
|
{{N8NAC_CMD}} env list
|
|
105
|
-
{{N8NAC_CMD}} env add <name> --base-url <url> --sync-folder workflows
|
|
106
|
+
{{N8NAC_CMD}} env add <name> --base-url <url> --sync-folder workflows
|
|
106
107
|
{{N8NAC_CMD}} env auth set <name> --api-key-stdin
|
|
107
108
|
{{N8NAC_CMD}} env use <name>
|
|
108
109
|
```
|
|
@@ -116,7 +117,7 @@ Use `{{N8NAC_CMD}} env ...` for workspace environments, remote URLs, active envi
|
|
|
116
117
|
Attach a managed local instance to the workspace with `{{N8NAC_CMD}} env ...`:
|
|
117
118
|
|
|
118
119
|
```bash
|
|
119
|
-
{{N8NAC_CMD}} env add Local --managed-instance <id> --sync-folder workflows
|
|
120
|
+
{{N8NAC_CMD}} env add Local --managed-instance <id> --sync-folder workflows
|
|
120
121
|
{{N8NAC_CMD}} env use Local
|
|
121
122
|
```
|
|
122
123
|
|