An organizational second brain can spread scarce expertise across a company. It can also turn one expert's outdated assumption into a default answer that every employee and AI agent repeats. The difference is a control system: provenance, explicit scope, versioned changes, replay tests, regression gates, and retirement rules.
Meta's new engineering case provides a useful implementation pattern. It separates curated knowledge from reasoning procedures, captures expert corrections, compiles them into reviewable text changes, and tests those changes before experts approve them. The reusable lesson is larger than Meta's implementation: the unit of organizational learning should be a verified knowledge change, not a document upload or a thumbs-up event.
This is the knowledge-maintenance layer that sits beneath an AI-native organization's operating model and complements the distinction between latent workspace and durable Agent memory. The first article concerns organizational structure; the second concerns state lifetimes. This guide focuses on how shared domain knowledge earns and loses authority.
What Meta built beyond ordinary RAG
Meta describes an AI agent for a specialist compliance domain with four interdependent layers: a structured knowledge system, composable reasoning recipes, an evaluation framework, and a self-improvement loop. Its curated wiki contains more than 200 files. Position files represent organizational interpretations; taxonomy files stabilize vocabulary; routing indexes determine which positions apply; gateway files prevent specialist rules from being used outside their domain.
Each file declares dependencies and consumers in YAML frontmatter. High-density knowledge used frequently enters the curated wiki. Sparse reference material remains available through semantic or lexical retrieval. This split matters because retrieval and organizational judgment have different lifecycles. A product specification may stay in a source corpus, while the organization's approved interpretation of that specification needs an owner, scope, version, and review history.
Meta also separates knowledge from procedure. Knowledge files state what the organization holds to be true or applicable. Recipes state how the agent should analyze a case. Meta reports that recipe-driven progressive disclosure reduced tokens consumed per turn by around 80 percent. More importantly, the separation makes failure attribution tractable: a wrong answer can come from missing knowledge, a flawed procedure, or genuine ambiguity.
The Meta engineering article is strong evidence for the architecture because it comes from the team that built the system. Its outcome claims deserve a narrower reading. Meta reports three development sprints over six weeks, assessment time falling from days to minutes, and zero regressions across improvement cycles, but it does not publish the benchmark size, thresholds, judge agreement, cost, or an external replication.
The central risk is authority laundering
Knowledge systems often collapse several different claims into one label such as verified:
- A source document contains a statement.
- An AI extracted a candidate rule from that statement.
- A domain expert agreed with the rule in one context.
- An authorized owner approved it as an organizational position.
- The rule improved outcomes on known cases.
- The rule remains valid under current policy and operating conditions.
These are different evidence states. Treating them as one state launders authority. Expertise becomes especially dangerous when the system preserves a conclusion while discarding who said it, which evidence they used, where it applies, and when it should expire.
Provenance helps prevent this collapse. A peer-reviewed review in MIT Press describes provenance as documentation across data, models, algorithms, validation, and workflow, including who did what and when. It also states an important limit: provenance helps investigators trace possible causes; it does not prove that a claim is correct. The W3C PROV ontology provides a useful relationship vocabulary such as derivation, attribution, revision, and invalidation. It supplies semantics, while each organization still needs to define its approval policy.
Model knowledge as a lifecycle, not a pile of pages
A practical organizational second brain should maintain at least six states:
| State | Meaning | Allowed use |
|---|---|---|
| Raw evidence | Policy, decision record, interview, incident, or external reference | Citation and re-analysis |
| Machine candidate | AI-extracted summary, rule, relationship, or proposed edit | Review only |
| Expert feedback | Correction, exception, counterexample, or disputed interpretation | Diagnosis and test design |
| Approved knowledge | Version accepted by an authorized owner for a stated scope | Normal retrieval and agent reasoning |
| Observed outcome | Answer or action that used a specific knowledge version, plus its result | Evaluation and incident analysis |
| Retired knowledge | Superseded or invalidated version with reason and replacement | Audit only; excluded from normal retrieval |
The Open Knowledge Format specification shows why plain files are a credible substrate. OKF v0.2 uses Markdown with YAML frontmatter and includes optional provenance, trust, and lifecycle fields. Google presents the format as human-readable, agent-readable, diffable, and portable rather than as a retrieval platform. Those properties make review and version control cheap. They do not supply approval or evaluation automatically.
A minimal knowledge object can look like this:
id: procurement.vendor-data-residency
status: approved
owner: team:security-governance
applies_when:
region: eu
data_class: restricted
sources:
- id: policy-2026-17
resource: policies/2026-17.md
derived_from_version: 4
verified_by: human:domain-owner
verified_at: 2026-09-03T01:30:00Z
valid_from: 2026-09-10T00:00:00Z
stale_after: 2027-03-10T00:00:00Z
supersedes: procurement.vendor-data-residency@3
tests:
- eval/procurement/eu-restricted-017
The specific fields are an engineering proposal, not an industry standard. Their purpose is to make five questions executable: where did this come from, who has authority over it, when does it apply, which tests protect it, and what replaces it.
Treat expert feedback as an event that needs diagnosis
A feedback button creates a signal. A learning loop begins after the signal is attributed, changed, tested, approved, and deployed. Glean's own user-feedback documentation makes this boundary explicit: marking an answer helpful or unhelpful does not directly improve the answer or trigger automatic retraining. A negative rating may reflect an ambiguous question, weak source material, wrong retrieval context, or another cause.
Meta's diagnosis rule is useful. The system first extracts substantive feedback together with the complete knowledge manifest used by the agent. It then asks whether the loaded material contained enough information to reach the correct conclusion:
- If the answer was present and the agent still failed, the procedure needs repair.
- If the answer was absent, the knowledge layer has a gap.
- If qualified experts disagree, the case enters an ambiguity queue for human resolution.
Production systems usually need two additional branches: retrieval failure and authority failure. The right file may exist but never enter context. The agent may also retrieve content that the current user lacks permission to use. Each root cause requires a different repair and a different verifier.
Compile every correction into a controlled change
An expert correction should produce a minimal diff rather than an opaque rewrite. A dependable workflow is:
feedback event → root-cause diagnosis → proposed diff → impact analysis → targeted replay → regression tests → expert approval → controlled release
The same principle applies to operational guidance. As the blog's evidence audit of Agent Skills found, compact procedures help when they stabilize actions and expose verification. Domain facts, reasoning procedures, and deterministic checks should remain on separate control surfaces.
Three gates matter.
Gate 1: deterministic structure
A linter can check broken references, duplicate identifiers, missing owners, invalid dates, dependency cycles, oversized files, and retired knowledge still reachable from active indexes. These checks cannot determine semantic truth, but they remove classes of avoidable failure cheaply.
Gate 2: targeted replay
Replay the original scenario that triggered the correction. Freeze the question, retrieved context, permissions, relevant configuration, and scoring rubric. Meta describes a deliberately blind design: the tested agent is unaware that it is handling the old failure, and a separate judge evaluates the result without seeing the proposed change rationale.
Gate 3: regression and freshness suites
Run a frozen benchmark to preserve comparability, plus separate slices for high-severity cases, disputed interpretations, low-frequency scenarios, and recent policy changes. A growing regression set can become excellent at yesterday's failures while missing today's distribution shift. Version the dataset, rubric, judge model, agent configuration, and knowledge snapshot together.
ServiceNow's official NLU workflow illustrates part of this lifecycle: teams can compare a trained draft with the published model, preserve test history, and add real expert-feedback utterances to a default test set. C3 AI's Agent Evaluation documentation similarly treats datasets as versioned test collections and experiments as runs against a specific dataset version. These mechanisms provide reproducibility. Meta's contribution is connecting diagnosis, minimal knowledge edits, blind replay, regression testing, and expert approval into one maintenance pipeline.
Design for disagreement and retirement
Expert disagreement is evidence about the domain. It can reveal missing scope, competing risk tolerances, policy ambiguity, or genuine uncertainty. A system should preserve the disagreement and route it to a named authority. Majority vote alone can convert a common mistake into policy.
Every approved item also needs an exit path. Retirement is different from deletion. A retired version remains available for audit, while active retrieval excludes it by default. Its record should include an effective end time, invalidation reason, replacement version, approving authority, and downstream consumers.
Downstream impact is the hard part. When a policy changes, the system should identify answers, decision rules, evaluations, and automated actions that used the old version. High-impact changes may trigger re-evaluation or human review. A dependency graph is therefore more than navigation. It is the control surface for knowledge recalls.
A practical adoption sequence
Start with one bounded domain where questions repeat, expert time is scarce, and outcomes can be checked. Compliance review, security standards, procurement evaluation, and engineering design rules are better starting points than broad corporate knowledge.
- Collect 20 to 50 recurring real cases, including failures, exceptions, and ambiguous examples.
- Freeze raw sources and define which roles may approve organizational positions.
- Separate high-frequency curated knowledge from low-frequency retrieval sources.
- Encode reasoning procedures separately from domain facts.
- Run in shadow mode and compare the agent with expert decisions before allowing production use.
- Turn every confirmed failure into both a minimal repair and a regression case.
- Add freshness reviews and retirement triggers before expanding to another domain.
Measure the system with more than answer acceptance. Useful indicators include expert minutes per assessment, first-pass usefulness, repeated-correction rate, stale-citation rate, escalation precision, critical-case regression count, time from feedback to approved repair, and the share of retired knowledge still appearing in active answers.
The goal is controlled compounding. Expert effort should survive as a reviewable improvement, while every improvement remains challengeable, reversible, and tied to evidence.
FAQ
How is an organizational second brain different from a personal second brain?
A personal second brain optimizes capture, organization, and recall for one person. An organizational system also needs authority, access control, scope, conflict resolution, auditability, evaluation, and retirement because its outputs influence other people and automated workflows.
Why is a searchable document repository insufficient?
Search retrieves evidence. It does not define the organization's approved interpretation, the procedure for applying it, or the tests that protect a change. Those need separate governed artifacts.
Should expert feedback update the knowledge base immediately?
Record it immediately as a feedback event. Promote it after root-cause diagnosis, source checks, targeted replay, regression testing, and approval by the responsible owner.
How should the system handle conflicting experts?
Preserve each position with its evidence and scope, then route the conflict to a named authority or governance process. The resolution may create separate rules for different contexts rather than one universal answer.
Does this architecture require model fine-tuning?
No. Meta's design improves structured knowledge and reasoning recipes without retraining the underlying model. Fine-tuning may serve other goals, but transparent text changes make institutional knowledge easier to review, compare, and reverse.
What should remain in RAG?
Use curated files for dense, frequently applied organizational positions and procedures. Keep large, sparse, situational reference material in semantic or lexical retrieval, while preserving source identity and version metadata.
What does zero regression prove?
It shows that a defined test suite detected no covered failures in those runs. Its strength depends on test coverage, thresholds, dataset freshness, judge quality, and configuration control. It does not cover unknown cases automatically.
References
- Meta Engineering, An Organizational Second Brain: Building an AI That Learns From Experts, September 2, 2026.
- Google Cloud, Introducing the Open Knowledge Format, June 12, 2026.
- GoogleCloudPlatform, Open Knowledge Format v0.2 Specification.
- Naja et al., Provenance documentation to enable explainable and trustworthy AI, Data Intelligence, 2023.
- W3C, PROV-O: The PROV Ontology.
- Glean, User feedback in Glean Assistant.
- ServiceNow, Compare a draft model to the last published version.
- C3 AI, Agent Evaluation Overview.