
How to Build a Company Brain That Doesn't Rot
Giuseppe Arcimboldo, The Librarian, c. 1566
Vaughn DiMarco
A company brain is a maintained context layer that turns scattered company knowledge into trustworthy answers for people and AI agents. It needs four operating loops: capture signals, store durable context, reconcile what changed, and serve cited answers with permissions. Start with one costly question and a human review queue, not every tool and an autonomous graph.
The hard part is not remembering
A company brain takes what a business knows - the decisions in chat, the rules in documents, the state in business systems, and the judgement in people’s heads - and makes it usable as answers or working context. That definition comes from Slite’s Company Brain research, but the underlying problem is older than AI. Organisational psychologists call the shared division of remembering who knows what a transactive memory system. The new part is that software agents now need to participate in it.
Slite surveyed 149 AI-forward teams in July 2026. Only 19.6 percent said they had a company brain that worked, while 55 percent of the teams that attempted a DIY build abandoned it. The sample leaned unusually technical: 69 percent already used Claude Code, Codex-level tooling, or something more advanced. Treat the percentages as a directional signal, not a population estimate. The direction is still hard to miss: the teams most capable of assembling the technology were not protected from the maintenance wall.
The corpus is not the brain. A pile of indexed documents can retrieve yesterday’s mistake faster. A graph can connect two facts that should both have expired. Nor does a giant prompt solve the problem: Lost in the Middle found that models use relevant material unevenly across long inputs, while Chroma’s 18-model experiments found focused prompts outperforming full ones. The brain is the loop that selects, reconciles and verifies context before it becomes an answer.
Explore the evidence
The maintenance wall, seen three ways
Heard of the idea
Awareness across the full survey sample.
70%
Have one that works
Self-reported as working flawlessly.
19.6%
DIY attempts abandoned
Among respondents who attempted to build one.
55%
The failure figure uses attempted DIY builds as its base; the other two use all 149 respondents.
Every company brain has four operating loops
Across the architectures in Slite’s study - open source and commercial, file-based and graph-based, built and bought - the same four jobs recur. I would name them capture, memory, reconciliation, and delivery.
1. Capture. The brain learns from scheduled syncs, live events, agent-written summaries, or retrieval from a source at the moment of a question. The choice is a trade-off among freshness, noise, cost, and whether the original system should remain the only copy.
2. Memory. Durable context can live in plain files, owned documents, a vector index, a knowledge graph, or a deliberate combination. Richer storage is not automatically better. It earns its complexity only when the questions require relationships, history, or scale that simpler forms cannot answer. Long context is a delivery buffer, not the memory itself; position and distractors still change what a model can use.
3. Reconciliation. Consolidation, expiry, drift detection, contradiction checks, and human review keep new knowledge from becoming new clutter. This is the loop most weekend builds omit and the one production systems spend their lives improving.
4. Delivery. People need cited answers in search or chat. Agents need the same context through an API or MCP endpoint. A dedicated workflow may deserve its own interface, but every door should lead back to the same permission and provenance rules.
A reviewed folder of Markdown can therefore be more of a company brain than an impressive context graph nobody maintains. Architecture is the means. Trustworthy recall is the product.
Interactive architecture
The brain is the loop, not the library
03 / Reconcile
Compare new evidence with the claims already in memory.
- Receives
- New records, expiry rules, conflicts, corrections and outcomes.
- Must produce
- Consolidated knowledge, a flagged contradiction or a human review task.
- If this loop is missing
- Retrieval accelerates stale facts, duplicated rules and silent disagreement.
Trust is the product
The strongest result in Slite’s survey was not demand for smarter retrieval. Accuracy was the top adoption concern at 77 percent. When respondents were asked what would make them trust documentation, 78 percent chose a named human owner, 63 percent chose a link to a live source of truth, and 56 percent chose recency. In an environment where plausible prose is nearly free, authority becomes more valuable, not less.
That changes the unit of design. Do not return an answer alone. Return an answer receipt: the sources it used, who owns the underlying rule, when each source was retrieved and last verified, which audience or situation the answer applies to, and whether credible sources disagree. Enforce access in retrieval on every query; NIST’s zero-trust model is explicit about least-privilege, per-request decisions. A prompt that tells the model to keep a secret is not a permission system.
The brain also needs a legitimate refusal. If the relevant source is stale, two owners conflict, or a required system is unavailable, the safe answer is “I don’t know yet” plus a route to the person who can resolve it. A brain that never abstains is a content generator wearing a governance costume.
This matters more for agents than for people. A person who finds an odd policy page may ask a colleague before acting. An agent can turn the same page into a proposal, customer reply, or automated decision at machine frequency. Stale context moves from inconvenience to executable risk.
Trust boundary simulator
A trustworthy brain needs the right to say no
Safe system response
Answer with receipt
Return the answer with its source, owner, verification time, scope and permission decision attached.
Answer receipt
- Permissionpassed
- Sourceattached
- Ownernamed
- Freshnessinside window
- Conflictnone found
A company brain can poison itself
The dangerous mistake is not merely storing something false. It is laundering one false assertion through enough generated documents that repetition begins to look like consensus. A confident meeting note becomes an AI summary, the summary becomes a planning document, and three agents cite the plan. The system now sees five documents. It still has one source.
Treat memory as an evidence graph, not a truth database. Every durable claim should keep its original source, accountable owner, scope, verification time and derivation history. The W3C provenance standard provides a useful vocabulary for entities, activities, agents and “was derived from” relationships. The implementation can be much simpler than RDF; the non-negotiable property is that ancestry survives summarisation.
New assertions should enter as provisional, not true. They can become corroborated, disputed, superseded or expired. A generated summary cannot independently corroborate the note it summarised, and ten descendants of one claim still count as one line of evidence. Retrieval should show conflicting claims together instead of silently selecting whichever wording appears most often.
The same opening can be exploited deliberately. In PoisonedRAG, researchers induced chosen answers by injecting only five malicious texts per target question into databases containing millions of documents, reaching a 90 percent attack success rate in their experimental settings. That is an adversarial result, not a measured rate for company knowledge systems, but it proves that “the corpus is internal” is not a security boundary.
Put controls on the write path, not only the answer. Separate primary evidence from generated material; require a human gate before high-impact claims can influence pricing, legal policy, security procedures or customer commitments; limit automated actions when evidence is provisional; and make corrections travel downstream. When a source is superseded, every derived summary and answer should be marked for regeneration or review.
NIST calls confidently presented false generated content confabulation and warns that fabricated explanations or citations can deepen inappropriate trust. A safe company brain therefore answers with the disagreement intact: “A 2025 retrospective attributed churn to onboarding; it was one team’s interpretation, is not independently validated, and conflicts with three later customer interviews.” Compression must not erase epistemic status.
Contagion path
One bad claim can manufacture its own consensus
Each transformation looks like a new confirming document, although every record descends from the same mistake.
Meeting note
wrong assertion
A confident but wrong explanation is recorded.
AI summary
looks confirmed
The note is compressed without its uncertainty.
Operating plan
looks authoritative
The summary is cited as institutional context.
Three agent actions
executable risk
Sales, support and planning reuse the plan.
System decision
False consensus
- Records that appear to agree
- 4
- Independent sources
- 1
- Automated actions exposed
- 3
Scenario counts are illustrative
Capture at the place of work
The old knowledge-base bargain was that everyone would stop after doing the work and document it somewhere else. Reality declined. In Slite’s survey, 56 percent said company knowledge lived in Slack or Teams, 65 percent named shared drives, and 22 percent named email, even though most respondents also had a dedicated knowledge base. The stack does not consolidate as a company grows. It accumulates.
So do not make “remember to feed the brain” a new job. Capture should ride along with work that already happens: approve a pricing exception, close an incident, change a roadmap commitment, decide why a candidate was rejected, revise the refund policy. Those moments can emit a small structured record or open a draft for review.
The goal is not to preserve every transcript. Keep the decision, its owner, the constraint that shaped it, the evidence it relied on, the scope in which it applies, and the outcome when you learn one. Raw conversation remains available as evidence; the durable layer carries the part the next person or agent will actually need.
Start with one costly question, not every tool
The fastest way to build a maintenance problem is to connect every source before naming a use case. Start with one question people ask repeatedly, where a wrong answer has a visible cost and one person can judge whether the result is correct. Good candidates include “What can sales promise this customer?”, “Which refund rule applies here?”, or “Why did we reject this architecture last time?”
Week 1: collect twenty real versions of the question and the evidence a trusted employee uses to answer them. That becomes the first evaluation set and exposes the sources you actually need. Retrieval research increasingly points the same way: benchmarks built around representative private queries reveal failures that generic public sets miss.
Week 2: connect only those sources. Return draft answers with citations, an owner, a freshness signal, and an explicit abstention path. Do not let the system write back to durable knowledge yet.
Week 3: add a review queue. Every correction should become structured feedback: wrong source, stale fact, missing exception, permission failure, or unanswered question. The queue is not temporary scaffolding. It is how the brain shows where its model of the company is weak.
Week 4: measure the answer rate, correction rate, stale-source rate, permission failures, and how many colleague interruptions the workflow replaced. If the question is not becoming faster and more reliable, do not add five more integrations. Fix the loop or stop.
Four-week field test
Earn the second workflow with evidence from the first
Deliverable
Twenty real questions paired with the evidence a trusted person uses.
Gate to continue
A reviewer agrees the set represents the costly question in normal and edge-case forms.
Measure
Coverage of real question types; missing-source count.
Build or buy the maintenance burden
The real build-versus-buy question is not whether your team can wire a model to search. It is whether you want to own ingestion, retrieval, evaluation, permissions, cost controls, and governance indefinitely while the underlying techniques keep changing.
Build when the brain is strategically differentiating, the access model is unusual, context must remain in infrastructure you control, and a named internal team can treat the system as a permanent product. Buy when the sources and permission patterns are conventional and a vendor can carry the undifferentiated upkeep. For a very small technical team, reviewed plain files in version control remain a strong starting point because people can inspect every change and leave without exporting a proprietary graph.
Whichever path you choose, protect context sovereignty. You should be able to export the durable knowledge, preserve links to original sources, enforce source-system permissions, inspect changes, and change the model or delivery surface without rebuilding the company’s memory. The brain sits above your tools and models; it should not quietly become captive to either.
The Monday-morning version is intentionally small: one recurring question, one source set, one named editor, one review queue, and one place to ask. Earn the second workflow with evidence from the first. A useful company brain starts as a disciplined editorial operation with retrieval attached, then becomes infrastructure only after the maintenance loop survives contact with real work.
Source note: this article adapts the findings and architecture described in Slite’s 2026 survey of 149 AI-forward teams and its full interactive ebook into an implementation playbook for small and mid-sized teams.
Sources & notes
Hover or focus a dotted source title for the short version: what the work found, what it cannot prove, and who has an interest in the result.
- [1]
Vendor figure · Slite · 2026
An interactive field guide to company-brain architecture, assembled from Slite’s survey and interviews with a dozen teams building in the category. It is the conceptual source for capture, memory, consolidation and delivery here. Slite sells knowledge software, so its taxonomy is useful and commercially interested.
- [2]
Company brain statistics: 70% know it, 20% have it
Vendor figure · Ishaan Gupta, Slite · August 2026
A July 2026 Google Form survey of 149 AI-forward teams, promoted through Slite’s audience and network. It reports 19.6 percent with a working brain, 55 percent abandonment among DIY attempts and accuracy as the top concern at 77 percent. Directional, self-selected and vendor-published; not a population estimate.
- [3]
Measuring Transactive Memory Systems in the Field
Independent research · Kyle Lewis · August 2003
Develops and validates a measure of how teams divide the work of remembering who knows what. Tested across 124 laboratory teams, 64 MBA consulting teams and 27 technology-company teams. It supports the organisational-memory analogy, not any claim about modern AI retrieval systems.
- [4]
Lost in the Middle: How Language Models Use Long Contexts
Independent research · Liu et al. · July 2023
Finds a U-shaped pattern in multi-document question answering: models use relevant material best at the beginning or end of context and substantially worse in the middle. It shows that a larger context window is not equivalent to reliable organisational memory.
- [5]
Context Rot: How Increasing Input Tokens Impacts LLM Performance
Vendor figure · Chroma Research · July 2025
Tests 18 open and closed models while holding task complexity constant and varying context length. Focused prompts outperform long prompts across the tested models, with different degradation patterns. The experiments and code are unusually inspectable, though Chroma sells retrieval infrastructure.
- [6]
Vendor figure · Hong, Troynikov, Huber and McGuire · April 2025
Shows why generic public retrieval benchmarks can miss production behaviour, then tests a method for generating representative queries from a private corpus. The real-production validation uses one Weights & Biases dataset and an LLM judge, so it argues for use-case-specific evaluation rather than proving one universal recipe.
- [7]
Zero Trust Architecture, NIST SP 800-207
Primary source · Rose, Borchert, Mitchell and Connelly, NIST · August 2020
Defines zero trust around accurate, least-privilege, per-request access decisions rather than implicit trust based on location or ownership. It supports enforcing source-system permissions during retrieval; it does not prescribe a company-brain product architecture.
- [8]
PROV-Overview: An Overview of the PROV Family of Documents
Primary source · Paul Groth and Luc Moreau, W3C Provenance Working Group · April 2013
Defines provenance as information about the entities, activities and people involved in producing data, and standardises derivation and responsibility relationships. It supplies the conceptual vocabulary for tracking claim ancestry here; it does not specify a trust policy or prove that provenance alone prevents bad decisions.
- [9]
PoisonedRAG: Knowledge Corruption Attacks to Retrieval-Augmented Generation
Independent research · Wei Zou, Runpeng Geng, Binghui Wang and Jinyuan Jia · August 2025
A USENIX Security study showing that five crafted texts per target question could induce attacker-chosen answers with a 90 percent success rate in the tested RAG systems, even against databases with millions of documents. This is a controlled adversarial attack, not an observed failure rate for ordinary company knowledge bases.
- [10]
Artificial Intelligence Risk Management Framework: Generative Artificial Intelligence Profile
Primary source · National Institute of Standards and Technology · July 2024
Defines confabulation as confidently presented erroneous or false generated content and notes that fabricated logic or citations can further mislead users. It supports preserving epistemic status and review around generated summaries; it is voluntary risk guidance, not an implementation standard or performance benchmark.
Common questions
What is a company brain?
A company brain is a maintained context layer that makes knowledge from documents, business systems, conversations, and people usable as answers or working context. It serves both employees and AI agents, with citations, permissions, ownership, and freshness signals attached.
How is a company brain different from a knowledge base?
A knowledge base stores documents. A company brain also captures signals from where work happens, detects when stored knowledge conflicts with reality, and serves the right context through search, chat, or an API. The important difference is the maintenance loop, not the interface.
What are the four parts of a company brain?
The four parts are capture, memory, reconciliation, and delivery. The system gathers signals, stores durable context, consolidates or flags stale information, and returns permission-aware answers to people or agents with a verifiable trail.
Should we build or buy a company brain?
Build when your requirements are genuinely unusual and a named team can own ingestion, retrieval, evaluation, permissions, and governance as a permanent internal product. Buy when your sources and access model are conventional and you want a vendor to carry most of the upkeep. Very small teams should begin with reviewed plain files.
How do you stop wrong information from poisoning a company brain?
Store claims with their original sources, owners, scope, verification state and derivation history. New assertions should remain provisional until reviewed or independently corroborated; AI-generated descendants must not count as new evidence. Contradictions should be retrieved together, high-impact claims should require a human write gate, and corrections should invalidate every downstream summary derived from the old claim.
Find out what agentic workflows would save your team.
The $999 assessment identifies 5-10 hours per week of recoverable time, with a money-back guarantee if it doesn't.
Get the Assessment →