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

Multi-Agent Career Mentor Built with Ollama and MCP for Local AI
A developer built a 5-agent AI system that analyzes resumes and generates career intelligence reports using Ollama with llama3 locally. The system chains agent outputs so each builds on previous context, with MCP handling tool integration.

OpenClaw Janitor Skill for Automated System Management and Security Hardening
A developer created a skill that uses Claude Code to SSH into OpenClaw machines and harden configurations, including sandboxing, OS hygiene, and channel security, while maintaining a project folder with audit instructions in CLAUDE.md.

OpenClaw Claude Extension Updated to Use Agent SDK After Anthropic Billing Changes
An OpenClaw extension developer rewrote their Claude CLI integration to use the official claude-agent-sdk after Anthropic started detecting and reclassifying CLI usage as third-party app usage, which bills against a separate credit pool instead of Max plan limits. The SDK approach authenticates through existing Claude Code login and bills as regular Max plan usage.

Lat.md: A Markdown-Based Knowledge Graph for Codebases
Lat.md creates a knowledge graph for codebases using interconnected markdown files in a lat.md/ directory. It addresses scaling issues with monolithic documentation by linking sections with [[wiki links]], connecting to source code via comments like // @lat: [[section-id]], and providing CLI tools for validation and search.