Archflow is an AI-assisted system design workspace for generating, reviewing, teaching, and improving architecture diagrams. Describe any application — Instagram, YouTube, fintech, e-commerce, IoT — and get a hardened system diagram with review scoring, guided learning, clickable findings, and an architecture assistant.
from "build me Instagram" to a review-ready architecture diagram users can understand, inspect, and improve
Archflow optimizes for trust, transparency, and iterative workflow — AI output is hardened by deterministic rules, review findings teach the user what matters, and visible showcase examples make the product easy to demo in seconds.
flowchart TB
subgraph Client["Client Layer"]
WEB["Web Browser"]
DESKTOP["Mac Desktop (Electron)"]
end
subgraph Frontend["Frontend (Next.js 15 / React 19)"]
UI["React Flow Canvas<br/>Diagram Editor"]
PANELS["AI Assistant Panel<br/>Review Panel<br/>Library Panel<br/>History Panel"]
RENDER["styled-components<br/>Framer Motion<br/>html-to-image"]
end
subgraph Backend["Backend (Express / Node.js 22)"]
API["REST API Routes"]
GEN["Diagram Generator<br/>(OpenRouter AI)"]
RULES["Connection Rules Engine<br/>Review Signals (SOLID/CHECK/RISK)"]
EVAL["Internal Eval Harness"]
end
subgraph Data["Data Layer"]
DB[("PostgreSQL<br/>(Neon)")]
CACHE[("Redis<br/>(Upstash)")]
end
subgraph Auth["Auth"]
CLERK["Clerk<br/>Authentication"]
end
subgraph AI["AI"]
OR["OpenRouter<br/>AI Model Access"]
end
WEB --> UI
DESKTOP --> UI
UI --> PANELS
PANELS --> API
API --> GEN
API --> RULES
API --> CLERK
API --> DB
API --> CACHE
GEN --> OR
EVAL --> GEN
RULES --> EVAL
- What Archflow Helps With
- Product Principles
- User-Facing Features
- Showcase Demo Path
- Architecture Assistant Flow
- Architecture Assistant Reliability
- Connection Clarity
- Review Language
- What We Intentionally Avoid
- Internal Quality Loop
- Testing, CI & Security
- Tech Stack
- Mac Desktop Application
- Getting Started
- Project Structure
- Why This Direction Matters
- License
- turn a natural-language product idea into a visual system diagram
- understand why a technology was chosen
- understand which units are connected, in which direction, and through which named flow
- ask the architecture assistant what is missing, weak, or worth verifying in the current diagram
- start from recognizable demo prompts like Netflix, Uber, WhatsApp, Stripe, YouTube, and Slack
- learn the system through guided mode, review explanations, and "why this architecture works" summaries
- stage suggested technologies into Architectural Review before they touch the live diagram
- inspect assumptions and potential risks in the architecture
- replace one part of the system without regenerating everything
- keep diagrams readable with automatic layout and grouped categories
- compare versions and continue improving the same system over time
- export diagrams for sharing and documentation
- AI output is always clean — every generated diagram has all nodes connected with valid protocols, zero warnings, zero isolated components
- Rules for manual editing, not AI policing — connection mode (Strict/Guided/Sandbox) applies when users manually modify diagrams, not to AI output
- Surgical iteration over full regeneration — changing one part of the system should not blow away the rest
- Architecture score as a signal, not a grade — the score helps gauge completeness, it's not a gamified ranking
- Teaching beats magic — the product should explain the architecture, not only generate it
- Showcase clarity matters — recognizable examples make the product value obvious quickly
- Flow clarity over label overload — connections should be understandable without turning the canvas into a wall of overlapping text
- High-Fidelity Visual Excellence: A beautiful cyberpunk-inspired, monochrome interface designed for serious system thinking.
- Flat UI/UX System: Completely shadowless components (
box-shadowanddrop-shadowfully excised globally) paired with crisp borders, rounded corners, and native typography. - Optimized Landing Pathways: Direct access pathways to web sandboxes or standalone macOS workstation binaries (
Archflow.zip).
-
Generate production-grade system architecture from any prompt — famous companies (Instagram, Netflix, Uber, YouTube, WhatsApp, Twitter, Facebook, Slack, Amazon, Discord, Figma), application types (e-commerce, fintech, SaaS, realtime, IoT, healthcare, analytics), or custom descriptions
-
Guaranteed 100/100 score — every generated diagram scores 100/100 before you see it. Here's how:
Step 1 — AI generation: The LLM builds the base diagram from your prompt using 110+ real technology names.
Step 2 — Server-side auto-fix (
enforceArchitectureRules): A deterministic rule engine scans the generated diagram and auto-adds any missing layers:- Backend (EXPRESS) — if clients connect directly to databases
- Auth (CLERK) — if 3+ nodes without authentication
- Observability (GRAFANA + PROMETHEUS) — if 5+ nodes without monitoring
- Cache (REDIS) — if 2+ databases without caching
- Storage (S3) — if client-facing system with 4+ nodes without object storage
- Queue (KAFKA) — if 2+ backends without async processing
- Traffic management (NGINX) — if 6+ nodes without load balancing
- Read replica — if 1 database with high complexity (prevents single-datastore pressure)
- Edge direction fix — database→backend edges are flipped to backend→database
- Kafka consumers — orphan Kafka topics get a worker node
Every auto-added node is wired with the correct protocol (OIDC for auth, S3 for storage, KAFKA for queue, etc.)
Step 3 — Isolated node wiring (
connectIsolatedNodes): Every node that somehow has zero connections is wired to its nearest appropriate peer (frontend→backend, backend→database, queue→backend, etc.).Step 4 — Edge label normalization: Generic labels (
API,CONNECTION,INFERRING..., empty) are replaced with specific protocols (HTTPS,SQL,KAFKA, etc.).Step 5 — Frontend verification pass: After receiving the diagram, the frontend runs the full 20+ rule deterministic review. If the score isn't 100/100, missing layers are auto-added before rendering.
Step 6 — Backend reliability gate: Generation only returns when the deterministic review confirms score = 100/100, critical = 0, and warning = 0. Non-perfect candidates are rejected and regenerated.
Result: Every generated diagram arrives at 100/100 with zero findings, zero warnings, zero isolated components, and zero generic labels. The auto-fix list in the Review Panel shows exactly what was added so you can verify the system's work.
-
Versioned perfect-output cache — generation cache keys include a reliability pass version (
review-safe-v2) so stale non-perfect payloads are never replayed after quality upgrades -
Zero generic edge labels — labels like
API,CONNECTION, andINFERRING...are normalized to specific protocols (HTTPS,SQL,KAFKA, etc.) -
Single-datastore pressure auto-fix — read replica added when 1 database with high complexity
-
Known architecture database — 14+ famous company stacks with real technology names, not generic placeholders
-
Domain-specific blueprint tuning — e-commerce, social media, video streaming, fintech, SaaS multi-tenant, realtime collaboration, IoT, healthcare, analytics, food delivery, stock trading, and travel marketplaces each get appropriate tech choices and domain-specific roles
-
Zero isolated node guarantee — auto-fix layer ensures every generated node is connected with proper protocol labels
-
Smart auto-wiring — missing auth layer, observability stack, queue consumers, cache, storage, and traffic management are detected and connected automatically
-
Deterministic generation engine — temperature 0.2 with
response_format: json_objectensures consistent, reproducible outputs instead of random tech selections -
Auto-fix visibility — all auto-added nodes and connections are listed in the ReviewPanel so you know exactly what was generated
-
JSON repair on failure — if the AI returns malformed JSON, retries with the exact parse error for a corrected response
-
Surgical editing — replace individual nodes without regenerating the entire diagram
-
Auto-layout spaces nodes into clean category lanes for readability
- Beginner-friendly Guided Mode — explains the core workflow: start from a system, inspect the diagram, review weak spots, and improve safely
- Dashboard showcase examples — an accordion launcher for Netflix, Uber, WhatsApp, Stripe, YouTube, and Slack keeps demos available without crowding the dashboard
- Prompt handoff into the editor — showcase demos create a workspace and pre-fill the right architecture prompt so the user can synthesize immediately
- Showcase-ready demo path — examples make Archflow understandable without requiring someone to invent a prompt first
- Architecture narrative summaries — Review Panel explains why the architecture works, what reliability layers are present, and how the current internal quality gate reads
- Full diagram awareness — understands every node, edge, protocol, review finding, and category count in the current diagram before answering
- Finding-targeted suggestions — every suggestion MUST directly resolve a finding from the review system (NO_AUTH_LAYER → auth, MISSING_CACHE_LAYER → REDIS, etc.). No irrelevant suggestions.
- Staged suggestions, not silent mutations — the AI never directly edits your diagram. All proposed additions go through Architectural Review where you accept or decline with one click
- Connected suggestions — every staged technology comes with pre-built connections to existing nodes using real protocols (REST, gRPC, KAFKA, SQL, etc.) and real node IDs
- Review-aware answers — the assistant receives all deterministic review findings as structured context before responding, so it never contradicts the rules engine or suggests something already flagged
- Accepting always improves the score — suggestion edge labels are sanitized (no generic labels), so accepting never creates hidden penalties
- Context Budget Guard — intelligent serialization caps review context at 28,000 characters with clear human-readable feedback if the diagram is too large, preventing silent token overflow
- Persistent chat — conversation history and pending review suggestions survive page refreshes via local draft persistence
- Domain expert tone — responds like a Staff Infrastructure Architect, not a generic chatbot. References specific technologies, protocols, and architectural patterns
- Tutor mode behavior — answers now prioritize teaching value: why each layer exists, what tradeoff it protects, and what to check during architecture interviews
- Guided starter prompts — quick actions for weakest links, scaling risks, failover design, and interview-style walkthrough questions
- Dedicated review drawer with animated architecture score (0–100 with letter grade A–F), finding counts, and adaptive layer coverage stats
- Review drawer content is scrollable so long narratives, walkthroughs, findings, and auto-fix lists remain usable in dense diagrams
- Transparent score breakdown — click "Show score breakdown" to see the exact math:
100 - critical(-15) - warning(-8) + auth(+2) + cache(+3) = 93 - Finding-level coaching — every finding includes "Why this matters" and "How to fix" guidance so review doubles as a learning experience
- Clickable findings — each review finding can focus the affected node or edge on the canvas, with stronger visual highlighting for selected/review-focused components
- Why this architecture works — diagram-level narrative explains the system in plain architectural terms after generation or editing
- Score always moves in the right direction — accepting AI suggestions improves the score (no hidden edge penalties, no redundant threshold charges)
- Adaptive category coverage — coverage percentage is computed against relevant categories only (mobile doesn't count if absent, auth counts if clients exist)
- Connection mode selector — Strict (block invalid connections), Guided (flag unusual patterns), Sandbox (zero warnings for free sketching)
- Strict/Guided/Sandbox modes apply to manual diagram editing only — AI-generated output is always clean
- Review signals use
SOLID/CHECK/RISKlabels (not HIGH/MEDIUM/LOW) - 20+ deterministic checks including: direct client-to-database, missing application/auth/observability layers, queue topology gaps, isolated nodes, generic protocols, single-datastore pressure, central backend choke points, missing CDN/traffic management, missing cache layer, missing async processing
- Staged suggestions can be accepted or declined individually
- Accept-and-connect flow — approved suggestions are added to the diagram with rule-aware connection sanitization
- Connection rules engine validates every edge against full 9×9 category matrix (81 rules covering all category pairs)
- Transactional persistence — diagram updates, manual history writes, and diagram deletes use transaction-safe handlers so partial failures do not leave inconsistent data behind
- Structured backend logging — API routes and infrastructure paths use a shared logger instead of ad hoc console output
- Access-control coverage — tests cover non-owner denial, version access boundaries, collaborator-safe behavior, and rollback paths
- High-severity dependency audit gates — CI blocks high/critical production dependency findings for both frontend and backend
- Cross-platform CI — GitHub Actions verifies the project on both Ubuntu and macOS
- Playwright failure artifacts — failed editor smoke runs upload traces/screenshots for faster debugging
- Full React Flow-powered canvas with zoom, pan, snap-to-grid
- Undo/Redo — 50-level history with
Ctrl+Z/Cmd+Z(undo) andCtrl+Shift+Z/Cmd+Shift+Z(redo). Toolbar buttons also available. - One-click "Optimize to 100" — scans all review findings and auto-adds every missing layer at once. Accessible via Actions > Optimize to 100.
- Flow visibility modes:
FLOW_CONTEXT(focused),FLOW_ALL(full labels),FLOW_HIDE(clean) - Protocol-labeled edges with animated flow simulation
- Selected connections are emphasized visually on the canvas
- Drag-and-drop tech from the library panel directly onto the canvas
- Displays role, reason, and category for each selected node
- Lists assumptions and review risks
- Shows incoming and outgoing connected flows
- Suggests same-category replacement technologies
- Includes a System Design Lesson section that explains node responsibility, design tradeoffs, and interview framing
- Shows source → target endpoints with protocol and category badges
- Displays connection spec, why it fits, assumptions, and review risks
- Confidence signals derived from deterministic rule checks
- One-click disconnect button to delete the connection
- Includes a Protocol Primer section to explain why the selected protocol fits this path and when alternatives are better
- Built-in technology catalog organized by category (frontend, backend, database, queue, auth, storage, external, devops)
- User-registered custom technologies
- Drag-and-drop from inventory onto the canvas
- Full version snapshots stored as the diagram evolves
- Restore any previous version with a single click
- Diff-aware context preserved for architecture assistant queries
- PNG export with high-resolution (2x) pixel rendering
- JSON export for programmatic use
- Real-time cloud save with autosave
- Collaboration via email invite with shared diagram access
The architecture assistant is meant to feel helpful without becoming a black-box auto-editor.
User asks a question (what's missing, how strong, why a technology)
│
▼
Assistant answers in chat
│
▼
Assistant stages additions into ARCHITECTURAL_REVIEW
│
▼
User reviews — accept or decline each suggestion
│
▼
Accepted suggestions are added to the diagram
via sanitized, rule-aware connection flow
- users ask questions in chat such as what is missing, how strong the diagram is, or why a specific technology belongs
- the assistant answers in chat first, then stages any proposed additions into
ARCHITECTURAL_REVIEW - users decide what to accept or decline in review instead of having the AI mutate the live diagram on its own
- accepted suggestions are added into the diagram and connected through a sanitized, rule-aware flow
- assistant chat history and pending review suggestions are restored after refresh so in-progress review work is not lost
This keeps the product collaborative: the assistant can move fast, but the user still stays in control of what becomes part of the architecture.
Archflow now has a short showcase-friendly path:
- Open the dashboard.
- Open the demo accordion and choose a recognizable showcase example such as Stripe, Uber, Netflix, YouTube, WhatsApp, or Slack.
- Archflow creates a demo workspace and preloads the architecture prompt.
- Generate the diagram.
- Open Architecture Review to see the score, findings, "why this architecture works" narrative, and clickable inspection flow.
This path is intentionally optimized for fast product understanding: someone can see the value before reading the code or inventing a prompt.
Archflow does not treat architecture review as pure chat.
The assistant works through a layered reliability model:
- deterministic review checks catch concrete issues like invalid edge direction, missing app layers, isolated units, queue topology gaps, generic protocols, and review-safe signed storage flows
- the architecture assistant receives those review findings as structured context before it answers
- staged suggestions are sanitized before they are accepted so invalid connections can be dropped or reversed instead of blindly added
This means the assistant is strong on mainstream system patterns, but it is still an AI-assisted reviewer rather than a perfect verifier. The goal is trustworthy guidance, not false certainty.
Connections are important enough that they cannot be treated like tiny edge decorations.
Archflow now handles flow understanding in a layered way:
- the canvas shows focused connection context instead of trying to show every label at once
- selecting a unit reveals all of that unit's connected flows in
UNIT_DETAILS - selecting a single flow opens
CONNECTION_DETAILS - selected flows are emphasized visually on the canvas so users can immediately see the exact path being discussed
- full-canvas labeling still exists through
FLOW_ALL, but the default interaction favors readability over density
This is intentional. The goal is not to make the canvas say everything at once. The goal is to make the right relationship obvious at the right moment.
Archflow avoids score-heavy wording in the product UI.
Instead of confidence labels like HIGH, MEDIUM, and LOW, the editor uses:
SOLIDCHECKRISK
These are review signals, not grades. They exist to help users understand where a unit or flow feels well-supported and where it deserves another look.
Archflow avoids the following design patterns:
- Score-chasing behavior — the architecture score (A–F) exists in the review panel as a quick health signal, not a gamified ranking. The focus stays on understanding the findings, not optimizing a number.
- Black-box AI mutations — the AI never directly modifies your diagram. Everything it suggests goes through the Architectural Review panel for your approval.
- Generic placeholders — the system uses real technology names (KAFKA, not GENERIC_QUEUE; POSTGRESQL, not USER_DATABASE).
- Protocols as nodes — HTTP, HTTPS, gRPC, etc. are edge labels only, never generated as components.
- App-prefixed names — REDIS, not INSTAGRAM_REDIS.
Archflow now includes an internal evaluation harness for maintainers. This is not a user-facing scoring system.
The harness exists to help us answer questions like:
- are model outputs getting more consistent?
- did a prompt change make diagrams worse?
- are important architecture layers being missed?
- do repeated runs stay structurally similar?
It works by:
- generating prompt sets from a small matrix instead of hand-writing dozens of prompts
- optionally mining real prompt text from
diagram_versions - running prompts multiple times
- scoring results with deterministic architecture checks
- writing both JSON and Markdown reports for quick review
| File | Purpose |
|---|---|
backend/evals/matrix.json |
Prompt matrix configuration |
backend/evals/README.md |
Eval system documentation |
backend/src/scripts/eval-harness.js |
CLI workflow entry point |
backend/src/lib/evalHarness.js |
Core eval harness logic |
backend/src/lib/diagramGenerator.js |
Diagram generation entry point |
backend/src/lib/diagramGenerator/ |
Prompt building, normalization, hardening, layout, and review gate modules |
Generate eval prompts (no API calls):
cd backend
npm run eval:harness -- --generate-onlyThis creates:
backend/evals/generated-prompts.jsonbackend/evals/latest-report.jsonbackend/evals/latest-report.md
Run a real evaluation pass:
cd backend
npm run eval:harness -- --max-prompts 12 --runs 2Archflow includes automated backend tests, frontend verification, dependency audit gates, and browser smoke checks to catch regressions before they reach users.
From the repository root:
npm testRuns:
- backend unit/regression/integration-style tests for diagram hardening, review suggestion normalization, auth guards, save/version/delete persistence, rollback behavior, access control, eval checks, and architecture reliability
- frontend production build
- Playwright editor smoke test
The repo includes a GitHub Actions workflow at .github/workflows/test.yml.
On every push to master and every pull request, CI runs on Ubuntu and macOS:
- backend dependency install + production dependency audit (
highseverity and above) - frontend dependency install + production dependency audit (
highseverity and above) - backend test suite (
npm test) - frontend architecture lint
- frontend typecheck
- frontend production build
- Playwright Chromium install
- editor smoke test
- Playwright artifact upload on failure for easier debugging
Current backend suite: 43 passing tests covering generation reliability, domain blueprint tuning, review normalization, eval harness behavior, auth guards, persistence, access control, and transactional rollback paths.
Security note: frontend high/critical production dependency findings are gated in CI. The remaining known frontend audit output is a moderate Next/PostCSS advisory that npm currently reports with no direct fix.
A Playwright browser test that verifies the core editor panels open and close correctly — AI Assistant, Review, Library, History, and the Actions menu. It also verifies review teaching surfaces such as System Walkthrough, Architecture Readout, Why It Matters, How To Fix, clickable highlight hints, score breakdown, and showcase prompt selection.
cd frontend
npm run smoke:editorThis starts the app automatically for the test run. Covers:
- AI Assistant panel opens and closes
- Review panel opens, suggestion accept-and-connect works, panel closes
- Library panel opens and closes
- Actions menu → History panel flow
Verifies auth boundaries without copying browser session state by hand:
/sign-inand/sign-uprender correctly- Protected routes block unauthenticated access
- A scoped dev bypass allows the probe page to render locally
cd frontend
npm run auth:smokeTargets http://127.0.0.1:3000 by default. Override with:
AUTH_SMOKE_BASE_URL=http://127.0.0.1:3010 npm run auth:smokecd frontend
npm run test:smokeRuns auth smoke check first, then the editor smoke test.
Practical rule: use
npm run devfor everyday work,npm run smoke:editorafter meaningful editor/panel/AI/review changes,npm run test:smokebefore shipping or merging.
| Technology | Purpose |
|---|---|
| Next.js 15 (App Router) | Framework |
| React 19 | UI library |
| React Flow 11 | Diagram canvas |
| styled-components 6 | Styling |
| Framer Motion 12 | Animations |
| html-to-image | PNG export |
| Lucide React | Icons |
| Playwright | Smoke tests |
| Technology | Purpose |
|---|---|
| Node.js 22 | Runtime |
| Express | HTTP framework |
| PostgreSQL / Neon | Database |
| Redis / Upstash | Caching & rate limiting |
| Clerk | Authentication |
| OpenRouter | AI model access |
| Technology | Purpose |
|---|---|
| Electron | Desktop shell |
| electron-builder | DMG distribution |
Archflow includes a native Mac application built with Electron. The desktop version functions as a high-performance industrial workstation, providing a distraction-free environment and native features like local draft persistence.
The desktop app is a specialized shell that:
- Loads the production URL (
https://arch-flow.vercel.app). - Injects a native bridge (
archflowDesktopStorage) through a preload script. - Automatically switches the interface to "Desktop Mode" (e.g., normal cursor behavior, removed download prompts).
- Handles local file system storage for architectural drafts that survive refreshes.
To run the desktop shell in development mode:
cd desktop
npm install
npm startTo package the application into a redistributable Mac .dmg file:
cd desktop
npm run buildThis will generate an Archflow.dmg and a .zip file in the desktop/dist/ directory.
Note on Packaging:
- The build process uses
electron-builder. - It bundles the
main.js,preload.js, and local assets. - For production distribution, the app points to the live Vercel deployment, allowing for instant frontend updates without requiring users to download a new DMG for every small change.
Because early development builds are not yet notarized by Apple, you may see a warning when opening the .dmg or the .app.
- Gatekeeper Bypass: If you see a "damaged" or "cannot be opened" message, run this in your terminal:
sudo xattr -cr /Applications/Archflow.app
- Right-Click Open: Instead of double-clicking, Right-Click the app and choose Open. This allows you to bypass the security block.
- Security Settings: Alternatively, go to System Settings > Privacy & Security and click "Open Anyway" near the bottom of the page.
- Node.js 22.16.x recommended
- PostgreSQL database
- Clerk project
- OpenRouter API key
Create backend/.env:
PORT=4000
NEON_DB_URL=postgresql://user:password@host.neon.tech/archflow?sslmode=require
CLERK_SECRET_KEY=sk_test_xxx
CLERK_JWT_KEY=your_clerk_jwt_public_key
OPENROUTER_API_KEY=sk-or-v1-xxx
REDIS_URL=redis://localhost:6379
UPSTASH_REDIS_REST_URL=https://your-db.upstash.io
UPSTASH_REDIS_REST_TOKEN=your_tokenCreate frontend/.env.local:
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_xxx
NEXT_PUBLIC_API_URL=http://localhost:4000/apicd backend && npm install
cd ../frontend && npm installcd backend && npm run devIn another terminal:
cd frontend && npm run devThen open http://localhost:3000.
cd frontend
npm run devStarts the Next.js development server on port 3000.
archflow/
├── backend/
│ ├── evals/ # Internal prompt matrix and eval outputs
│ ├── src/
│ │ ├── config/ # Environment validation
│ │ ├── db/ # Schema, pool, initialization, migrations
│ │ ├── lib/
│ │ │ ├── diagramGenerator.js # AI generation entry point
│ │ │ ├── diagramGenerator/ # Prompt builder, normalizer, hardener, layout, review gate
│ │ │ ├── openRouter.js # OpenRouter API client, streaming, JSON repair
│ │ │ ├── reviewDiagram.js # Review context building, suggestion normalization
│ │ │ ├── connectionRules.js # 81-rule category connection matrix
│ │ │ ├── tech.js # 110+ technology catalog + categorization
│ │ │ ├── evalHarness.js # Internal eval harness
│ │ │ └── ... # Redis, logger, AI failure logging
│ │ ├── middleware/ # Clerk auth, request validation
│ │ ├── routes/ # AI generation/review, diagrams CRUD, inventory, settings
│ │ ├── routes/diagramRouteHandlers.js # Testable transactional diagram persistence handlers
│ │ └── scripts/ # CLI eval harness, DB migration
├── frontend/
│ ├── app/ # Next.js App Router (dashboard, diagram editor, settings)
│ │ └── diagram/[id]/hooks/ # Persistence, generation, review assistant, selection, undo/redo, export hooks
│ ├── components/
│ │ ├── diagram/ # Editor, review panel, prompt bar, synthesis terminal, node/edge UIs
│ │ └── ui/ # Shared components (toast, badge, modal, button, etc.)
│ └── lib/
│ ├── api.js # API client + SSE streaming
│ ├── diagramIntelligence.js # Rules engine (20+ deterministic checks, trust profiles)
│ ├── templates.js # Template options (SaaS, e-commerce, mobile, realtime, microservices)
│ └── ... # Theme, display names, edge layout
├── desktop/ # Electron Mac desktop shell
└── README.md
Archflow gets stronger when it behaves like a clear architecture copilot:
- AI helps create and edit the system
- rules help keep results sane
- UI helps users understand what happened
- focused flow inspection keeps connection meaning readable
- internal evaluation helps us improve quality without guessing
That combination is the real moat, not a flashy score.
All Rights Reserved.
This repository is proprietary. You may not use, modify, distribute, or sell this code without explicit permission.