> "chalk": "^5.6.2", security.md ist missing apparently.
Lat.md: Agent Lattice: a knowledge graph for your codebase, written in Markdown
21–30 of 70 posts
Re: Lat.md: Agent Lattice: a knowledge graph for your codebase, written in Markdown
#22So we are reinventing the docs /*/*.md directory? /s I think this is a good idea just don’t really get why would you need a tool around it
One of the things that I've been chewing on lately is the sync problem. Having a CI job that identifies places where the docs have drifted from the implementation seems pretty valuable.
Re: Lat.md: Agent Lattice: a knowledge graph for your codebase, written in Markdown
#23Re: Lat.md: Agent Lattice: a knowledge graph for your codebase, written in Markdown
#24more general point being that we need to be methodical about the way we manage agent context. if lat.md shows a 10% broad improvement in agent perf in my repo, then I would certainly push for adoption. until then, vibes aren't enough
Re: Lat.md: Agent Lattice: a knowledge graph for your codebase, written in Markdown
#25Re: Lat.md: Agent Lattice: a knowledge graph for your codebase, written in Markdown
#26The pattern works.
But I keep catching myself spending more time on how to organize context than on what the agent is actually supposed to accomplish.
Feels like the whole space has that problem right now.
Re: Lat.md: Agent Lattice: a knowledge graph for your codebase, written in Markdown
#27AMA :)
Re: Lat.md: Agent Lattice: a knowledge graph for your codebase, written in Markdown
#28The staleness problem mentioned here is real. For agentic systems, a markdown-based DAG of your codebase is more practical than a traditional graph because agents work within context windows. You can selectively load relevant parts without needing a complex query engine. The key is making updates low-friction -- maybe a pre-commit hook or CI job that refreshes stale nodes.
Re: Lat.md: Agent Lattice: a knowledge graph for your codebase, written in Markdown
#29[flagged]
We all know this isn't for humans. It's for LLMs. So better question is why there isn't a bootstrap to get your LLM to scaffold it out and assist in detailing it.
Other than that the goal of lat is to make the agent use it and update it and it has tools to enforce that.
Re: Lat.md: Agent Lattice: a knowledge graph for your codebase, written in Markdown
#30So the graph is human-maintained, and agents consume it and `lat check` is supposed to catch broken links and code-spec drift. How do you manage this in a multi-agent setup? Is it still a manual merge+fix conflicts situation? That's where I keep seeing the biggest issues with multi-agent setups