nowfound

Alternatives

Products that do what AI-Powered Documentation Generator for Legacy Codebases does

As a former CIO who managed teams working with millions of lines of legacy code (Visual Basic, Sybase, Oracle Forms, and worse), I feel the pain of maintaining and onboarding developers to legacy systems. Believing that LLM-enabled tools can play a role in solving this, I've built a tool that automatically generates documentation for legacy codebases using the Model Context Protocol (MCP) & Claude Sonnet. At first glance, I think this approach has merit. Some samples are in the README. I welcome your thoughts. The Problem: - Legacy codebases are notoriously difficult to understand and…

  1. 1
    Autonoma173

    Confluence like code documentation automatically with AI

    2023

  2. 2

    Build together with AI

    2023

  3. 3

    The ultimate AI for code documentation

    2023

  4. 4

    Automated AI-powered tools for Developers

    2023

  5. 5WC

    Hi all, I'm Ivan, and together with Alex, we're building a diagram visualization tool for codebases. Alex and I are devs, and we've noticed that recently we've been super productive at writing code (prompting :D). But when it comes to understanding big systems, prompting doesn't work that well — for that, diagrams are best imo. Most tools out there don't scale to big projects (e.g. PyTorch), so we're building CodeBoarding — a recursive visualizer for codebases. It starts from the highest level of abstractions and lets you dive deeper. We use static analysis and LLM agents. The control-flow…

    2025 · github.com

  6. 6OS

    I’ve been working on Code2Docs, an open-source CLI tool that helps developers automatically generate inline documentation (docstrings + comments) for Python code using AI. It’s built to solve a common problem I’ve faced (and seen often in teams): We code by "vibe" — fast iterations, minimal docs, and then forget what the logic was months later. Code2Docs helps bridge that gap by documenting as you go — without breaking your flow. Right now it supports function-level documentation. Planned features include: - README.md generation for projects - API endpoint docs - Database schema…

    2025 · code2docs-open-source.netlify.app

  7. 7HP

    Hi HN. I heard you like dev tools and AI, so we wanted to share our project that we’ve been working on. We’re working on Horizon [1] - a higher level abstraction for LLMs so that developers can spend less time trying to grapple with LLMs to make them work and more time with users. This is the starting feature set which takes an auto-ML approach to identify the optimal LLM model, hyperparameters, and prompt - instead of just giving you the tooling to figure it out yourself. You can read more about it in our documentations. Our view is that as LLMs become increasingly commoditized and prompts…

    2023 · gethorizon.ai

  8. 8CA

    Hey there HN! We're Vivek and Si-Yan from Cartograph (https://cartograph.app). We've built an AI-powered code documentation platform that automatically generates reference documentation and creates a visual interactive map of the codebase that serves as both high level architecture diagram and allows you to zoom in to specific implementations. How it works: We use static analysis to read a codebase and get its symbols and their dependencies, creating a complete map that includes function calls. We use LLMs (Gemini + Claude) to add metadata to this map, as well as augment it in…

    2024 · cartograph.app

  9. 9CN

    As a solo developer on a sizeable project, I found myself facing the challenge of creating documentation, a task I admittedly do not enjoy. Fortunately, ChatGPT arrived just in time. After experimenting with it, I discovered that it generates high-quality documentation for code files, even better than what I could produce manually. This realization led me to develop Code-Narrator, a client that simplifies the documentation process. Code-Narrator (https://github.com/ingig/code-narrator) utilizes GPT-4 to analyze your code files and automatically generate documentation. The…

    2023 · github.com

  10. 10PL

    Hi, I’ve been exploring Claude 3.5 code generation abilities for a while and it looks like it can generate more consistent code than other models. However it would still be unmaintainable if you ask it to write a lot of code and it still sucks at system design. So, I’ve been playing around the idea of using the code repository with a template for directory layout and infrastructure, then adding the repository information to Claude and asking it to generate code. It seems that it works, if I pass the structure of some OpenAPI based backend it can update the API definition and implementation…

    2024 · github.com

  11. 11CV

    I worked as a software engineer at Amazon, SAP, and on open source. In all 3 places I have struggled with the friction of understanding codebases before I can make a contribution. I think this brain-fatiguing process can be improved. I am trying to solve it with a tool I built over the last 4 years called CodeCanvas: https://docs.code-canvas.com CodeCanvas visualizes codebases through interactive diagrams linked directly to source code. Users can record 'simulations' to demonstrate data flow and business logic. I’ve also recently added an LLM chat where it takes only the relevant…

    2025 · pie-crepe-38f.notion.site

  12. 12AT

    Hi everyone! We just launched Depth AI - a tool that helps you onboard to large and messy codebases. Unlike most dev tools that help in codegen and building smaller apps, this one mainly aims at understanding large repos better - so we have focussed a lot of code search quality. We also launched the first version on product hunt https://www.producthunt.com/posts/depth-ai. Do check us out. Would love to hear feedback here and discuss more how our approach to code search is different.

    2024

  13. 13UA

    I've been using LLMs for long discovery and research chats (papers, repos, best practices), then distilling that into phased markdown (build plan + tests), then handing those phases to Codex/Claude to implement and test phase by phase. The annoying part was always the distillation and keeping docs and architecture current, so I built Unpack: a lightweight GitHub template plus docs structure and a few commands that turns conversations into phases/specs and keeps project docs up to date as the agent builds. It can also generate Mintlify-friendly end-user docs. There are other…

    Feb 2026 · github.com

  14. 14AG

    Since ChatGPT became popular, I've been wondering: what would an LLM-powered app that's not chat-centric look like ? Would an encyclopedia that's almost entirely generated on-the-fly be any good? Can we use AI hyper links to replace most of the typing? Since I haven't found anything close to what I had in mind, I decided to give it a try and see for myself. WikiGen.ai is a website that's almost entirely generated by AI, with a few contextual tools to assist users with readability levels, explanations, and fact checking. (Demo: https://www.youtube.com/watch?v=MG0CpSE0cFI) I…

    2025 · wikigen.ai

  15. 15NT

    I built a CLI tool that turns codebases and PRs into diagrams so you can quickly understand how things fit together. Originally made it because I couldn't follow my own AI-generated repos. Just shipped a big update: - Switched from D2 to Mermaid for rendering - Tree-sitter AST parsing + agentic flow instead of raw LLM calls. ~50x faster. - Works on any GitHub repo or PR, not just local - Dropped the web frontend, it's just a CLI now - Published as a pip package Still a ton to improve and I'm building fast. Feedback, issues, PRs all welcome.

    Feb 2026 · github.com

  16. 16IB

    After years of struggling with onboarding to new projects, I got tired of spending weeks just trying to grasp the basics of a codebase. The README rarely tells the whole story, and "just read the code" isn't practical for large repos. I built RepoIQ to create personalized learning paths through any GitHub repository. It analyzes the codebase structure, identifies key components, and creates a step-by-step guide tailored to your learning needs.

    2025 · repoiq.be

  17. 17DA
  18. 18GT

    Hi guys! While working in teams, internal documentation is important. But the problem is, writing it takes much time. It doesn't end there, keeping them up-to-date is a big deal as well. I built this simple tool that analyzes your codebase and automatically generates documentation right into your Github repo. Whenever you make a new commit, it analyzes the updates and modifies the existing docs to keep them up-to-date. That means, you don't need to spend time struggling with docs again. And, the new hire won't stare at the senior for that huge undocumented codebase. It works for any team…

    2024 · supacodes.com

  19. 19IB

    Hi HN, A lot of the dev teams I have worked with had a lot of issues with their documentation. In fact, some of my easiest clients to get were from clients that had "black box" solutions that devs no longer at the company had created. Personally, writing documentation is like grinding nails on a chalkboard. I have been having a lot of fun with building solutions that can run in a distributed way, not something a dev needs to run themselves. And after a significant amount of testing and building out several different solutions, I finally have a solution that is easy to set up and runs in the…

    Dec 2025 · codesummary.io

  20. 20IM

    Hey HN! We've built an AI powered technical writer that allows you to automate creating comprehensive, MDX-formatted documentation with just a few clicks. How It Works: - Upload screenshots: Start by uploading screenshots of your product. - Describe features: Provide a brief description of the features you want documented. - Generate documentation: Our AI will analyze your inputs and automagically generate detailed documentation in MDX format. - Deploy instantly: With just one click, you can deploy your new documentation online. Continuous Integration: Automated updates: Integrate our npm…

    2024 · app.paparazzidocs.com

  21. 21CM

    I've been vibe-coding tools to automate chunks of my consulting work, fell down a rabbit hole, and started building actual products. Suddenly I'm in a world of unknown-unknowns and known-unknowns. One of the bigger things to solve was understanding code the LLM generated that I didn't fully grasp. What does it touch? What reads and writes where? Is the auth path where I think it is? So I built codeflowmap. Point it at a repo and it maps the dependency and call graph, then surfaces the read / write / auth paths between files and functions. Connect a local model (Ollama) or any…

    Jun 2026 · github.com

  22. 22GC

    Hey HN, I built ProductMap AI, a tool that automatically identifies features implemented in source code and organizes them in a visual hierarchy. The goal is to help developers quickly understand poorly documented codebases. Link: https://product-map.ai/ I’d love feedback from the HN community! Let me know what you think. Would this be useful for you?

    2025 · product-map.ai

  23. 23AF

    I’ve always been looking for a solution to communicate larger technical systems faster. This includes a lot of known details and a technical de-risking plan. It is clear that LLMs need that structure and are capable of digesting it well. I’ve built MCP server for guiding the Cursor IDE through the plan that comes from the LLM assisted pipeline: PRD → TRD → Project files tree → Implementation Plan 1. The whole chain comes from one end-to-end solution 2. Codebase produced is easy to navigate by the automatically managed tracebility 3. Specification updates get reflected in tasks, so the flow…

    2025 · github.com

  24. 24IB

    TLDR; I built a tool that turns any API into a CLI designed for ai agents --- Got tired of dealing with bloated context windows from MCP servers and skills that stuff entire API docs into the agent's context CLIs fix this, agents run a single command to self-discover everything an API has to offer So, built a tool to generate them for any api. All CLIs are written in Go, fast and lightweight, no dependencies Help text (via the --help flag) is the killer feature: all context for each command/endpoint/parameter is extracted directly from the user-facing API docs and enhanced with…

    Mar 2026 · instantcli.com

Ranked by how close each launch is in meaning, then by votes. Refine with a description →