@n8n-as-code/agent-cli 0.2.0 → 0.4.0
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 +6 -11
- package/dist/assets/n8n-nodes-enriched.json +468750 -0
- package/dist/assets/n8n-nodes-index.json +32359 -8
- package/dist/services/node-schema-provider.d.ts +35 -3
- package/dist/services/node-schema-provider.d.ts.map +1 -1
- package/dist/services/node-schema-provider.js +120 -16
- package/dist/services/node-schema-provider.js.map +1 -1
- package/package.json +4 -5
- package/src/assets/n8n-nodes-index.json +0 -505297
package/README.md
CHANGED
|
@@ -17,16 +17,6 @@ npm install @n8n-as-code/agent-cli
|
|
|
17
17
|
|
|
18
18
|
## 📖 CLI Usage
|
|
19
19
|
|
|
20
|
-
### `init-ai`
|
|
21
|
-
Generates the AI context files in your current workspace.
|
|
22
|
-
```bash
|
|
23
|
-
n8n-agent init-ai
|
|
24
|
-
```
|
|
25
|
-
Generates:
|
|
26
|
-
- `AGENTS.md`: Instructions for your AI agent.
|
|
27
|
-
- `n8n-schema.json`: Validation schema for workflows.
|
|
28
|
-
- `.vscode/n8n.code-snippets`: Rich snippets for common nodes.
|
|
29
|
-
|
|
30
20
|
### `list`
|
|
31
21
|
Lists all available n8n nodes.
|
|
32
22
|
```bash
|
|
@@ -45,7 +35,12 @@ Searches for nodes matching a query.
|
|
|
45
35
|
n8n-agent search "google sheets"
|
|
46
36
|
```
|
|
47
37
|
|
|
48
|
-
## 🧩 Integration
|
|
38
|
+
## 🧩 Integration
|
|
39
|
+
|
|
40
|
+
### With @n8n-as-code/cli
|
|
41
|
+
The main CLI package (`@n8n-as-code/cli`) uses this package internally for its `init-ai` / `update-ai` commands to generate AI context files.
|
|
42
|
+
|
|
43
|
+
### With VS Code Extension
|
|
49
44
|
This package is a core dependency of the `n8n-as-code` VS Code extension, powering its AI features and node indexing.
|
|
50
45
|
|
|
51
46
|
## 📄 License
|