Live data from Hacker News

Best "Brain" for Agents Is Just Versioned Folders of Markdown Files

extency.com

11–16 of 16 posts

Re: Best "Brain" for Agents Is Just Versioned Folders of Markdown Files

#11
A combination of SQL and git seems to work best. They tend to complement each other really well.

git.exe can't tell you things like how many references a specific type has. It can get close with grep and friends, but it's not very precise. Preprocessing the codebase into various SQL tables using compiler tools can provide these insights in a much more stable way.

Re: Best "Brain" for Agents Is Just Versioned Folders of Markdown Files

#13

How does git replace a vector db search exactly? They are orthogonal. Are you gonna burn a million tokens every time you wanna find some relevant files?

I see the authors don't argue it well enough, but one could use AI agents with simple grep and that proved to be efficient enough to be the default in Claude Code.

I personally turned of indexing feature in Cursor and I use it without it - I haven't noticed any accuracy drop, though my codebase is not enterprise-size one.

Re: Best "Brain" for Agents Is Just Versioned Folders of Markdown Files

#15
post #13

How does git replace a vector db search exactly? They are orthogonal. Are you gonna burn a million tokens every time you wanna find some relevant files?

I see the authors don't argue it well enough, but one could use AI agents with simple grep and that proved to be efficient enough to be the default in Claude Code. I personally turned of indexing feature in Cursor and I use it without it - I haven't noticed any accuracy drop, though my codebase is not enterprise-size one.

what does it have to do with git?
Post reply on HN