Back to comparisons

aDNA vs. Plain Markdown

The most common question: “Why not just use a folder of markdown files?”

Overview

aDNA

A knowledge architecture standard (§1) that imposes structure on markdown files: the what/how/who triad, typed entities with YAML frontmatter, governance files (CLAUDE.md, AGENTS.md, STATE.md), session tracking, and convergent narrowing. The files are still markdown — aDNA adds conventions that make them navigable by AI agents.

Plain Markdown

A folder (or nested folders) of .md files with no imposed structure. Files organized however the author sees fit — maybe by topic, by date, by project, or not organized at all. No frontmatter requirements, no governance files, no naming conventions. The simplest possible approach: create a file, write in it.

Comparison

DimensionaDNAPlain Markdown
StructurePrescribed: triad, typed entities, AGENTS.md routingAd hoc: whatever the author decides
Agent orientationCLAUDE.md + STATE.md = agent knows who it is, what’s happeningAgent reads files blindly — no governance, no routing, no context hierarchy
FrontmatterRequired: type, status, dates, tags, entity-specific fieldsOptional: whatever you want, if anything
NamingConvention: type_descriptive_name.mdFreeform: anything.md
NavigationAGENTS.md routing + knowledge graph + convergence modelgrep, search, browse
ScalabilityDesigned for 500K+ tokens across hundreds of filesDegrades: at 100+ files, finding what you need becomes guesswork
CollaborationSessions, coordination notes, conflict detectionDepends entirely on external tooling (git, Google Docs)
OverheadModerate: governance files, frontmatter, templatesZero: write and go
PortabilityFully portable: standard markdown + YAML frontmatterFully portable: it’s just markdown

Where aDNA Excels

  • Agent effectiveness: Give an AI agent a plain markdown folder and it will produce generic output. Give it an aDNA vault and it produces informed, project-specific work. The difference is governance files and token selection — the agent knows what matters.
  • Scale: Plain markdown folders collapse under their own weight at ~100 files. aDNA’s triad, AGENTS.md routing, and convergence model keep navigation systematic regardless of vault size.
  • Knowledge reuse: aDNA’s FAIR metadata and federation protocol make knowledge shareable. Plain markdown files are trapped in their folder.
  • Consistency: aDNA’s templates and frontmatter conventions ensure every file of a given type has the same structure. Plain markdown files vary wildly between authors.
  • Operational infrastructure: Sessions, missions, campaigns — aDNA tracks work. Plain markdown doesn’t know what’s in progress.

Where Plain Markdown Excels

  • Zero friction: Open editor, create file, write. No governance files to create, no frontmatter to populate, no naming conventions to follow.
  • No learning curve: Everyone knows how to create a markdown file. aDNA requires understanding the triad, entity types, frontmatter schema, and governance model.
  • Maximum flexibility: No structure means no constraints. Experimentation, quick notes, scratch files — all fine.
  • Appropriate for small projects: A 10-file project doesn’t need governance files, AGENTS.md routing, or session tracking. The overhead doesn’t justify itself until a project reaches a certain size.
  • Universal tooling: Every editor supports markdown. aDNA’s governance files are meaningless without agent tooling.

The Tipping Point

The comparison has a crossover point — a project size where aDNA’s overhead starts paying for itself:

Project SizeRecommendationWhy
1-20 filesPlain markdownOverhead isn’t justified. You can hold the whole project in your head.
20-50 filesConsider aDNANavigation is getting harder. Agent-assisted work would benefit from governance.
50+ filesaDNAFinding the right file, loading the right context, maintaining consistency — all problems aDNA solves.
100+ filesaDNA strongly recommendedPlain markdown at this scale is an archaeological dig.

The tipping point isn’t just file count — it’s also agent involvement. If you’re working with AI agents on a 15-file project, aDNA is still worth it because the governance files dramatically improve agent output quality.

When to Choose Which

If you need…Choose
Quick notes, scratch files, personal logsPlain markdown
AI-agent-navigable project knowledgeaDNA
Maximum flexibility with zero overheadPlain markdown
Consistency across dozens or hundreds of filesaDNA
A small project without AI agent involvementPlain markdown
Multi-agent collaboration, federation, FAIR metadataaDNA
To start writing immediately with no setupPlain markdown
A knowledge architecture that scalesaDNA

The migration path is straightforward: start with plain markdown, adopt aDNA when the project outgrows ad hoc organization. The base template (.adna/) provides a fork-and-customize starting point.

Sources

  • commonmark.org — CommonMark markdown specification
  • aDNA Standard v2.1, §1 (Introduction), §3 (Triad), §4 (Governance) — aDNA specification
  • The Triad — the structure aDNA adds on top of plain markdown
  • Agentic Literacy — the skill gap between “folder of files” and “agent-navigable architecture”
  • Convergence Model — what makes aDNA scale where plain markdown doesn’t