@lhi/n8m 0.3.0 → 0.3.1
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 +27 -4
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
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
|
-
|
|
547
|
-
|
|
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
|
package/oclif.manifest.json
CHANGED