@lhi/n8m 0.3.1 → 0.3.3
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 +23 -1
- package/oclif.manifest.json +1 -1
- package/package.json +22 -1
package/README.md
CHANGED
|
@@ -3,9 +3,13 @@
|
|
|
3
3
|
> Generate, modify, test, and deploy n8n workflows from the command line using
|
|
4
4
|
> AI.
|
|
5
5
|
|
|
6
|
+
[](https://www.npmjs.com/package/@lhi/n8m)
|
|
7
|
+
[](https://www.npmjs.com/package/@lhi/n8m)
|
|
8
|
+
[](LICENSE)
|
|
6
9
|
[](https://typescriptlang.org/)
|
|
7
10
|
[](https://oclif.io/)
|
|
8
11
|
[](https://n8n.io)
|
|
12
|
+
[](https://github.com/Lee-Holdings-International/n8m#sponsors)
|
|
9
13
|
|
|
10
14
|
**Stop clicking. Start shipping.** `n8m` is an open-source CLI that wraps your
|
|
11
15
|
n8n instance with an agentic AI layer. Describe what you want in plain English —
|
|
@@ -518,7 +522,25 @@ npm run dev
|
|
|
518
522
|
|
|
519
523
|
## Sponsors
|
|
520
524
|
|
|
521
|
-
|
|
525
|
+
n8m is MIT-licensed and free forever. Sponsorship directly funds AI API costs,
|
|
526
|
+
continued development, and the time it takes to keep up with n8n's rapidly
|
|
527
|
+
evolving node ecosystem.
|
|
528
|
+
|
|
529
|
+
### Sponsor tiers
|
|
530
|
+
|
|
531
|
+
| Tier | Amount | What you get |
|
|
532
|
+
|------|--------|--------------|
|
|
533
|
+
| **Supporter** | $5 / mo | Name in the README sponsors list |
|
|
534
|
+
| **Studio** | $25 / mo | Logo in the README + priority issue responses |
|
|
535
|
+
| **Enterprise** | $100 / mo | Logo + a direct line for feature requests and integration questions |
|
|
536
|
+
|
|
537
|
+
[Become a sponsor on Ko-fi](https://ko-fi.com/lcanady) · [GitHub Sponsors](https://github.com/sponsors/lcanady)
|
|
538
|
+
|
|
539
|
+
---
|
|
540
|
+
|
|
541
|
+
### Current Sponsors
|
|
542
|
+
|
|
543
|
+
#### Partial Sponsors
|
|
522
544
|
|
|
523
545
|
[The Daily Caller](https://dailycaller.com)
|
|
524
546
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lhi/n8m",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Agentic n8n CLI wrapper - A Skill Bridge for n8n workflow automation",
|
|
5
5
|
"author": "Lem Canady",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"n8n",
|
|
8
|
+
"workflow",
|
|
9
|
+
"automation",
|
|
10
|
+
"ai",
|
|
11
|
+
"agentic",
|
|
12
|
+
"cli",
|
|
13
|
+
"llm",
|
|
14
|
+
"openai",
|
|
15
|
+
"anthropic",
|
|
16
|
+
"claude",
|
|
17
|
+
"gemini",
|
|
18
|
+
"langgraph",
|
|
19
|
+
"mcp",
|
|
20
|
+
"model-context-protocol",
|
|
21
|
+
"workflow-automation",
|
|
22
|
+
"workflow-generator",
|
|
23
|
+
"no-code",
|
|
24
|
+
"low-code",
|
|
25
|
+
"devtools"
|
|
26
|
+
],
|
|
6
27
|
"license": "MIT",
|
|
7
28
|
"bin": {
|
|
8
29
|
"n8m": "./bin/run.js"
|