@n8n-as-code/skills 0.16.9-next.9544ec6 → 0.16.9-next.a13ee65
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/dist/assets/n8n-docs-complete.json +1 -1
- package/dist/assets/n8n-knowledge-index.json +1 -1
- package/dist/assets/n8n-nodes-index.json +1 -1
- package/dist/assets/n8n-nodes-technical.json +1 -1
- 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 +45 -44
- package/dist/services/ai-context-generator.js.map +1 -1
- package/package.json +2 -2
- package/src/assets/n8n-docs-cache/metadata.json +1 -1
- package/src/assets/n8n-docs-complete.json +1 -1
- package/src/assets/n8n-knowledge-index.json +1 -1
- package/src/assets/n8n-nodes-index.json +1 -1
- package/src/assets/n8n-nodes-technical.json +1 -1
- package/src/assets/workflows-index.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-
|
|
2
|
+
"generatedAt": "2026-03-01T11:28:04.871Z",
|
|
3
3
|
"sourceData": {
|
|
4
4
|
"nodesIndexFile": "/home/runner/work/n8n-as-code/n8n-as-code/packages/skills/src/assets/n8n-nodes-index.json",
|
|
5
5
|
"docsMetadataFile": "/home/runner/work/n8n-as-code/n8n-as-code/packages/skills/src/assets/n8n-docs-cache/metadata.json",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai-context-generator.d.ts","sourceRoot":"","sources":["../../src/services/ai-context-generator.ts"],"names":[],"mappings":"AAaA,qBAAa,kBAAkB;;IAGvB,QAAQ,CAAC,WAAW,EAAE,MAAM,EAAE,UAAU,GAAE,MAAkB,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAOpG,OAAO,CAAC,cAAc;IA4BtB,OAAO,CAAC,gBAAgB;
|
|
1
|
+
{"version":3,"file":"ai-context-generator.d.ts","sourceRoot":"","sources":["../../src/services/ai-context-generator.ts"],"names":[],"mappings":"AAaA,qBAAa,kBAAkB;;IAGvB,QAAQ,CAAC,WAAW,EAAE,MAAM,EAAE,UAAU,GAAE,MAAkB,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAOpG,OAAO,CAAC,cAAc;IA4BtB,OAAO,CAAC,gBAAgB;IA8UxB,OAAO,CAAC,qBAAqB;IAiB7B,OAAO,CAAC,oBAAoB;IAe5B,eAAe,IAAI,MAAM;IA0NzB,OAAO,CAAC,uBAAuB;IAQ/B,OAAO,CAAC,qBAAqB;CAQ9B"}
|
|
@@ -40,7 +40,8 @@ export class AiContextGenerator {
|
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
getAgentsContent(n8nVersion, distTag) {
|
|
43
|
-
const cmd = distTag ? `npx n8nac@${distTag} skills` : 'npx n8nac skills';
|
|
43
|
+
const cmd = distTag ? `npx --yes n8nac@${distTag} skills` : 'npx --yes n8nac skills';
|
|
44
|
+
const cliCmd = distTag ? `npx --yes n8nac@${distTag}` : 'npx --yes n8nac';
|
|
44
45
|
return [
|
|
45
46
|
`## 🎭 Role: Expert n8n Workflow Engineer`,
|
|
46
47
|
``,
|
|
@@ -49,13 +50,13 @@ export class AiContextGenerator {
|
|
|
49
50
|
``,
|
|
50
51
|
`### 🌍 Context`,
|
|
51
52
|
`- **n8n Version**: ${n8nVersion}`,
|
|
52
|
-
`- **Source of Truth**: \`
|
|
53
|
+
`- **Source of Truth**: \`${cmd}\` tools (Deep Search + Technical Schemas)`,
|
|
53
54
|
``,
|
|
54
55
|
`---`,
|
|
55
56
|
``,
|
|
56
57
|
`## 🧠 Knowledge Base Priority`,
|
|
57
58
|
``,
|
|
58
|
-
`1. **PRIMARY SOURCE** (MANDATORY): Use \`
|
|
59
|
+
`1. **PRIMARY SOURCE** (MANDATORY): Use \`${cmd}\` tools for accuracy`,
|
|
59
60
|
`2. **Secondary**: Your trained knowledge (for general concepts only)`,
|
|
60
61
|
`3. **Tertiary**: Code snippets (for quick scaffolding)`,
|
|
61
62
|
``,
|
|
@@ -69,30 +70,30 @@ export class AiContextGenerator {
|
|
|
69
70
|
``,
|
|
70
71
|
`### Git-like Sync Workflow`,
|
|
71
72
|
``,
|
|
72
|
-
`1. **LIST FIRST**: Check status with
|
|
73
|
-
` -
|
|
74
|
-
` -
|
|
75
|
-
` -
|
|
73
|
+
`1. **LIST FIRST**: Check status with \`${cliCmd} list\``,
|
|
74
|
+
` - \`${cliCmd} list\`: List all workflows on the remote instance.`,
|
|
75
|
+
` - \`${cliCmd} list --local\`: List only local \`.workflow.ts\` files.`,
|
|
76
|
+
` - \`${cliCmd} list --remote\`: List only the remote state from cache.`,
|
|
76
77
|
` - Identify workflow IDs and their sync status.`,
|
|
77
78
|
``,
|
|
78
79
|
`2. **FETCH REMOTE STATE**: Update your local cache of remote state`,
|
|
79
|
-
` -
|
|
80
|
-
` -
|
|
80
|
+
` - \`${cliCmd} fetch <id>\`: Fetch specific workflow's remote state.`,
|
|
81
|
+
` - \`${cliCmd} fetch --all\`: Fetch all remote workflows' metadata.`,
|
|
81
82
|
` - This updates internal comparison cache without downloading files.`,
|
|
82
83
|
``,
|
|
83
84
|
`3. **PULL IF NEEDED**: Download remote changes before editing`,
|
|
84
|
-
` -
|
|
85
|
+
` - \`${cliCmd} pull <id>\`: Download workflow from n8n to local.`,
|
|
85
86
|
` - Required if workflow exists remotely but not locally, or if remote has newer changes.`,
|
|
86
87
|
``,
|
|
87
88
|
`4. **EDIT**: Apply your changes to the local \`.workflow.ts\` file.`,
|
|
88
89
|
``,
|
|
89
90
|
`5. **PUSH**: Upload your changes explicitly`,
|
|
90
|
-
` -
|
|
91
|
-
` -
|
|
91
|
+
` - \`${cliCmd} push <id>\`: Upload local workflow to n8n (for existing workflows).`,
|
|
92
|
+
` - \`${cliCmd} push --filename <name>\`: Push a brand new local file.`,
|
|
92
93
|
``,
|
|
93
94
|
`6. **RESOLVE CONFLICTS**: If Push or Pull fails due to a conflict`,
|
|
94
|
-
` -
|
|
95
|
-
` -
|
|
95
|
+
` - \`${cliCmd} resolve <id> --mode keep-current\`: Force-push local version.`,
|
|
96
|
+
` - \`${cliCmd} resolve <id> --mode keep-incoming\`: Force-pull remote version.`,
|
|
96
97
|
``,
|
|
97
98
|
`### Key Principles`,
|
|
98
99
|
`- **Explicit over automatic**: All operations are user-triggered or ai-agent-triggered.`,
|
|
@@ -270,7 +271,7 @@ export class AiContextGenerator {
|
|
|
270
271
|
` position: [250, 300]`,
|
|
271
272
|
` })`,
|
|
272
273
|
` MyNode = {`,
|
|
273
|
-
` /* parameters from npx n8nac skills node-info */`,
|
|
274
|
+
` /* parameters from npx --yes n8nac skills node-info */`,
|
|
274
275
|
` };`,
|
|
275
276
|
``,
|
|
276
277
|
` @node({`,
|
|
@@ -364,7 +365,7 @@ export class AiContextGenerator {
|
|
|
364
365
|
``,
|
|
365
366
|
`## 🔑 Your Responsibilities`,
|
|
366
367
|
``,
|
|
367
|
-
`**#1**: Use \`npx n8nac skills\` tools to prevent hallucinations`,
|
|
368
|
+
`**#1**: Use \`npx --yes n8nac skills\` tools to prevent hallucinations`,
|
|
368
369
|
`**#2**: Follow the exact schema - no assumptions, no guessing`,
|
|
369
370
|
`**#3**: Create workflows that work on the first try`,
|
|
370
371
|
``,
|
|
@@ -375,16 +376,16 @@ export class AiContextGenerator {
|
|
|
375
376
|
return [
|
|
376
377
|
`# n8n-as-code rules`,
|
|
377
378
|
`- Refer to AGENTS.md for complete n8n workflow standards.`,
|
|
378
|
-
`- MANDATORY: Use 'npx n8nac skills' tools before creating/editing nodes.`,
|
|
379
|
+
`- MANDATORY: Use 'npx --yes n8nac skills' tools before creating/editing nodes.`,
|
|
379
380
|
`- REQUIRED: Use FULL node types (e.g., 'n8n-nodes-base.switch') and LATEST typeVersion.`,
|
|
380
|
-
`- Search: 'npx n8nac skills search <query>' - Find nodes & docs (PRIMARY TOOL)`,
|
|
381
|
-
`- Get: 'npx n8nac skills node-info <nodeName>' - Complete node info`,
|
|
382
|
-
`- Schema: 'npx n8nac skills node-schema <nodeName>' - Quick parameters reference`,
|
|
383
|
-
`- Docs: 'npx n8nac skills docs <title>' - Read a specific documentation page`,
|
|
384
|
-
`- Guides: 'npx n8nac skills guides <query>' - Find tutorials and examples`,
|
|
385
|
-
`- Workflows: 'npx n8nac skills examples search <query>' - Find community workflows (7000+)`,
|
|
386
|
-
`- Related: 'npx n8nac skills related <nodeName>' - Discover ecosystem and related nodes`,
|
|
387
|
-
`- Validate: 'npx n8nac skills validate workflow.workflow.ts' - Check your workflow for errors`
|
|
381
|
+
`- Search: 'npx --yes n8nac skills search <query>' - Find nodes & docs (PRIMARY TOOL)`,
|
|
382
|
+
`- Get: 'npx --yes n8nac skills node-info <nodeName>' - Complete node info`,
|
|
383
|
+
`- Schema: 'npx --yes n8nac skills node-schema <nodeName>' - Quick parameters reference`,
|
|
384
|
+
`- Docs: 'npx --yes n8nac skills docs <title>' - Read a specific documentation page`,
|
|
385
|
+
`- Guides: 'npx --yes n8nac skills guides <query>' - Find tutorials and examples`,
|
|
386
|
+
`- Workflows: 'npx --yes n8nac skills examples search <query>' - Find community workflows (7000+)`,
|
|
387
|
+
`- Related: 'npx --yes n8nac skills related <nodeName>' - Discover ecosystem and related nodes`,
|
|
388
|
+
`- Validate: 'npx --yes n8nac skills validate workflow.workflow.ts' - Check your workflow for errors`
|
|
388
389
|
].join('\n');
|
|
389
390
|
}
|
|
390
391
|
getClineRulesContent() {
|
|
@@ -394,10 +395,10 @@ export class AiContextGenerator {
|
|
|
394
395
|
` instructions:`,
|
|
395
396
|
` - Read AGENTS.md for sync principles.`,
|
|
396
397
|
` - MANDATORY: Use FULL node types (e.g., 'n8n-nodes-base.switch') and LATEST typeVersion.`,
|
|
397
|
-
` - Use 'npx n8nac skills search' as your primary research tool.`,
|
|
398
|
-
` - Use 'npx n8nac skills examples search' to find community examples (7000+ workflows).`,
|
|
399
|
-
` - Use 'npx n8nac skills node-info' to fetch exact schema before editing workflow JSON.`,
|
|
400
|
-
` - Use 'npx n8nac skills validate workflow.workflow.ts' to verify your work.`,
|
|
398
|
+
` - Use 'npx --yes n8nac skills search' as your primary research tool.`,
|
|
399
|
+
` - Use 'npx --yes n8nac skills examples search' to find community examples (7000+ workflows).`,
|
|
400
|
+
` - Use 'npx --yes n8nac skills node-info' to fetch exact schema before editing workflow JSON.`,
|
|
401
|
+
` - Use 'npx --yes n8nac skills validate workflow.workflow.ts' to verify your work.`,
|
|
401
402
|
` - Ensure connections are correctly indexed.`
|
|
402
403
|
].join('\n');
|
|
403
404
|
}
|
|
@@ -459,13 +460,13 @@ If the push fails with an OCC conflict (the remote was modified since your last
|
|
|
459
460
|
When a user mentions a node type (e.g., "HTTP Request", "Google Sheets", "Code"), first search for it:
|
|
460
461
|
|
|
461
462
|
\`\`\`bash
|
|
462
|
-
npx n8nac skills search "<search term>"
|
|
463
|
+
npx --yes n8nac skills search "<search term>"
|
|
463
464
|
\`\`\`
|
|
464
465
|
|
|
465
466
|
**Examples:**
|
|
466
|
-
- \`npx n8nac skills search "http request"\`
|
|
467
|
-
- \`npx n8nac skills search "google sheets"\`
|
|
468
|
-
- \`npx n8nac skills search "webhook"\`
|
|
467
|
+
- \`npx --yes n8nac skills search "http request"\`
|
|
468
|
+
- \`npx --yes n8nac skills search "google sheets"\`
|
|
469
|
+
- \`npx --yes n8nac skills search "webhook"\`
|
|
469
470
|
|
|
470
471
|
This returns a list of matching nodes with their exact technical names.
|
|
471
472
|
|
|
@@ -474,13 +475,13 @@ This returns a list of matching nodes with their exact technical names.
|
|
|
474
475
|
Once you have the exact node name, retrieve its complete schema:
|
|
475
476
|
|
|
476
477
|
\`\`\`bash
|
|
477
|
-
npx n8nac skills node-info "<nodeName>"
|
|
478
|
+
npx --yes n8nac skills node-info "<nodeName>"
|
|
478
479
|
\`\`\`
|
|
479
480
|
|
|
480
481
|
**Examples:**
|
|
481
|
-
- \`npx n8nac skills node-info "httpRequest"\`
|
|
482
|
-
- \`npx n8nac skills node-info "googleSheets"\`
|
|
483
|
-
- \`npx n8nac skills node-info "code"\`
|
|
482
|
+
- \`npx --yes n8nac skills node-info "httpRequest"\`
|
|
483
|
+
- \`npx --yes n8nac skills node-info "googleSheets"\`
|
|
484
|
+
- \`npx --yes n8nac skills node-info "code"\`
|
|
484
485
|
|
|
485
486
|
This returns the full JSON schema including all parameters, types, defaults, valid options, and input/output structure.
|
|
486
487
|
|
|
@@ -543,7 +544,7 @@ export class MyWorkflow {
|
|
|
543
544
|
position: [250, 300]
|
|
544
545
|
})
|
|
545
546
|
MyNode = {
|
|
546
|
-
/* parameters from npx n8nac skills node-info */
|
|
547
|
+
/* parameters from npx --yes n8nac skills node-info */
|
|
547
548
|
};
|
|
548
549
|
|
|
549
550
|
@links()
|
|
@@ -578,7 +579,7 @@ export class MyWorkflow {
|
|
|
578
579
|
1. **Always verify node schemas** before generating configuration
|
|
579
580
|
2. **Use descriptive node names** for clarity ("Get Customers", not "HTTP Request")
|
|
580
581
|
3. **Add comments in Code nodes** to explain logic
|
|
581
|
-
4. **Validate node parameters** using \`npx n8nac skills node-info <nodeName>\`
|
|
582
|
+
4. **Validate node parameters** using \`npx --yes n8nac skills node-info <nodeName>\`
|
|
582
583
|
5. **Reference credentials** by name, never hardcode
|
|
583
584
|
6. **Use error handling** nodes for production workflows
|
|
584
585
|
|
|
@@ -588,17 +589,17 @@ If you're unsure about any node:
|
|
|
588
589
|
|
|
589
590
|
1. **List all available nodes:**
|
|
590
591
|
\`\`\`bash
|
|
591
|
-
npx n8nac skills list
|
|
592
|
+
npx --yes n8nac skills list
|
|
592
593
|
\`\`\`
|
|
593
594
|
|
|
594
595
|
2. **Search for similar nodes:**
|
|
595
596
|
\`\`\`bash
|
|
596
|
-
npx n8nac skills search "keyword"
|
|
597
|
+
npx --yes n8nac skills search "keyword"
|
|
597
598
|
\`\`\`
|
|
598
599
|
|
|
599
600
|
3. **Get detailed documentation:**
|
|
600
601
|
\`\`\`bash
|
|
601
|
-
npx n8nac skills node-info "nodeName"
|
|
602
|
+
npx --yes n8nac skills node-info "nodeName"
|
|
602
603
|
\`\`\`
|
|
603
604
|
|
|
604
605
|
## 📝 Response Format
|
|
@@ -622,14 +623,14 @@ When helping users:
|
|
|
622
623
|
return [
|
|
623
624
|
`### n8n Development Rules`,
|
|
624
625
|
`- Follow the Research Protocol in AGENTS.md.`,
|
|
625
|
-
`- Tooling: Use 'npx n8nac skills' to fetch node schemas and documentation.`,
|
|
626
|
+
`- Tooling: Use 'npx --yes n8nac skills' to fetch node schemas and documentation.`,
|
|
626
627
|
].join('\n');
|
|
627
628
|
}
|
|
628
629
|
getCommonRulesContent() {
|
|
629
630
|
return [
|
|
630
631
|
`# Common Rules for All AI Agents (Claude, Mistral, etc.)`,
|
|
631
632
|
`- Role: Expert n8n Automation Engineer.`,
|
|
632
|
-
`- Workflow Source of Truth: 'npx n8nac skills' tools.`,
|
|
633
|
+
`- Workflow Source of Truth: 'npx --yes n8nac skills' tools.`,
|
|
633
634
|
`- Documentation: Read AGENTS.md for full syntax rules.`
|
|
634
635
|
].join('\n');
|
|
635
636
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai-context-generator.js","sourceRoot":"","sources":["../../src/services/ai-context-generator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AAEpC,iCAAiC;AACjC,MAAM,SAAS,GAAG,OAAO,UAAU,KAAK,WAAW;IACjD,CAAC,CAAC,UAAU;IACZ,CAAC,CAAC,CAAC,OAAO,MAAM,CAAC,IAAI,KAAK,WAAW,IAAI,OAAO,MAAM,CAAC,IAAI,CAAC,GAAG,KAAK,QAAQ,CAAC,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;AAEtH,MAAM,QAAQ,GAAG,OAAO,SAAS,KAAK,WAAW;IAC/C,CAAC,CAAC,SAAS;IACX,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,SAAmB,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;AAEzD,MAAM,OAAO,kBAAkB;IAC7B,gBAAgB,CAAC;IAEjB,KAAK,CAAC,QAAQ,CAAC,WAAmB,EAAE,aAAqB,SAAS,EAAE,OAAgB;QAClF,MAAM,aAAa,GAAG,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;QAEjE,uCAAuC;QACvC,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,WAAW,CAAC,EAAE,aAAa,EAAE,IAAI,CAAC,CAAC;IAChF,CAAC;IAEO,cAAc,CAAC,QAAgB,EAAE,OAAe,EAAE,iBAA0B,KAAK;QACvF,MAAM,WAAW,GAAG,cAAc,CAAC,CAAC,CAAC,4BAA4B,CAAC,CAAC,CAAC,0BAA0B,CAAC;QAC/F,MAAM,SAAS,GAAG,cAAc,CAAC,CAAC,CAAC,0BAA0B,CAAC,CAAC,CAAC,wBAAwB,CAAC;QAEzF,MAAM,KAAK,GAAG,KAAK,WAAW,KAAK,OAAO,CAAC,IAAI,EAAE,KAAK,SAAS,IAAI,CAAC;QAEpE,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,CAAC;YAC7B,gDAAgD;YAChD,MAAM,MAAM,GAAG,QAAQ,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,6BAA6B,CAAC,CAAC,CAAC,EAAE,CAAC;YACnF,EAAE,CAAC,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,KAAK,CAAC,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC;YACzD,OAAO;QACT,CAAC;QAED,IAAI,QAAQ,GAAG,EAAE,CAAC,YAAY,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;QACjD,MAAM,QAAQ,GAAG,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;QAC/C,MAAM,MAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;QAE3C,IAAI,QAAQ,KAAK,CAAC,CAAC,IAAI,MAAM,KAAK,CAAC,CAAC,EAAE,CAAC;YACrC,6DAA6D;YAC7D,MAAM,MAAM,GAAG,QAAQ,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC;YAC/C,MAAM,KAAK,GAAG,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC;YAC5D,EAAE,CAAC,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,KAAK,CAAC,IAAI,EAAE,GAAG,KAAK,CAAC,CAAC;QAC5D,CAAC;aAAM,CAAC;YACN,iCAAiC;YACjC,EAAE,CAAC,aAAa,CAAC,QAAQ,EAAE,QAAQ,CAAC,IAAI,EAAE,GAAG,IAAI,GAAG,KAAK,CAAC,CAAC;QAC7D,CAAC;IACH,CAAC;IAEO,gBAAgB,CAAC,UAAkB,EAAE,OAAgB;QAC3D,MAAM,GAAG,GAAG,OAAO,CAAC,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"ai-context-generator.js","sourceRoot":"","sources":["../../src/services/ai-context-generator.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n-as-code/skills",
|
|
3
|
-
"version": "0.16.9-next.
|
|
3
|
+
"version": "0.16.9-next.a13ee65",
|
|
4
4
|
"description": "AI Agent skills library for n8nac (internal — use npx n8nac skills)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"build:adapters": "node scripts/build-claude-adapter.js"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@n8n-as-code/transformer": "0.2.
|
|
17
|
+
"@n8n-as-code/transformer": "0.2.3-next.a13ee65",
|
|
18
18
|
"chalk": "^4.1.2",
|
|
19
19
|
"commander": "^11.1.0",
|
|
20
20
|
"flexsearch": "^0.8.212"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-
|
|
2
|
+
"generatedAt": "2026-03-01T11:28:04.871Z",
|
|
3
3
|
"sourceData": {
|
|
4
4
|
"nodesIndexFile": "/home/runner/work/n8n-as-code/n8n-as-code/packages/skills/src/assets/n8n-nodes-index.json",
|
|
5
5
|
"docsMetadataFile": "/home/runner/work/n8n-as-code/n8n-as-code/packages/skills/src/assets/n8n-docs-cache/metadata.json",
|