SeeFlow: Architecture Diagrams That Are Wired to Your Live App

Architecture diagrams rot — that's the core premise behind SeeFlow, a new open-source tool that makes diagrams executable. Instead of static Confluence pages that go stale in months, SeeFlow generates a flow canvas from your codebase and wires each node to your running application.
How It Works
SeeFlow ships a plugin for Claude Code, Codex, Cursor, and Windsurf that does the heavy lifting. You invoke it with a natural language command:
/seeflow show me the shopping cart featureIt also includes an MCP server, so any MCP-aware editor can register and edit diagrams without leaving the IDE.
Key Detail
- 100% free and MIT open source — no pricing tiers, no licensing hoops.
- Live wiring: each node in the diagram is connected to the actual running app, so the diagram reflects real-time state.
- Multiple IDE support through the MCP protocol.
Who It's For
Developers tired of maintaining outdated architecture docs, especially teams using AI coding agents that can interact with diagrams programmatically.
📖 Read the full source: r/ClaudeAI
👀 See Also

Modo: Open-Source AI IDE with Spec-Driven Development and Agent Hooks
Modo is an open-source desktop IDE built on Void editor that adds spec-driven development workflows, agent hooks, and steering files. It structures prompts into requirements, design, and tasks before generating code.

ReasonDB: Open-Source Document Database Using LLM-Guided Tree Navigation Instead of Vector Search
ReasonDB is an open-source document database that preserves document structure as a hierarchy and uses LLM-guided tree traversal for retrieval instead of vector search. It uses BM25 for initial search, tree-grep for structure filtering, and beam-search traversal where the LLM visits ~25 nodes out of millions.

Developer shares hybrid AI coding workflow: Claude for planning, local models for execution
A developer built a pipeline using Claude 3.5 Sonnet for task planning and local Qwen2.5-Coder models via Ollama for code generation, achieving 85% token reduction compared to using Claude alone.

Chamber: AI Agent for GPU Infrastructure Management
Chamber is an AI agent that manages GPU infrastructure by handling tasks like provisioning clusters, diagnosing failed jobs, and managing workloads. It provides structured operations with validation and rollback, not just raw shell commands.