@ferchy/n8n-nodes-aimc-toolkit 0.1.34 → 0.1.36
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 +15 -0
- package/package.json +1 -6
package/README.md
CHANGED
|
@@ -145,6 +145,21 @@ return rows.map((row, index) => ({
|
|
|
145
145
|
}));
|
|
146
146
|
```
|
|
147
147
|
|
|
148
|
+
**Prompt starter (for GPT/Claude)**
|
|
149
|
+
If you want AI to generate your node code, paste this prompt into ChatGPT, Claude, or any GPT-style tool and fill in your task:
|
|
150
|
+
```text
|
|
151
|
+
You are writing code for an n8n AIMC Code node.
|
|
152
|
+
Goal: <describe what you want to do>
|
|
153
|
+
Execution mode: <Run Once for Each Item OR Run Once for All Items>
|
|
154
|
+
Inputs: items are available as `items` (all) or `item` (single)
|
|
155
|
+
Return: return a plain object or array of objects (JSON-safe)
|
|
156
|
+
Libraries (globals): axios, lodash (_), zod (z), joi (Joi), yup, Ajv, validator, dayjs, dateFns, dateFnsTz, moment,
|
|
157
|
+
cheerio, papaparse (Papa), yaml (YAML), xml2js, XMLParser, qs, FormData, uuid, nanoid, bytes, cronParser, ms,
|
|
158
|
+
fuzzy, stringSimilarity, slug, pluralize, jsonDiff, htmlToText, marked, qrcode/QRCode, ytdl, ffmpeg, ffmpegStatic, ffprobeStatic.
|
|
159
|
+
Helpers: utils.now(), utils.safeJson(), utils.toArray()
|
|
160
|
+
Please return only the JavaScript code for the AIMC Code node.
|
|
161
|
+
```
|
|
162
|
+
|
|
148
163
|
### AIMC Media
|
|
149
164
|
|
|
150
165
|
**Operations**
|
package/package.json
CHANGED
|
@@ -1,14 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ferchy/n8n-nodes-aimc-toolkit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.36",
|
|
4
4
|
"description": "AIMC Toolkit nodes for n8n: code execution and media operations.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Ferchy",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "https://github.com/ferchy/n8n-nodes-aimc-toolkit"
|
|
10
|
-
},
|
|
11
|
-
"homepage": "https://github.com/ferchy/n8n-nodes-aimc-toolkit#readme",
|
|
12
7
|
"engines": {
|
|
13
8
|
"node": ">=18.0.0"
|
|
14
9
|
},
|