Skip to content

Latest commit

 

History

History
131 lines (97 loc) · 4.69 KB

File metadata and controls

131 lines (97 loc) · 4.69 KB

Roadmap

This document tracks the actual state of the project. It is intentionally narrower and more honest than aspirational positioning text. If something is not on this list, it is not planned.

The repository-root roadmap.md exists for historical reasons; this file is the authoritative version.

Shipped

V0 — Foundation

  • Existing n8n workflow collection consolidated under workflows/, automation/, and per-domain folders.
  • JSON schemas for the Universal Workflow IR, workflow metadata, repair proposals, and learning events.
  • Read-only audit tool with redacted secret scanning.
  • Catalog index generated from the audit.
  • Seed content for the LLM wiki (patterns, integrations, repair rules, failure cases, framework guides).

Security Sanitization

  • Repository-wide secret-pattern scan with conservative match rules.
  • All matches replaced with [REDACTED] before anything is written to any report or catalog.
  • Current audit run reports 0 possible secret findings.

Expansion Pack V0

  • 420 deterministic n8n workflow templates under workflows/generated/open-workflow-library-v0/, across 21 categories.
  • Each template ships with workflow.json, workflow.ir.json, and a README.
  • Templates use placeholder credentials and placeholder URLs only.
  • Validated by tools/validate_generated_pack.py.

Intelligence Core V1

  • Unified catalog with deterministic quality scoring.
  • Search CLI over the unified catalog.
  • Schema validator (with optional jsonschema mode and a lightweight-fallback mode).
  • Duplicate analyzer with exact-hash and title-similarity grouping.
  • Human-reviewable repair-proposal generator.
  • Deterministic prompt-to-IR MVP (keyword rules, not an LLM).
  • Wiki seed builder for wiki/generated/.

Runtime Proof V1

  • IR-to-n8n exporter with a conservative node whitelist.
  • Static n8n compatibility validator.
  • Prompt-to-n8n orchestrator that produces a per-prompt proof directory.
  • Runtime repair proposal generator.
  • Learning event generator from validation findings.
  • Human review queue aggregator.

Public Readiness Hardening V1

  • README quickstart + honest status table.
  • SECURITY.md and structured GitHub issue/PR templates.
  • CONTRIBUTING.md rewrite aligned to the current toolchain.
  • .gitignore for Python and local dev artefacts.
  • docs/demo.md, docs/review-queue.md, docs/roadmap.md (this file), docs/maintainer-release-checklist.md, docs/status.md, and docs/license-note.md.
  • Public-claims audit tool (tools/audit_public_claims.py).
  • Final readiness check orchestrator (tools/final_readiness_check.py).

Next

Behavioural n8n sandbox validation

Goal: import at least one runtime-proof workflow into a sandbox n8n instance, replace placeholders with realistic values, trigger the workflow, and record outcomes as learning events with source: "generation" or source: "ci".

Out of scope for V1; required before any "behaviourally validated" language can appear anywhere in the repository.

Repair-rule curation

Goal: turn the seeded findings under wiki/generated/ into curated entries under wiki/repair-rules/, one PR at a time. Each promotion must reference the originating learning event(s).

Later

Dify exporter

Goal: emit Dify-compatible workflow JSON from the Universal IR using a conservative node whitelist and the same placeholder rules used by the n8n exporter.

LangGraph exporter

Goal: emit a LangGraph-compatible graph definition from the Universal IR with the same safety rules.

LLM-backed prompt-to-workflow

Goal: replace the keyword-rule prompt-to-IR MVP with a retrieval-grounded LLM pipeline that uses the catalog and the curated wiki as its knowledge base. The deterministic MVP remains as a fallback and as a unit-test baseline for the LLM output.

Curated workflow packs

Goal: ship hand-reviewed packs per regulated and high-value domain (homecare admin, finance ops, security ops), each with explicit safety notes and a documented review trail.

Hosted documentation / site

Goal: a static documentation site built from docs/ and wiki/, hosted under the project's GitHub Pages. No new content is created for the site; it consumes the existing repository content.

Explicitly out of scope

  • Autonomous self-improvement. Learning events stay evidence; promotion to curated wiki rules requires a human PR.
  • Production certification. This is an open-source developer library, not a certified product.
  • Regulatory compliance (HIPAA, SOC 2, GDPR, etc.). Workflows in this library are starting points; compliance is the operator's responsibility.
  • Clinical, legal, or financial advice. Workflows tagged for healthcare, legal, or finance domains support administrative operations only.