Show HN: DeepRepo – AI architecture diagrams from GitHub repos
1–10 of 12 posts
Re: Show HN: DeepRepo – AI architecture diagrams from GitHub repos
#2Re: Show HN: DeepRepo – AI architecture diagrams from GitHub repos
#3Re: Show HN: DeepRepo – AI architecture diagrams from GitHub repos
#4Interesting approach. How does it handle monorepos or repos with unconventional structure? The multi-pass analysis sounds nice, but I’d be curious how consistent the output is across runs if you run it twice on the same repo, do you get basically the same diagram?
Re: Show HN: DeepRepo – AI architecture diagrams from GitHub repos
#5How does it handle messy massive codebases?
For really massive repos (100K+ files) the analysis runs in a resumable pipeline - each of the 5 passes saves results to the database, so if the serverless function times out it picks up where it left off on the next connection. Embeddings for chat are also done incrementally in batches of 50 chunks.
That said, messy codebases are honestly where it's most useful. Clean well-documented repos don't need a tool like this. The ones with zero docs and 500 files with no clear structure are where it saves the most time.
Re: Show HN: DeepRepo – AI architecture diagrams from GitHub repos
#6Re: Show HN: DeepRepo – AI architecture diagrams from GitHub repos
#7Would be interesting to see this integrated into CI — auto-generate updated diagrams on each PR so architecture docs never go stale.
Re: Show HN: DeepRepo – AI architecture diagrams from GitHub repos
#8Tried it on a few repos — the file-tier prioritization is a nice touch. Skipping lockfiles and generated code saves a lot of noise. Would be interesting to see this integrated into CI — auto-generate updated diagrams on each PR so architecture docs never go stale.
Re: Show HN: DeepRepo – AI architecture diagrams from GitHub repos
#9It's pretty good for me, and I applied it to my project! I want to connect this tool to my Claude Code via an MCP or a plugin. Could I do that as though it were Deepwiki?
Re: Show HN: DeepRepo – AI architecture diagrams from GitHub repos
#10It's pretty good for me, and I applied it to my project! I want to connect this tool to my Claude Code via an MCP or a plugin. Could I do that as though it were Deepwiki?