Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

3. The Graduation Plane

The core differentiator in LocusGraph is graduation. Events do not just get stored — they get admitted, linked, scored, and promoted up a four-stage plane.

The graduation plane: data, information, knowledge, wisdom.

The Four Stages

StageWhat it means in LocusGraph
DataA raw event happened: an error, action, decision, observation, or user correction.
InformationThe event is admitted, typed, scoped, and connected to a context.
KnowledgeRepeated evidence turns isolated events into patterns with rising confidence.
WisdomValidated patterns graduate into skills the agent can reuse in future work.

The compact version:

event -> pattern -> skill

How Graduation Works

A fact reinforced five times rises in confidence. A fact contradicted drops. A repeated failure becomes a mistake to avoid. A repeated successful workflow graduates into a skill.

This is automatic. You do not have to manage it manually:

  1. Admit events with the right kind, source, and payload.
  2. Link new events to existing ones with reinforces, contradicts, extends, or derived_from.
  3. Confidence scoring updates the graph in place.
  4. Retrieval ranks well-validated knowledge to the front.

Patterns and skills are queryable as their own contexts (e.g. pattern:pagination_bounds, skill:safe_pagination), so the agent can ask for "the skill for X" instead of replaying the entire history of mistakes that led there.

The Plane in a Coding Agent

Plane stageConcrete example
Data"Index out of bounds in pagination logic."
InformationAdmitted as an observation under error:off_by_one.
KnowledgeAfter 3 hits, a fact under pattern:pagination_bounds reinforces the pattern.
WisdomAfter 5 successful uses, a decision under skill:safe_pagination extends the pattern.

The graduation plane is what makes LocusGraph more than memory. Skills retrieved during future sessions prevent the same mistakes from recurring.

Next

4. LLM Agnostic
Why your knowledge survives model swaps.
Memory Links
Reference for reinforces, extends, contradicts.