Oh-My-Mermaid: Claude Code Skill for Auto-Generating Architecture Diagrams

Oh-My-Mermaid is a Claude Code skill that automatically generates architecture diagrams and documentation from codebases. The tool uses Claude Code to analyze code, identify architectural patterns, and write Mermaid diagrams.
Key Details
The tool is installed globally via npm:
npm install -g oh-my-mermaid && omm setup
In Claude Code, you use the skill with:
/omm-scan (skill) → omm view
The developer emphasizes several design principles:
- Zero runtime dependencies (just YAML)
- Claude Code writes the diagrams while the CLI owns the files
- Plain text output (.mmd + markdown) that's fully git-diffable
- Recursive analysis where complex modules get nested diagrams
The project is free and open source under the MIT license. The GitHub repository is available at https://github.com/oh-my-mermaid/oh-my-mermaid.
A demo video and preview image are available through the Reddit post, and there's a live exploration link at https://ohmymermaid.com/share/8fca9ff0fef84a139ac2d3f9875db0d2.
This type of tool is useful for developers who need to quickly understand or document the architecture of existing codebases, particularly when onboarding to new projects or conducting code reviews.
📖 Read the full source: r/ClaudeAI
👀 See Also

WhatsApp AI Assistant Built with Claude Code as OpenClaw Alternative
A developer built a WhatsApp AI assistant using Claude Code as the agentic brain, with a local relay server for WhatsApp webhooks and MCP server bridging. The project includes Arcade for scoped auth to Google Calendar, Gmail, and Slack.

Freddy CLI: Connect Health Data to AI Agents via MCP
Freddy publishes an open-source CLI to connect wearable health data (Oura, Polar, Withings, etc.) to AI coding agents via MCP. Commands for OAuth device flow, data querying, and token refresh.

Scalpel v2.0: Codebase Scanner and AI Agent Orchestrator
Scalpel v2.0 is an open-source tool that scans codebases across 12 dimensions and assembles custom AI agent teams. It includes a pure bash scanner that runs without AI tokens and works with Claude Code, Codex, Gemini, Cursor, Windsurf, Aider, and OpenCode.

Developer Builds GALA Programming Language with Claude Code, Notes Strong Typing Improves AI-Generated Code Reliability
A developer built GALA, a functional programming language that transpiles to Go, using Claude Code extensively. The language features sealed types, exhaustive pattern matching, immutability by default, and monads, with Claude helping implement type inference, pattern-matching transformers, and fixing over 40 bugs.