Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

109 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

MINIMAL RULES Β· LLM DISCOVERS Β· KNOWLEDGE PERSISTS

Are over complicating LLM elicitation? Should it not just research and update?

You Know Nothing, AGENTS.md

License: MIT Docs

"You know nothing, Jon Snow." β€” Ygritte, Game of Thrones

Our bloated AGENTS.md full of generic "best practices"? The LLM already knows. We're paying extra tokens to tell it how to write content already in training data sets.

The LLM is not Jon Snow. We are.


Issues with Markdown Hell

You know the pattern:

AGENTS.md
CLAUDE.md
CURSOR.md
CONVENTIONS.md
ARCHITECTURE.md
CONTRIBUTING.md
SKILL.md
.cursorrules
.github/copilot-instructions.md
code-reviewer.md
testing.md
api-conventions.md
pokemon.md
...

Every tool, every directory wants its own file. We copy "best practices" into each one. They get bloated. They get stale. That's markdown hell.

1. LLM Capabilities Keep Increasing

What we wrote 6 months ago? The model already knows it better now. Our "best practices" doc is teaching the teacher.

2. Tooling Evolves Faster Than Our Docs

Remember when we wrote "use black and mypy"? The Python community moved to uv, ruff, and ty. Our AGENTS.md is now actively wrong.

Warning

Examples of outdated advice in the wild:

  • "Use pip install" β†’ uv is faster and better
  • "Format with black" β†’ ruff format does it faster
  • "Type check with mypy" β†’ ty is 10-100x faster
  • "Use requests" β†’ httpx supports async

3. Agentic Workflows Can Discover

The LLM doesn't need to know everything upfront. With agentic workflows, it can:

  • Read official documentation (current, not our stale copy)
  • Explore the actual codebase
  • Query databases and APIs
  • Test endpoints and verify behavior
  • Document what it finds in learnings.md

We don't need to pre-load generic knowledge. We need to elicit context specific to our project and let the LLM research the rest.

4. Context Rot

Pre-loaded context is more than we bargained for. A Polars SKILL.md with everything about the library when we only need 3% of it. Multiple files contributing less value than the tokens they cost.

Irrelevant context:

  • Wastes tokens
  • Distracts from the actual task
  • Conflicts with project-specific needs
  • Gets outdated while sitting in our repo

Tailor it to what we actually need. Let the LLM research the rest.


The Fix: RTFM

Instead of markdown hell, go old school. Read The Ducking Manual. Update our learnings. Document our todos.

File Purpose Who writes
AGENTS.md Rules + guardrails Us
learnings.md Discovered knowledge The LLM
todo.md Working memory The LLM

Note

AGENTS.md β€” Workflow + NEVER rules. Nothing the LLM already knows.

learnings.md β€” Project-specific gotchas, working commands, patterns. The LLM documents what it discovers. This persists. This is the actual value.

todo.md β€” Current tasks. Ephemeral. Summarized when complete.

Tip

Still love your markdowns? See examples for what learnings.md looks like in practice.


The Workflow

Research β†’ Discover β†’ Document β†’ Build β†’ Verify β†’ Commit
    β”‚          β”‚          β”‚
    β”‚          β”‚          └──▢ learnings.md (persists)
    β”‚          β”‚
    β”‚          └──▢ Query DB, test APIs, explore codebase
    β”‚
    └──▢ Read official docs (current), not our summary (stale)

The LLM researches in real-time. Reads current documentation. Documents what it finds. We keep the knowledge.


Example: Python Project from Scratch

Starting a new Python project? Point your agentic tool to these files:

Use https://github.com/Proteusiq/agentic/blob/main/AGENTS.md as rules.
Use https://github.com/Proteusiq/agentic/blob/main/docs/examples/python.md as initial learnings.
Create todo.md for tracking tasks.

The LLM reads the rules, starts with Python-specific knowledge, and builds from there.

Important

See agents.md for the spec.


Docs

proteusiq.github.io/agentic

Page Description
Why Why minimal is better
Workflow The research β†’ discover β†’ document loop
Research What the arXiv papers say
Skills vs Learnings Anthropic's approach vs ours
Examples Ready-to-use learnings.md templates

In Good Company?

Even the best fall into AI markdown hell:

Project Developer AI Files
Ghostty Mitchell Hashimoto AGENTS.md, AI_POLICY.md, .agents/commands/, .agents/skills/
Claude Code Anthropic Source code leaked β€” plugins, skills, extensive internal markdown

Everyone's in markdown hell. The question is how deep.


License

MIT β€” Prayson Wilfred Daniel

About

Maybe you don't need all those Markdowns πŸ€¦πŸΎβ€β™‚οΈ

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors