<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mukund Jha</title>
    <description>The latest articles on DEV Community by Mukund Jha (@mukund_zha).</description>
    <link>https://dev.to/mukund_zha</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3983359%2Ff6657840-c8db-4e8a-bd2e-ea49bdbfb0de.gif</url>
      <title>DEV Community: Mukund Jha</title>
      <link>https://dev.to/mukund_zha</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mukund_zha"/>
    <language>en</language>
    <item>
      <title>I Built an AI That Understands My Entire Codebase—And It Changed Everything</title>
      <dc:creator>Mukund Jha</dc:creator>
      <pubDate>Sun, 14 Jun 2026 15:05:45 +0000</pubDate>
      <link>https://dev.to/mukund_zha/i-built-an-ai-that-understands-my-entire-codebase-and-it-changed-everything-5hfb</link>
      <guid>https://dev.to/mukund_zha/i-built-an-ai-that-understands-my-entire-codebase-and-it-changed-everything-5hfb</guid>
      <description>&lt;p&gt;The Moment That Changed Everything&lt;/p&gt;

&lt;p&gt;It was 2 AM. My screen was flooded with 47 open files. I was trying to understand how authentication worked in a project I'd joined.&lt;/p&gt;

&lt;p&gt;I asked myself: "How does this auth token actually get validated?"&lt;/p&gt;

&lt;p&gt;I clicked through auth.js → middleware.js → database.js → config.js. Five files. Twenty minutes. Zero clarity.&lt;/p&gt;

&lt;p&gt;Then I asked: "Wait, where is this function even USED?"&lt;/p&gt;

&lt;p&gt;Another twenty minutes. Another ten files. My brain felt like it was running on 2% battery.&lt;/p&gt;

&lt;p&gt;That's the moment I realized: Developers don't spend their time writing code. We spend it UNDERSTANDING code.&lt;/p&gt;

&lt;p&gt;20–30% of every developer's week. That's 8–12 hours. Lost. Just trying to figure out what exists.&lt;br&gt;
The Problem Nobody Talks About&lt;/p&gt;

&lt;p&gt;Everyone talks about AI coders.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"Copilot will autocomplete your code!"

"Cursor will write functions for you!"

"AI will replace junior developers!"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;But nobody asks:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"What happens when you join a 100K-line codebase and have to understand it in 3 days?"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Current AI tools are surface-level:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;They autocomplete lines

They don't understand cross-file dependencies

They hallucinate when context is missing
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;I tried Copilot. I asked: "How does auth work?"&lt;/p&gt;

&lt;p&gt;It gave me: "Check line 45 in auth.js."&lt;/p&gt;

&lt;p&gt;That's not an answer. That's a pointer to another question.&lt;br&gt;
The Breakthrough: What If AI Could Be a Senior Engineer?&lt;/p&gt;

&lt;p&gt;I imagined something different:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"What if an AI could sit next to me and answer questions like a senior engineer who already knows the codebase?"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Not: "Check line 45."&lt;/p&gt;

&lt;p&gt;But: "Auth works like this: The token flows from login() → validateToken() → database.getUser(). The expiry is 15 minutes because of security policy in config.js. Here's the full flow."&lt;/p&gt;

&lt;p&gt;That's Lexithm.&lt;br&gt;
What Lexithm Actually Does&lt;/p&gt;

&lt;p&gt;Lexithm = AI Senior Engineer for Your Codebase&lt;/p&gt;

&lt;p&gt;You ask:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"How does authentication work?"

"Where is validateToken used?"

"Explain this module."

"What changed in auth.js last week?"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Leixthm answers with:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Full cross-file context (not just one file)

Data flow traces (where functions are called)

Human-like explanations (like a senior dev explaining)

Real code references (lines, files, modules)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Examples:&lt;/p&gt;

&lt;p&gt;text&lt;br&gt;
Q: "How does auth work?"&lt;br&gt;
A: "Auth flows: 1) User calls /login → 2) &lt;code&gt;authController.login()&lt;/code&gt; validates credentials → 3) &lt;code&gt;TokenService.generate()&lt;/code&gt; creates JWT → 4) Token stored in DB with 15-min expiry. See &lt;code&gt;authController.js:45&lt;/code&gt;, &lt;code&gt;tokenService.js:12&lt;/code&gt;."&lt;/p&gt;

&lt;p&gt;Q: "Where is &lt;code&gt;User&lt;/code&gt; model used?"&lt;br&gt;
A: "&lt;code&gt;User&lt;/code&gt; is imported in: 1) &lt;code&gt;auth.js&lt;/code&gt; (login), 2) &lt;code&gt;profile.js&lt;/code&gt; (getProfile), 3) &lt;code&gt;admin.js&lt;/code&gt; (deleteUser). Total: 17 references across 5 files."&lt;/p&gt;

&lt;p&gt;Q: "Explain &lt;code&gt;validateToken&lt;/code&gt;"&lt;br&gt;
A: "&lt;code&gt;validateToken(token)&lt;/code&gt; checks: 1) Token exists, 2) Not expired, 3) Signature matches. Returns user object or throws error. Used in 3 endpoints: &lt;code&gt;/profile&lt;/code&gt;, &lt;code&gt;/admin&lt;/code&gt;, &lt;code&gt;/settings&lt;/code&gt;."&lt;/p&gt;

&lt;p&gt;This is not autocomplete. This is understanding.&lt;br&gt;
How I Built It (From a 9th-Grade Bedroom in Nepal)&lt;/p&gt;

&lt;p&gt;I'm Mukund Jha. I'm 14 years old. I'm in 9th grade. I live in Dipayal, Nepal—a small town with no tech giants, no startup incubators, no VC money.&lt;/p&gt;

&lt;p&gt;My setup:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;A laptop I'll upgrade after 10th grade (currently struggling)

Python + FastAPI (what I'm learning)

LLM APIs (NVIDIA NIM LLMS)

Vector DB for semantic search

3 months of late nights
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Tech stack:&lt;/p&gt;

&lt;p&gt;text&lt;br&gt;
Backend: Python + FastAPI&lt;br&gt;
AI: LLM APIs + AST parsing&lt;br&gt;
Storage: PostgreSQL + Vector DB&lt;br&gt;
Frontend: React/Next.js&lt;/p&gt;

&lt;p&gt;I didn't have a team. I didn't have funding. I had a problem I felt every day and the stubbornness to solve it.&lt;br&gt;
Why This Is Different (The Real Magic)&lt;br&gt;
Copilot / Cursor    Leixthm&lt;br&gt;
Autocompletes lines Answers questions&lt;br&gt;
Local file context  Entire repo context&lt;br&gt;
No cross-file tracing   "Where is this used?" in sec&lt;br&gt;
Hallucinates without context    Real code references&lt;br&gt;
"Check line 45" "Here's the full flow"&lt;/p&gt;

&lt;p&gt;Lexithm thinks like a human senior engineer.&lt;/p&gt;

&lt;p&gt;It doesn't just show code. It explains code.&lt;br&gt;
The Impact: 5+ Hours/Week Saved&lt;/p&gt;

&lt;p&gt;I tested Lexithm on my own projects:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Before: 2 hours to understand auth flow

After: 12 minutes with Leixthm
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;That's 10x faster.&lt;/p&gt;

&lt;p&gt;For a developer working 40 hours/week:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;8 hours/week lost on understanding code

With Lexithm: 2 hours/week

Saved: 6 hours/week = 1 full workday
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;That's the value.&lt;br&gt;
It's Free. For Now.&lt;/p&gt;

&lt;p&gt;I'm launching Lexithm free for everyone right now. No credit card. No limits (yet).&lt;/p&gt;

&lt;p&gt;Why?&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I need feedback to make it better

I need testimonials to prove value

I believe developers should access this tool without paying upfront
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Try it: &lt;a href="https://lexithm.vercel.app/" rel="noopener noreferrer"&gt;https://lexithm.vercel.app/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Ask: "How does [feature] work in this repo?"&lt;br&gt;
The Future: What's Next&lt;/p&gt;

&lt;p&gt;Lexithm is just the beginning. Here's what I'm building:&lt;br&gt;
Week 1-2: CLI&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
$ lexithm q "How does auth work?"&lt;br&gt;
$ lexithm trace "src/auth.py"&lt;br&gt;
$ lexithm explain "function_name"&lt;/p&gt;

&lt;p&gt;Week 3-4: Code Review&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
$ lexithm review&lt;br&gt;
$ lexithm review --fix  # Auto-applies fixes&lt;/p&gt;

&lt;p&gt;Month 2: VS Code Extension&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Click "Lexithm" in sidebar → ask questions

Daily use (developers open VS Code every day)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Month 3: Teams&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Team dashboards

PR integration

Custom rules
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Why You Should Care&lt;/p&gt;

&lt;p&gt;If you're a developer:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;You spend 20–30% of your time understanding code

You're frustrated with AI tools that don't give real answers

You want to ship faster, not debug slower
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Lexithm solves this.&lt;/p&gt;

&lt;p&gt;If you're building a startup:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Your team spends hours onboarding new devs

Your codebase grows, understanding gets harder

You lose time on READMEs, docs, explanations
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Lexithm solves this.&lt;/p&gt;

&lt;p&gt;If you're an engineer:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;You want tools that save time, not add complexity

You want AI that understands, not just autocomplete

You want to focus on building, not deciphering
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Lexithm solves this.&lt;br&gt;
The Real Story: Why I Built This&lt;/p&gt;

&lt;p&gt;I didn't build Lexithm to become rich.&lt;/p&gt;

&lt;p&gt;I built it because I felt the pain.&lt;/p&gt;

&lt;p&gt;Every time I joined a new project. Every time I open-sourced code. Every time I tried to understand a 100K-line repo.&lt;/p&gt;

&lt;p&gt;I asked: "Why is this so hard?"&lt;/p&gt;

&lt;p&gt;And I realized: It shouldn't be.&lt;/p&gt;

&lt;p&gt;AI should be a senior engineer sitting next to you. Not a autocomplete bot showing line numbers.&lt;/p&gt;

&lt;p&gt;Lexithm is my answer.&lt;br&gt;
Join Me&lt;/p&gt;

&lt;p&gt;I'm Mukund. I'm 14. I'm from Nepal. And I'm building the AI tool that every developer needs.&lt;/p&gt;

&lt;p&gt;Try Lexithm: &lt;strong&gt;&lt;a href="https://lexithm.vercel.app/" rel="noopener noreferrer"&gt;https://lexithm.vercel.app/&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Feedback? I read every comment. DM me: &lt;a href="mailto:jhamukunda2@gmail.com"&gt;jhamukunda2@gmail.com&lt;/a&gt; / &lt;/p&gt;

&lt;p&gt;Share this: If you think this helps developers, share it with your team.&lt;br&gt;
The Bottom Line&lt;/p&gt;

&lt;p&gt;"Developers don't spend time writing code. They spend time understanding code."&lt;/p&gt;

&lt;p&gt;Lexithm changes that.&lt;/p&gt;

&lt;p&gt;It's free. For now.&lt;/p&gt;

&lt;p&gt;Try it before it's not.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://lexithm.vercel.app/" rel="noopener noreferrer"&gt;https://lexithm.vercel.app/&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I Built a Free Open-Source Alternative to Sourcegraph — Here's Why"</title>
      <dc:creator>Mukund Jha</dc:creator>
      <pubDate>Sun, 14 Jun 2026 03:43:35 +0000</pubDate>
      <link>https://dev.to/mukund_zha/i-built-a-free-open-source-alternative-to-sourcegraph-heres-why-805</link>
      <guid>https://dev.to/mukund_zha/i-built-a-free-open-source-alternative-to-sourcegraph-heres-why-805</guid>
      <description>&lt;p&gt;It was 2 AM on a Tuesday, and I was staring at a function I had never seen before.&lt;/p&gt;

&lt;p&gt;The codebase had 47,000 files across six microservices, written by people who had left the company years ago. I needed to understand how authentication flowed from the mobile app to the backend, through three different services, and back. I had grep open in one tab, the codebase in another, and ChatGPT in a third — copying and pasting files one at a time.&lt;/p&gt;

&lt;p&gt;This isn't a workflow. It's a coping mechanism.&lt;/p&gt;

&lt;p&gt;Every developer I know does some version of this. We read five files to understand one function. We trace imports manually. We build mental models that evaporate the moment Slack pings. We accept that understanding a new codebase takes weeks — sometimes months — as if that's just how software is made.&lt;/p&gt;

&lt;p&gt;I don't think it has to be this way.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem Nobody Solved
&lt;/h2&gt;

&lt;p&gt;Sourcegraph exists. It's excellent at what it does — code search at enterprise scale. But it's built for organizations with dedicated infrastructure budgets. You need to self-host it, configure it, maintain it. For a solo developer, a small team, or an open-source project, the overhead doesn't make sense.&lt;/p&gt;

&lt;p&gt;There are other tools too. But they all have the same gap: they search for &lt;em&gt;text&lt;/em&gt;, not &lt;em&gt;meaning&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;When you type "where is auth handled," you don't want grep results. You want someone to tell you: "Auth starts in &lt;code&gt;src/middleware.ts&lt;/code&gt;, the login form lives in &lt;code&gt;src/auth/login.tsx&lt;/code&gt;, and the token exchange happens in &lt;code&gt;src/api/auth/route.ts&lt;/code&gt; — here are the line numbers."&lt;/p&gt;

&lt;p&gt;I wanted a search bar for codebases that understood how things connect. A tool that reads every file, builds a mental model of the dependency graph, and answers questions in plain English.&lt;/p&gt;

&lt;p&gt;So I built one.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Lexithm Does
&lt;/h2&gt;

&lt;p&gt;Lexithm reads your entire repository — every file, every function, every import — and lets you ask questions about it in natural language. It extracts symbols, builds dependency graphs, detects API routes, and generates embeddings for semantic search.&lt;/p&gt;

&lt;p&gt;Here's the flow:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Sign in with GitHub — no CLI, no config, no setup.&lt;/li&gt;
&lt;li&gt;Pick a repository — public or private, works the same way.&lt;/li&gt;
&lt;li&gt;Wait for indexing — AST-level parsing for Python, JavaScript, TypeScript, Go, Java, and Rust. Most repos finish in 2-5 minutes.&lt;/li&gt;
&lt;li&gt;Ask questions — "what does this project do," "how does authentication work," "find the bug in the payment flow." Every answer cites the file paths and line numbers it references.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The key design decision was: &lt;strong&gt;no installation&lt;/strong&gt;. Everything runs in the browser. You don't install a plugin, set up a server, or configure anything. It's a web app that connects to your GitHub and starts working.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Architecture
&lt;/h2&gt;

&lt;p&gt;The backend is Python with FastAPI. The indexing pipeline has 16 stages:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;File discovery — categorize every file by type&lt;/li&gt;
&lt;li&gt;AST parsing — build structured representations of each source file&lt;/li&gt;
&lt;li&gt;Graph construction — connect symbols into dependency and call graphs&lt;/li&gt;
&lt;li&gt;Embedding generation — convert every code chunk into vector embeddings&lt;/li&gt;
&lt;li&gt;Storage — persist the indexed data for instant retrieval&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;When you ask a question, the system classifies your intent, retrieves the most relevant code chunks from the index, and feeds them to an LLM with a tailored prompt. Only the relevant context is sent — never your entire codebase.&lt;/p&gt;

&lt;p&gt;The frontend is Next.js with a terminal-inspired chat interface. It streams responses token by token so you see the answer build in real time.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why It's Free
&lt;/h2&gt;

&lt;p&gt;Lexithm runs on free tiers. NVIDIA NIM provides the LLM inference at no cost. OpenRouter serves as a fallback. The embedding model runs on NVIDIA's API. Supabase handles the database and authentication. Everything stays within the free usage limits.&lt;/p&gt;

&lt;p&gt;I built this because I wanted a tool like this to exist. Not everything needs to be a startup. Not everything needs an enterprise license. Some things can just be useful.&lt;/p&gt;




&lt;h2&gt;
  
  
  FAQ That People Actually Ask
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;How is this different from Sourcegraph?&lt;/strong&gt;&lt;br&gt;
Sourcegraph is built for enterprise code search at scale — think regex across thousands of repos. Lexithm is built for conversational code understanding — ask questions in English, get answers with citations. It's also free, requires no infrastructure, and takes zero setup.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Is my code safe?&lt;/strong&gt;&lt;br&gt;
Your repository is indexed on the backend, not stored by any LLM provider. Only the relevant context is sent for each question. You can delete the index at any time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How long does indexing take?&lt;/strong&gt;&lt;br&gt;
Most repositories finish in 2-5 minutes. Larger projects with over 100,000 files can take up to 20 minutes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Do I need to install anything?&lt;/strong&gt;&lt;br&gt;
No. Everything runs through your browser.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;The site is live at &lt;a href="https://lexithm.vercel.app" rel="noopener noreferrer"&gt;lexithm.vercel.app&lt;/a&gt;. Sign in with GitHub, pick a repository, and ask a question.&lt;/p&gt;

&lt;p&gt;The code is on GitHub at — well, it will be as soon as I push it. (I wanted to write this post first.)&lt;/p&gt;

&lt;p&gt;If you've ever spent hours tracing code in an unfamiliar repository, you know exactly why I built this. I hope it saves you some of those hours.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built with Next.js, FastAPI, NVIDIA NIM, Supabase, and a lot of late nights.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>saas</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
