@lhi/n8m 0.3.0 → 0.3.2

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 CHANGED
@@ -526,13 +526,14 @@ npm run dev
526
526
 
527
527
  ## Roadmap
528
528
 
529
+ ### Shipped
530
+
529
531
  - [x] Agentic graph (Architect → Engineer → QA)
530
532
  - [x] SQLite session persistence
531
533
  - [x] HITL interrupts and resume
532
534
  - [x] Sub-workflow dependency resolution in tests
533
535
  - [x] Open source — no account required
534
- - [x] Multi-provider AI support (OpenAI, Claude, Gemini, Ollama, any
535
- OpenAI-compatible API)
536
+ - [x] Multi-provider AI support (OpenAI, Claude, Gemini, Ollama, any OpenAI-compatible API)
536
537
  - [x] Automatic documentation generation (Mermaid + AI Summary)
537
538
  - [x] Project-based folder organization
538
539
  - [x] AI-driven test scenario generation (`--ai-scenarios`)
@@ -543,5 +544,27 @@ npm run dev
543
544
  - [x] Pattern library — extract & reuse knowledge from validated workflows (`n8m learn`)
544
545
  - [x] GitHub pattern archive import (`n8m learn --github owner/repo`)
545
546
  - [x] MCP server — expose n8m as tools for Claude Desktop and other MCP clients
546
- - [ ] Native n8n canvas integration
547
- - [ ] Multi-agent collaboration on a single goal
547
+
548
+ ### Near-term
549
+
550
+ - [ ] **`n8m watch`** — file-system watcher that auto-deploys on save with live reload in the n8n editor
551
+ - [ ] **`n8m diff`** — human-readable structural diff between two versions of a workflow (nodes added/removed/changed)
552
+ - [ ] **`n8m rollback`** — restore a workflow to a previous git-tracked version with a single command
553
+ - [ ] **Credential awareness** — AI consults available credential types on the target instance so it stops generating nodes it can't authenticate
554
+ - [ ] **Parallel test runs** — fire multiple fixture payloads concurrently and report aggregate pass/fail
555
+
556
+ ### Medium-term
557
+
558
+ - [ ] **`n8m debug`** — attach to a running execution and stream node-by-node output to the terminal in real time
559
+ - [ ] **`n8m chat`** — interactive REPL where every message applies an incremental AI edit and immediately re-tests
560
+ - [ ] **Workflow linter** — static analysis before deploy: dead branches, missing error handlers, unconnected nodes, credential gaps
561
+ - [ ] **`n8m learn --from-executions`** — scrape recent successful executions and distil reusable patterns into `.n8m/patterns/` automatically
562
+ - [ ] **Multi-instance deploy** — deploy the same workflow to staging and production in one command with environment-variable substitution
563
+
564
+ ### Longer-term
565
+
566
+ - [ ] **Visual diff** — `n8m diff --ui` opens a side-by-side workflow comparison in the n8n canvas
567
+ - [ ] **Workflow marketplace** — `n8m publish` / `n8m install <slug>` to share and consume community patterns with version pinning
568
+ - [ ] **Execution replay** — record a live execution and automatically promote it to a fixture, closing the capture loop entirely
569
+ - [ ] **Agent memory across sessions** — the engineer remembers which node patterns worked well for a given integration and prefers them on future builds
570
+ - [ ] **LangGraph trace export** — export the full agentic reasoning trace (Architect → Engineer → Reviewer → QA) as a structured log for debugging and auditing
@@ -518,5 +518,5 @@
518
518
  ]
519
519
  }
520
520
  },
521
- "version": "0.3.0"
521
+ "version": "0.3.2"
522
522
  }
package/package.json CHANGED
@@ -1,8 +1,29 @@
1
1
  {
2
2
  "name": "@lhi/n8m",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
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"