hermes atlas
217·repos hermes·v0.19.0 ★ star this repo

A coding agent that actually knows your codebase

“I want Hermes to understand my repo deeply instead of re-reading files and burning tokens every session”

The complaint behind this use case is almost never "the model is dumb" — it is "the agent keeps rediscovering my repo from scratch." So the stack is ordered by how much of that waste each layer removes. Indexing the code once (codegraph) removes the most. Persisting what was learned across sessions and projects (agentcairn) removes the next chunk. AST-aware tools cut the remaining flailing on structural edits. The skills framework changes how the agent approaches the work rather than what it can see, and the trace viewer is how you find out which of the above isn't earning its keep.

Real posts from the Hermes community, mirrored from Nous Research's user stories corpus.

Day 10: it knows my codebase better than I do

10 days ago I installed an open-source agent. Today it knows my codebase better than I do. The first time I built a code review workflow, it was clunky. By the fifth time, the agent had internalized my preferences — which files to check first, what patterns…

X@techNmak2026-04-07
Accumulates knowledge about my codebase over time

A long-running Hermes instance accumulates knowledge about your codebase, deployment quirks, preferred commit message format, working API call sequences for legacy integrations.

BlogKristopher Dunham (Medium)2026-04-14
Built a tool-agnostic repo knowledge layer across all my agents

Over the past month I've been trying every agent and ai tool I can. OpenClaw, Hermes Agent, Kilo Code, Codex, Cursor, etc. Most of these have some sort of memory, but I wanted something persistant. I ended up building out a tool-agnostic repo knowledge layer.…

Discord@.hypercubed
jMunch MCP: 52 tools via tree-sitter for code intelligence

The jMunch MCP suite provides three MCP servers bringing token-efficient code intelligence (52 tools via tree-sitter), documentation retrieval, and tabular data analysis. Plug-and-play with Hermes's native MCP client.

GitHub@jgravelle2026
A small plugin that audits my diffs before I commit

Wrote a small Hermes plugin that reviews git diffs before committing, flags debug prints, hardcoded secrets, bare except clauses, and unresolved TODOs. Parses unified diff output, works with any git ref, zero new dependencies.

Discord@sprmn24