@ferchy/n8n-nodes-aimc-toolkit 0.1.12 → 0.1.13

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 +15 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -101,6 +101,21 @@ return rows.map((row, index) => ({
101
101
  }));
102
102
  ```
103
103
 
104
+ **Prompt starter (for GPT)**
105
+ If you want AI to generate your node code, paste this prompt into ChatGPT/GPT and fill in your task:
106
+ ```text
107
+ You are writing code for an n8n AIMC Code node.
108
+ Goal: <describe what you want to do>
109
+ Execution mode: <Run Once for Each Item OR Run Once for All Items>
110
+ Inputs: items are available as `items` (all) or `item` (single)
111
+ Return: return a plain object or array of objects (JSON-safe)
112
+ Libraries (globals): axios, lodash (_), zod (z), joi (Joi), yup, Ajv, validator, dayjs, dateFns, dateFnsTz, moment,
113
+ cheerio, papaparse (Papa), yaml (YAML), xml2js, XMLParser, qs, FormData, uuid, nanoid, bytes, cronParser, ms,
114
+ fuzzy, stringSimilarity, slug, pluralize, jsonDiff, htmlToText, marked, qrcode/QRCode, ytdl, ffmpeg, ffmpegStatic, ffprobeStatic.
115
+ Helpers: utils.now(), utils.safeJson(), utils.toArray()
116
+ Please return only the JavaScript code for the AIMC Code node.
117
+ ```
118
+
104
119
  **Example: fetch + parse XML**
105
120
  ```javascript
106
121
  const response = await axios.get('https://example.com/feed.xml');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ferchy/n8n-nodes-aimc-toolkit",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "AIMC Toolkit nodes for n8n: code execution and media operations.",
5
5
  "license": "MIT",
6
6
  "author": "Ferchy",