AchiralAchiral

Research · Researchers and educators

Activation Is Not Querying

A research preview on activation-guided graph retrieval: treating memory availability, graph traversal, and evidence reconstruction as distinct from similarity search in long-lived AI systems.

Published2026-07-20
Editorial isometric artwork showing activation-guided memory traversal across cards, glass trays, selected graph nodes, and evidence reconstruction stacks.
Activated graph nodes and paths represent memory availability: prior experience becomes available through goal-, history-, and evidence-conditioned traversal rather than query similarity alone.

The distinction between querying and activation matters because a larger context window, a vector index, and a knowledge graph are all useful substrates, but none of them specifies a theory of memory availability. They answer where information resides and how a system can search it. They do not, by themselves, answer which prior experiences should exert influence on the system now. Querying exhibits explicit search behavior over stored records, while activation exhibits implicit influence based on prior engagement or forgetfulness.

The retrieval question is underspecified

Retrieval-augmented generation typically begins with a query qq, a collection of stored objects M={m1,,mn}M = \{m_1, \ldots, m_n\}, and a relevance function:

sq(mi)=sim(f(q),f(mi)).s_q(m_i) = \operatorname{sim}(f(q), f(m_i)).

The system returns the top-kk objects under sqs_q, possibly after lexical fusion, metadata filtering, or learned reranking. Graph RAG broadens the retrievable unit from a passage to a node, neighborhood, path, community, or summary. These are important advances. They improve candidate generation and expose relationships that flat passage retrieval suppresses.

But the mathematical object remains mostly query-conditioned relevance. A record can score highly whether it was confirmed yesterday or superseded last year; whether it represents a direct observation or a model-generated reflection; whether it has repeatedly supported successful action or has merely been retrieved many times; and whether it belongs to the current goal state or happens to share vocabulary with it. Each limitation can be addressed with another filter or feature, but collectively they point to a missing variable: availability as a function of the system's history and present cognitive state.

We call that variable activation.

Activation versus querying

Querying and activation are complementary operations over different conditionals.

Querying estimates something like:

P(mi is relevantq).P(m_i \text{ is relevant} \mid q).

Activation should estimate a richer quantity:

P(mi should influence inference nowq,g,Ht,G,π,σi),P(m_i \text{ should influence inference now} \mid q, g, H_t, G, \pi, \sigma_i),

where gg is the active goal or workflow state, HtH_t is interaction and access history, GG is memory-graph structure, π\pi is the permission policy, and σi\sigma_i is the epistemic state of the memory: source, confidence, verification, contradiction, lineage, and decay status.

The distinction changes the retrieval operator.

DimensionQuery-conditioned retrievalActivation-conditioned memory
Primary questionWhat resembles or answers this request?What prior experience should be cognitively available now?
StateCommonly request-localHistory-, goal-, and workflow-dependent
Unit of selectionPassage, document, row, nodeEntity, episode, procedure, edge, path, or evidence subgraph
Temporal behaviorUsually static between indexing updatesStrengthens, decays, and changes with use and outcome
Structural behaviorRanks candidates independently or by neighborhoodAllocates traversal budget across connected evidence
Epistemic behaviorOften delegated to downstream generationCarries provenance, contradiction, and verification into selection
OutputRanked context itemsA bounded, auditable evidence graph

A vector score should therefore be understood as one term in a memory policy, not as the policy itself. Querying nominates candidates. Activation governs which candidates and paths are allowed to become influential.

A stateful activation operator

The filed architecture represents organizational experience as a hierarchical graph containing goals, domains, episodes, events, chunks, facts, entities, procedures, decisions, source documents, and agent actions. Edges may encode temporal order, causality, containment, contradiction, update, provenance, derivation, similarity, assignment, or dependency.

For memory entity mim_i, activation can combine request relevance with stateful signals such as recency, qualified successful use, salience, goal alignment, source authority, contradiction status, and policy constraints. This is an engineering use of cognitive-memory ideas such as ACT-R base-level and spreading activation, not a claim that an organizational memory system is a faithful cognitive model.

Hard authorization constraints must be applied before content or relevance can leak into the response; permission is not merely another soft feature. The useful research property is auditability: when a memory enters context, the system should be able to explain whether it arrived because of semantic match, temporal state, repeated successful use, a causal relation, an active goal, or source authority.

Activation changes graph traversal

The most consequential part of the architecture is not activation reranking over a fixed candidate list. It is using activation to control where retrieval goes next.

Given initial cues extracted from a query, goal, or agent state, the system uses activation to allocate a bounded graph frontier. Traversal should account for both evidence value and cost, including the tendency of broad, high-degree cues to consume retrieval budget. Nodes such as “customer,” “roadmap,” “Q3,” or “incident” may connect to thousands of memories. Their raw connectivity makes them easy to retrieve and nearly useless for discrimination unless graph fan is controlled.

Retrieved evidence may also introduce new cues absent from the original request. That recursive cue generation is how the system can recover supporting material whose decisive evidence does not resemble the original wording.

The output is an evidence graph rather than an unordered top-kk list, preserving retrieved nodes, typed relations, provenance, confidence, contradictory branches, and unresolved gaps before generation begins.

A concrete failure of query-only recall

Consider the question: Why was Project X canceled?

A strong embedding model may retrieve the cancellation announcement, a meeting transcript containing “Project X,” and a status report semantically close to “canceled.” Those passages could support a fluent answer while omitting the actual cause.

In the activation-guided formulation, “Project X” and “canceled” are only starting points. A decision-lineage answer may depend on evidence several hops away from the literal query terms, such as account changes, forecast revisions, budget constraints, and the final decision record. Evidence reconstruction should preserve the relevant relation:

account lossforecast revisionbudget reductioncancellation decision.\text{account loss} \rightarrow \text{forecast revision} \rightarrow \text{budget reduction} \rightarrow \text{cancellation decision}.

The language model receives that relation together with source provenance and any competing explanation. Generation is downstream of retrieval-time reconstruction, rather than being asked to invent causal structure from adjacent fragments.

This example illustrates the key research claim: for questions requiring temporal, causal, procedural, or decision lineage, the relevant unit is often a path under a goal-conditioned memory policy, not a passage under a similarity metric.

What follows analytically

Three design-level conclusions follow from the formulation.

1. Activation can bound a graph frontier

Naive breadth expansion over a graph grows quickly with branching factor and depth. Activation does not abolish graph-search complexity; it supplies a stateful pruning policy. A fair implementation must therefore report traversal work directly, including graph operations, latency, cache behavior, and the size of the retained frontier.

2. Evidence density matters more than token count

An evidence graph is not guaranteed to be shorter than a flat list of retrieved chunks. Its proposed advantage is higher evidence density: more causal, temporal, and epistemic structure per token, with less duplicated passage text. A fair evaluation must report both token cost and support coverage.

3. Reinforcement introduces a feedback-control problem

Reinforcement can be inexpensive computationally and dangerous statistically. If retrieval itself increments future availability, an early false positive can become self-reinforcing.

Reinforcement should therefore depend on qualified outcomes - citation, user confirmation, successful action, or later consistency - rather than retrieval alone. Negative evidence and supersession must reduce authority without destroying lineage. In this architecture, forgetting is not deletion; it is controlled loss of retrieval authority.

Testable hypotheses

The architecture should earn its complexity empirically. We propose comparing five systems under matched generation models and context budgets:

  1. lexical retrieval;
  2. dense or hybrid top-kk retrieval;
  3. graph retrieval without activation;
  4. activation reranking over a fixed candidate pool;
  5. activation-guided traversal with recursive cue expansion and evidence reconstruction.

The strongest evaluation tasks are those where flat similarity is plausibly insufficient: organizational “why” questions, decision-history reconstruction, incident postmortems, temporal supersession, customer-commitment recall, procedural next-action selection, and contradiction detection.

Primary metrics should include answer accuracy, evidence-node recall, causal-edge F1, temporal-order accuracy, contradiction recall, provenance completeness, stale-memory false-positive rate, and calibration of answer confidence against evidence support. Systems should also report retrieval latency, graph operations, serialized context tokens, and human audit time.

The critical ablations should test activation state, graph traversal policy, evidence reconstruction, authorization, and reinforcement. The claim is falsified or narrowed if a simpler graph reranker matches full traversal on causal and temporal recovery at equal cost.

Failure modes and boundary conditions

Activation is not intrinsically safer or more accurate than querying. It creates state, and state creates path dependence.

  • Popularity lock-in: frequently retrieved memories can crowd out rare but decisive evidence.
  • Stale authority: recency and repetition can preserve an obsolete decision unless supersession edges carry sufficient weight.
  • Reflection laundering: model-generated summaries can acquire the authority of direct observations if lineage is lost.
  • Fan overcorrection: strong attenuation can suppress broad concepts that are genuinely diagnostic for a task.
  • Goal capture: an incorrect active goal can steer traversal away from relevant evidence.
  • Permission leakage: scoring an inaccessible node before authorization may reveal that it exists, even if its content is withheld.
  • Audit overload: a large evidence graph may be more inspectable in principle but less usable in practice.

These are reasons to expose activation contributions, provenance, and path history as first-class outputs. A memory system that cannot explain why an experience became available is difficult to calibrate and unsafe to reinforce.

Relation to adjacent work

This proposal does not claim to invent activation, graph retrieval, hierarchical memory, reflection, or retrieval-augmented generation. ACT-R provides a mature account of base-level and spreading activation. RAG established retrieval from non-parametric memory for generation. GraphRAG demonstrated graph-based, query-focused summarization. RAPTOR developed recursive tree-organized retrieval. Generative Agents combined memory streams, reflection, and planning. MemGPT framed LLM memory management through an operating-system analogy, and Zep developed temporal knowledge-graph memory for agents.

The proposed contribution is the ordered runtime combination: goal- and history-conditioned activation; fan-aware traversal of a hierarchical organizational memory graph; recursive cue generation; evidence-graph reconstruction before language-model inference; and auditable reinforcement after use. The patent context is relevant because it fixes the claimed engineering boundary. The research question remains open because the value of that combination must be established through controlled comparison.

The argument in one sentence

Querying asks which stored objects match the request; activation determines which prior experiences and evidence paths should be allowed to shape the system's present behavior.

For short-lived question answering, that distinction may add little. For agents and organizations expected to accumulate experience, revise beliefs, preserve decision lineage, and operate under policy over months or years, it may be the difference between a searchable archive and a memory system.


Publication

Achiral, Activation-Guided Graph Retrieval for Cognitive Memory Reconstruction in Language Model Systems (2026). arXiv identifier and link: pending submission. This page is the canonical companion essay and will be updated when arXiv assigns the record.

The work is associated with U.S. provisional patent application 64/084,217, Hierarchical Activation-Guided Graph Retrieval for Cognitive Memory Reconstruction in Large Language Model Systems, filed June 6, 2026.

Copyright 2026 Achiral. Patent rights reserved. No patent license is granted by publication of this article.