What local AI agent can turn a VB.NET codebase into user-friendly Markdown documentation?

0
0
Asked By MapleOrbit42 On

I'm new to local AI agents and want to experiment with one that can run entirely on my own hardware. The codebase is made up mostly of VB.NET client applications, with an MSSQL project included in the solution. Ideally, the agent would inspect every project and produce Markdown documentation explaining how the applications work from a user's perspective—for example, describing that clicking a green button displays a message box about the selected object.

I tried a cloud-based coding model, and the results were surprisingly good, but I can't use it on the real codebase because the source is confidential. I have an M3 Max available. What local models and tools would be a good starting point for this workflow?

1 Answer

Answered By SilverKite84 On

A recent Qwen coding model should also be capable of this kind of documentation task. Ollama is one of the simpler ways to download and serve a model locally, but the important part is the workflow: process one project or a small group of files at a time, ask the model to trace event handlers and related methods, and save the result as Markdown. Review the generated documentation afterward, since UI behavior can be spread across multiple files and the model may miss database-side logic.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.