Three kinds of state
A company’s state usually sits in three different shapes, in three different tools. Driftless holds all three in one workspace, so they can feed each other instead of drifting apart.Knowledge: what the team decided to keep
Knowledge is the reviewed, durable context a team wants future people and agents to trust: the decision behind an approach, the constraint that must hold, the trap that cost someone a day. You capture it as a Note, a quick observation or draft. A Topic is the durable object a Note becomes once it is worth keeping, anchored to the exact code or system it describes so it can flag itself when that code moves. A Note is a hint; Knowledge is what the team has actually agreed to rely on. Not every Note becomes Knowledge, and that is healthy: most stay hints, and a few become the shared truth everyone builds on.Operations: what the company runs
Operations is the recurring state a team works day to day: leads in a pipeline, bugs in a tracker, signals from customers, posts in a calendar. In Driftless each of these is a Collection, a configured table with typed fields and a lifecycle, and each row is a Record. A CRM, a bug tracker, and a content calendar are the same primitive with different configuration, not three apps you build. An Entity is a shared identity that ties Records together across Collections, so the same customer in a pipeline and in a support queue is understood as one. Before an agent works a Record, it can read the Knowledge the team attached to that Collection, so the work happens with the team’s criteria rather than from scratch.Work: what is in flight
Work is the finite, goal-shaped effort that moves something forward: a launch, a migration, a revamp. A Project holds a goal and its definition of done, and a Card is one unit of work inside it, which can carry an acceptance criterion, a validation command, and dependencies on other cards. When a person or agent picks up a card, the workspace hands over the Knowledge anchored to the code that card touches, and any learning discovered along the way flows back as a Note. Work is where verification lives: “generated” is not “done” until a result is checked against what done was supposed to mean.The loop
None of these three is the product on its own. The product is the loop between them:Signal → Context → Work → Action → KnowledgeA signal arrives. It is interpreted against the context the team already has. It becomes work. The work produces an action on a real system. The action leaves behind a learning that improves the next interpretation. Two everyday shapes:
- A message from a customer can update a Record in a Collection, open a Card of accountable work, hand the agent the criteria the team recorded for that kind of work, and, once the work is verified, leave a reviewed learning for the next person or agent.
- A product change can mark related Knowledge as possibly stale, create a review task, and improve what future agents receive the next time they touch that area.
How you reach the workspace
The three kinds of state are the product. Everything else is a way to reach them, or a participant acting on them.- The dashboard is the visible workspace for people: boards, the topic graph, the review queue.
- The CLI, the MCP server, and the REST API are access surfaces over the same workspace, kept close to one another. MCP is how an AI client like Claude or ChatGPT reaches Driftless, the CLI is how a terminal or a coding agent reaches it, and the API is how your own code does. None of them is a separate product, and none is the architecture; they are doors into the same state.
- Agents are participants, not magic. An agent reads within the permissions you grant, takes bounded actions, records observations as Notes, and proposes changes, while a person stays responsible for anything the company commits to as true.
- Automations run a step on a schedule or a trigger, for the parts of the loop a team chooses to make automatic. They assist the loop; they do not replace the model underneath it.
- Integrations are governed access to systems Driftless does not own, like GitHub or Notion. An integration is not a subfeature of MCP: MCP is one door for agents, while an integration is a bounded, audited connection to an external tool that can stay the system of record while Driftless coordinates the work around it.
Who decides what becomes Knowledge
An agent can discover something true, and it can also state a wrong interpretation with great confidence. So writing a claim and making it institutional Knowledge are deliberately separate acts. Agents observe, draft, relate, and propose. Merging a Note into Knowledge is an owner or admin decision, because Knowledge is what the whole team will trust later. This is not friction for its own sake: it is what lets an agent read Knowledge as truth and a Note as a hint, instead of treating every generated sentence as fact. People keep authorship over what the company commits to, and agents expand how far that reach goes.The two moves you make most
For a builder, the part of the loop you touch every day is the Knowledge plane, and it comes down to two moves: read before you work, write one clean note after you learn.Read before you work
Before you edit an area, pull what the team already knows about it. Drifted Topics carry a freshness badge inline, so there is no separate step to run.what / how / gotchas / decisions / invariants, and the governance.authoritative flag, before you write anything.
Write one clean note after you learn
When you hit something durable, a gotcha, a decision, an invariant, leave exactly one clean Note. There is no approval gate that will fix a sloppy note later, so quality is enforced at write time by six rules.- One concept per note. Tempted to cover two? Write two.
- Always file it into an area (
--area). Never leave it Unassigned; that’s where vaults rot. - Anchor narrow (
--pattern, ~5-40 files, neversrc/**). For non-code, anchor the doc or system it’s about. - Trust is a signal, not a gate. Knowledge is truth, a Note is a hint, and both are real. Write a good note; don’t chase approval.
- Rewrite to consolidate; append to add. Never stack a wall.
- Content is the durable why, not a changelog. No dates, “shipped”, or PR refs; that lives in git.
Drift keeps Knowledge honest
Stored text is not enough, because an old claim an agent trusts can be worse than none. When code changes on a tracked branch, Topics whose anchors overlap the changed files get marked stale, with a human-readable reason. Drift reaches you as a badge when youcontext get the area, so you don’t have to go looking for it, and on a pull request that touches a documented area, the Auditor delivers the team’s recorded context to the reviewer. That is how Knowledge stays honest: it knows when it stopped being true and asks to be looked at again.
driftless sync is an optional digest. You almost never need it, because drift already reaches you inline. context doctor audits the topic layer itself: stale, orphaned (repo deleted), zombie (anchors match no file), draft.
What Driftless is not
Being clear about the edges keeps the model honest:- It is not the foundation model, and it does not have to be your agent’s runtime or harness. The harness runs the agent; Driftless holds the state the agent works from.
- It does not replace every system of record. GitHub, your CRM, or Notion can stay authoritative while Driftless coordinates the work and the judgment around them.
- It does not turn every agent output into truth. A generated claim is a Note until a person merges it.
- It does not promise autonomy without governance. Agents act within permissions you can see, and a person stays accountable for consequential decisions.
