# Everyone’s Building AI Agents. Here’s the One I Built for Myself

> Source: <https://dev.to/vishdevwork/everyones-building-ai-agents-heres-the-one-i-built-for-myself-1plh>
> Published: 2026-05-29 05:05:56+00:00

These days, everyone seems to be building AI agents.

So I figured I should probably build one too.

But instead of another generic demo, I wanted to solve a small problem I actually had.

Over time, I had collected a bunch of blog posts and technical notes in a folder. I wanted a quick way to understand them without opening every file one by one.

Questions like:

Uploading everything to ChatGPT did not feel right.

My content. My machine.

So I built a small local RAG agent.

It reads markdown files, understands their meaning, and lets me query across all of them in plain English.

Under the hood, it looks something like this:

```
Markdown Files
      ↓
Chunking & Parsing
      ↓
nomic-embed-text (via Ollama)
      ↓
ChromaDB (local vector storage)
      ↓
Relevant Context Retrieval
      ↓
Mistral (via Ollama)
      ↓
Answer
```

Everything runs locally on my laptop.

No cloud. No external APIs. Just Python and a few focused tools.

The architecture was clear before I started coding. The “vibe coding” part was mostly using AI to speed up repetitive work like tests, boilerplate, and wiring pieces together.

Idea to working CLI in about a week.

I’ve open sourced the project if you want to take a look:

**Repo:** [Knowledge Onboarding Agent](https://github.com/vkondi/knowledge-onboarding-agent)

Next, I might add PDF support and a lightweight web UI.

Curious to know, have you built something similar recently? If yes, what problem did you solve?

Also curious, if you were building this, would you keep it fully local or use cloud APIs? What would you do differently?
