SharePlane flagship thesis · Human-machine continuity · August 2026

The Mind Is Sparse.
The Machine Should Remember.

Intelligence is not everything we know. It is what we can activate, connect, and apply when it matters, and whether we can find the path back when attention moves on.

By Tony MalottDeep thesisEvidence boundedPublished
The thesis

The human mind should be allowed to wander, specialize, obsess, associate, and forget. The machine should preserve enough governed context that the mind can return.

Preview copy. This is Semantic Candidate v02, not the final SharePlane semantic lock.
00 / The lived problem

Fifteen threads

Fifteen threadsmany valuable states · one current working set
  1. 01architecture
  2. 02AI
  3. 03history
  4. 04systems
  5. 05storage
  6. 06network
  7. 07automation
  8. 08writing
  9. 09evidence
  10. 10design
  11. 11security
  12. 12operations
  13. 13research
  14. 14future
  15. 15active

Inactive does not mean unimportant. The architectural question is whether the path back survives.

I keep finding myself with fifteen different threads alive at the same time.

Not fifteen tasks.

Threads.

One is an architecture problem. Another is something I noticed about AI. Another reaches back twenty years and suddenly connects to what I am building today. Three more are half-formed ideas that I know matter but cannot yet explain cleanly. Then some completely unrelated problem arrives and takes over the working set.

I can feel the earlier thread still being there.

I just cannot always get back into it at full resolution.

That distinction has been bothering me because I do not think the problem is simply forgetting.

Sometimes I remember the facts perfectly well.

What I lose is the state around the facts.

Why I thought they mattered. What contradiction I was trying to resolve. Which alternative I had already rejected. What I had just connected to something else. Where the reasoning was headed.

The information survived.

The activation path did not.

And increasingly I think that distinction matters far beyond me.

01 / The recurring pattern

The pattern was there long before AI

The technology changed. The pattern barely did.deep entry · boundary finding · later reactivation
  1. 01Atari
  2. 02Famicom
  3. 03BBS / shell
  4. 04hacking
  5. 05storage
  6. 06networks
  7. 07automation
  8. 08AI

When I look backward, the technologies are almost comical.

Atari 2600. Nintendo Famicom in Japan. BBSs and shell accounts. CD burning. Console hacking. Satellite hacking. Storage. Data hoarding. Networks. Unraid. Plex. Home automation. Whatever new piece of hardware had enough interesting edges to disappear into for six months.

Now AI.

For a long time I thought of those as separate obsessions.

They really are not.

The technology changes. The pattern barely does.

Find a system. Enter it deeply. Understand how it actually works. Push against its boundaries. Reorganize it mentally. Connect it to other systems. Build something around it. Eventually move somewhere else.

Then, sometimes years later, something wakes the old domain back up and a surprising amount of it returns.

People can attach whatever modern label they want to that behavior. ADHD. Hyperfocus. Obsessive tendencies. Associative thinking. Perhaps one of those labels would describe something useful. Perhaps several would.

I am not particularly interested in making the label the story.

A diagnosis matters if it changes treatment, accommodation, or quality of life. The architectural question interests me more:

Once I started looking at that problem as a systems problem, AI looked different too.

02 / Latent vs active

What we can use is smaller than what we know

What exists vs what is active nowbounded analogy · not a biological mechanism claim
LATENT CAPACITY
ACTIVE WORKING CONTEXTsmall, task-specific, temporary

The useful claim is not a universal slot count. It is that immediately usable context is smaller than everything available to the system.

We obviously do not have every memory, association, concept, skill, emotion, and experience simultaneously present in conscious working context.

That would be one hell of a user interface.

Research on working memory has spent decades arguing about the exact mechanisms and limits, and I am not interested in turning one experimental result into a universal number for human cognition.

The safer point is also the more useful one:

What we can actively use at one moment is smaller than everything available to us.

Memory retrieval is also not always equivalent to pulling an isolated record from storage. Neuroscience has a useful term: context reinstatement. Research on episodic memory shows that retrieval can involve reinstating aspects of the context surrounding an earlier experience.

That caught my attention immediately because it sounds much closer to what I experience when I return to a complicated technical problem.

I often do not need somebody to remind me of the answer.

I need enough of the surrounding state to get back into the question.

A diagram. A phrase. A commit. An old note. A conversation. A failure. A stupid little detail that suddenly brings the whole reasoning environment back online.

I am not claiming that episodic-memory research explains everything happening inside my head. It does not.

But it gives us a much better distinction than "memory."

Sometimes what matters is not recall.

It is re-entry.

03 / Selective computation

Machines discovered selective activation too

Selective computationDeepSeek-V3 example · machine architecture
671Btotal parameters
37Bactivated per token
E01E02E03E04E05E06E07E08E09E10E11E12

Latent capacity is not active capacity. This does not mean the human brain implements Mixture-of-Experts routing.

This is where comparisons between minds and language models usually go off the rails.

The human brain is not a Transformer.

A Transformer is not a biological brain.

Attention in a Transformer is not the same thing as human attention.

And sparse Mixture-of-Experts routing is not evidence that our brains secretly contain little software experts waiting for a router to wake them up.

That would make for a fantastic infographic and terrible science.

The useful comparison is at the systems level.

Artificial intelligence also confronts a gap between total capacity and what should participate in the current computation.

Transformer attention dynamically weights relationships among representations. Sparse Mixture-of-Experts architectures add a different mechanism: tokens are routed through selected expert components rather than every expert participating equally in every token's computation.

DeepSeek-V3 makes the distinction unusually concrete.

The model reports 671 billion total parameters, while 37 billion are activated for each token.

That does not make DeepSeek-V3 a brain.

It gives us a very useful engineering example:

Latent capacity is not active capacity.

A system can possess vastly more capability than it should exercise simultaneously.

Part of good engineering is deciding what not to activate.

That begins to rhyme rather strongly with the problem I started with.

04 / Durable reconstruction

DeepSeek added the missing half

The context survives the workerDeepSeek Harness · model-visible means logged
  1. 01durable session events
  2. 02derive model-visible context
  3. 03model + tools
  4. 04append resulting events
  5. 05fork / resume / replay

MoE addresses selective active computation. Harness/Cordis supplies the complementary idea: preserve enough durable state to reconstruct context after execution moves on.

Sparse activation is only half of the story.

In August 2026, DeepSeek AI released DeepSeek Harness, an open-source agent harness built on Cordis.

Its architecture is aggressively composable. The model adapter is replaceable. Tools are replaceable. The agent loop is replaceable. Plugins contribute services, typed events, and reversible effects to a shared context.

But one architectural choice jumped off the page at me.

DeepSeek's architecture puts the invariant even more strongly:

Anything reaching a model request must be reconstructable from the durable session record.

Forking, resumption, transcripts, telemetry, persistence, and replay derive from that stream.

The active intelligence may move.

The durable event record remains.

That is a different problem from sparse routing, and the combination is important.

MoE asks:

Which capacity should participate now?

DeepSeek Harness asks something closer to:

What must survive so useful context can be reconstructed later?

Selective activation.

Durable reconstruction.

Now we have both sides of the problem.

05 / The live failure case

This article proved its own thesis

The article proves itselfhuman recall + machine retrieval + durable evidence
  1. Tony remembersDeepSeek Harness existed
  2. AI retrieveswrong DeepSeek repository
  3. AI concludesthe memory is wrong
  4. Tony challengesretrieve the actual context
  5. System recovers#488 · PR #491 · DeepSeek Harness
  6. Reasoning resumeswith corrected active context
The memory was incomplete. The retrieval was wrong. The preserved context repaired both.

While developing this piece, I remembered DeepSeek Harness.

Very clearly.

I remembered that DeepSeek had recently released an agent harness and that we had already developed a SharePlane thesis around the architectural convergence between DeepSeek Harness, Cordis, and GhostMesh.

The AI working with me told me I was wrong.

It retrieved a different current DeepSeek repository, found a collection of third-party agent integrations, and concluded that DeepSeek itself had not released the harness I remembered.

For a moment, machine retrieval appeared to beat human memory.

Except it had not.

The retrieval was wrong.

The system had activated the wrong context.

DeepSeek Harness absolutely existed.

We had already researched it. We had already created the SharePlane Work. We had already built the article. We had already taken the second visual presentation through Development UAT. I had accepted it. It was sitting there, governed and preserved, waiting at a publication gate.

My biological memory retained enough of the old reasoning state to challenge the machine.

The machine then reached back into durable evidence, found the exact Work, found DeepSeek's actual repository, found the architecture documents, and reconstructed the missing context.

That is the whole damned thesis in miniature.

Neither participant had the complete active state.

I remembered an important relationship but not every exact locator.

The AI had enormous retrieval capability but activated the wrong evidence.

The durable system held the thread.

Once the right evidence was reinstated, both of us could continue.

06 / Continuity

Memory is the wrong word

Memory is too vaguepreserve the conditions for reconstruction
  1. 01identity
  2. 02intent
  3. 03evidence
  4. 04relationships
  5. 05authority
  6. 06temporal state
  7. 07uncertainty
  8. 08next valid action

This is why I increasingly dislike the phrase AI memory.

It is too vague.

A model remembering something is not enough.

A database storing something is not enough.

A transcript existing somewhere is not enough.

A vector embedding is not enough.

A search result is not enough.

The system needs to preserve the conditions under which useful reasoning can be reconstructed.

That may include identity, original intent, source material, relationships, decisions, contradictions, rejected alternatives, evidence, provenance, uncertainty, temporal state, authority, unfinished questions, and the last trustworthy point from which reasoning can resume.

That is much closer to continuity than memory.

And it changes the architectural objective.

Not:

Make the model remember everything about me.

But:

Preserve enough governed context that the right human or machine can reconstruct what matters when it matters.

That is a harder problem.

It is also a much more useful one.

07 / Governed forgetting

The machine should remember selectively

Perfect recall is not intelligencegoverned selective reconstruction
  1. PRESERVE

    when durable continuity earns its cost

  2. SUPERSEDE

    when meaning changes

  3. SUPPRESS

    when context is not currently relevant

  4. DELETE

    when policy, privacy, or intent requires it

  5. RETRIEVE

    when evidence and salience justify activation

  6. CITE

    so the reconstructed state remains inspectable

There is an obvious trap in the title of this article.

"The machine should remember" can easily become "store everything forever."

That would be stupid.

Perfect recall without relevance is not intelligence. It is accumulation.

Useful continuity requires forgetting, suppression, supersession, privacy boundaries, deletion, freshness, salience, and explicit uncertainty.

A stale answer retrieved confidently is worse than an honest gap.

A superseded decision that keeps resurfacing is not memory. It is contamination.

A private thought that survives every boundary forever is not continuity. It is surveillance.

A system that retrieves every historical association whenever a topic appears is not helping cognition. It is reproducing the exact context overload we were trying to escape.

So the machine's job is not infinite recall.

It is governed selective reconstruction.

Preserve broadly where appropriate.

Delete where required.

Supersede explicitly.

Retrieve deliberately.

Expose provenance.

Carry uncertainty.

Activate only what earns its place in the current context.

That sounds less magical than "AI that remembers your whole life."

Good.

Magic is usually where architecture goes to hide.

08 / Re-entry state

The re-entry contract

A re-entry contractdescriptive architecture · no originality claim
  • objective
  • last trustworthy state
  • current claims
  • evidence
  • rejected alternatives
  • unknowns
  • relationships
  • authority
  • freshness
  • wake condition
  • next valid action

If we take this seriously, a paused reasoning thread needs more than a document.

It needs a bounded re-entry package.

I am using re-entry contract descriptively here, not claiming to have invented the phrase or a new field of cognitive science.

For serious work, the minimum useful re-entry state may include:

  • the objective we were actually pursuing;
  • the last trustworthy state;
  • the claims we currently believe;
  • the evidence supporting them;
  • what changed our mind;
  • rejected alternatives and why they lost;
  • unresolved contradictions;
  • dependencies and relationships;
  • authority and public/private boundaries;
  • freshness and confidence;
  • the exact thing that should wake the thread back up;
  • and the next valid action when it becomes active again.

That is different from a summary.

A summary compresses content.

A re-entry contract preserves operating state.

It gives the next reasoning process enough structure to continue without pretending the old mental state can be copied perfectly.

There is even a useful disaster-recovery analogy here, if we keep it in its lane.

Cognitive RPO: how much newly developed reasoning can disappear before a durable checkpoint?

Cognitive RTO: how much reconstruction is required before a dormant thread becomes productive again?

Those are analogies, not metrics I am trying to trademark before breakfast.

But they expose a real design question.

If a system claims to support continuity, how much valuable reasoning can vanish between checkpoints, and how expensive is it to become useful again?

09 / Release attention

The mind should be allowed to leave

The mind should be allowed to leaveattention is not the storage layer
ENTERreason deeply
CAPTUREpreserve operating state
LEAVEattention moves elsewhere
RE-ENTERreconstruct enough context to continue

For most of my life, I think I unconsciously treated attention as a form of preservation.

If something mattered, I had to keep thinking about it.

If I stopped, I risked losing the thread.

That creates an ugly cognitive incentive.

Every good idea demands attention because attention is how you keep it alive.

Every unfinished architecture remains slightly active.

Every unresolved contradiction consumes a little background capacity.

Every important tangent whispers:

Eventually the human becomes the continuity system.

The database.

The scheduler.

The relationship graph.

The retrieval engine.

The unresolved-state store.

That does not scale.

And perhaps it should not have to.

A sufficiently good human-machine system changes the contract.

The mind can enter deeply.

Reason.

Associate.

Discover.

Leave.

The system preserves the thread.

Later, the human returns.

Not to a blank page.

Not to a generic summary.

Not to whatever the model vaguely remembers.

To a reconstructed context containing enough of the original semantic environment to continue.

That is a very different kind of augmentation.

10 / Division of labor

The division of cognitive labor

Division of cognitive laboraugmentation without impersonation
THE PERSON
  • judgment
  • values
  • curiosity
  • meaning
  • synthesis
  • intuition
  • taste
  • authority
THE MACHINE
  • persistence
  • retrieval
  • provenance
  • comparison
  • relationship memory
  • contradiction detection
  • state reconstruction
  • exhaustive recall

The machine holds the thread. It does not become the thinker or acquire authority over what matters.

I do not want the machine to become my mind.

I do not want it deciding what matters to me.

I do not want it fabricating certainty about what I once believed.

And I certainly do not want some synthetic Tony wandering around confidently answering questions merely because it learned my writing style.

The useful division is much cleaner.

The person contributes judgment, values, curiosity, meaning, synthesis, intuition, taste, lived experience, and the authority to decide.

The machine contributes persistence, retrieval, provenance, comparison, relationship memory, exhaustive recall, state reconstruction, contradiction detection, and the ability to keep thousands of inactive threads available without asking one biological mind to continuously carry them.

Neither side needs to contain everything in active context.

That may be the architectural mistake we have been making.

We keep imagining better intelligence as something capable of holding more and more simultaneously.

Larger context windows.

Larger models.

More agents.

More memory.

More tools.

Perhaps part of intelligence is exactly the opposite.

11 / The architecture

Neither side needs to hold everything

This is where the idea connects back to the systems I have been building.

SharePlane, Tony Brain, and GhostMesh are not interesting because they can store more material than I can remember.

A hard drive can do that.

They become interesting when context acquires durable identity, provenance, relationships, authority, state, freshness, and a recoverable next action.

The page can disappear.

The application can be replaced.

The model can change.

The agent can terminate.

The session can end.

The active thread can go cold.

The durable semantic state can remain.

That is the larger architectural proposition:

For the machine, sparse computation can make enormous capacity tractable.

For the person, selective attention makes depth possible.

For both, active context is temporary.

So the durable asset should live somewhere else.

Outside the moment.

Outside the model.

Outside any one worker.

Outside my head.

A governed record of meaning, state, evidence, relationships, and unfinished thought that can survive whichever intelligence happens to be active today.

Not a replacement for thought.

Infrastructure around thought.

A place where reasoning can leave enough evidence behind that another reasoning process can safely begin again.

Perhaps the future of AI is not a machine capable of holding everything in mind.

Perhaps it is a partnership in which neither participant has to.

The human can follow the idea.

THE LIVING THREAD

The active context can move without destroying the work.

The mind can leave. The thread does not have to disappear.
The human can follow the idea.
The machine can hold the thread.
Evidence behind the thesis

Check the work, not just the conclusion.

Public research, authority, lineage, and author testimony are labeled separately. Sources can corroborate, challenge, or bound the argument; they do not replace Tony Malott's judgment.

Portable public record

Take the complete artifact with you.

The deterministic package contains a self-contained offline article, the exact public-route snapshot, canonical public metadata, receipt, source text when available, plain-text context, claim ledger, source records, and a member-hash manifest.

15 public sources

Sources, authority, and lineage

Each record states the role it plays. Research support and governance provenance are not treated as interchangeable.

Governing Semantic Authority

Candidate thesis: The Mind Is Sparse. The Machine Should Remember.

Owner intent, semantic boundaries, evidence receipt, relationship decisions, design-memory capture, exact-head UAT acceptance, merge authority, and public Production authorization.

Owner intent, semantic boundaries, evidence receipt, relationship decisions, design-memory capture, exact-head UAT acceptance, merge authority, and public Production authorization.

Open source
Peer Reviewed Primary Research

Capacity limit of visual short-term memory in human posterior parietal cortex

Primary evidence for constrained visual short-term / working-memory capacity.

Primary evidence for constrained visual short-term / working-memory capacity.

Open source
Peer Reviewed Primary Research

Dynamic Shifts of Limited Working Memory Resources in Human Vision

Primary evidence for limited working-memory resource in visual tasks.

Primary evidence for limited working-memory resource in visual tasks.

Open source
Peer Reviewed Primary Research

Oscillatory patterns in temporal lobe reveal context reinstatement during memory search

Primary evidence for temporal context reinstatement during episodic-memory search.

Primary evidence for temporal context reinstatement during episodic-memory search.

Open source
Peer Reviewed Primary Research

Neurofeedback helps to reveal a relationship between context reinstatement and memory retrieval

Primary evidence linking context reinstatement with recall from the associated context.

Primary evidence linking context reinstatement with recall from the associated context.

Open source
Peer Reviewed Primary Research

Distinct cortical systems reinstate the content and context of episodic memories

Primary evidence distinguishing content and temporal-context reinstatement in episodic memory.

Primary evidence distinguishing content and temporal-context reinstatement in episodic memory.

Open source
Primary Technical Paper

Attention Is All You Need

Primary architecture source for Transformer attention.

Primary architecture source for Transformer attention.

Open source
Primary Technical Paper

DeepSeekMoE: Towards Ultimate Expert Specialization in Mixture-of-Experts Language Models

Primary architecture source for sparse expert routing in DeepSeekMoE.

Primary architecture source for sparse expert routing in DeepSeekMoE.

Open source
Primary Technical Report

DeepSeek-V3 Technical Report

Primary source for 671B total / 37B activated parameter example.

Primary source for 671B total / 37B activated parameter example.

Open source
First Party Source Code

DeepSeek Harness

Primary source establishing DeepSeek Harness identity, open-source status, developer-preview posture, and Cordis linkage.

Primary source establishing DeepSeek Harness identity, open-source status, developer-preview posture, and Cordis linkage.

Open source
First Party Architecture Documentation

DeepSeek Harness Architecture

Primary evidence for shared context, durable session events, session-log-derived model context, reconstructability, replay, fork/resume, and replaceable capability seams.

Primary evidence for shared context, durable session events, session-log-derived model context, reconstructability, replay, fork/resume, and replaceable capability seams.

Open source
First Party Preprint

A Programming Paradigm for Spatiotemporal Composability

Design basis linked by DeepSeek Harness for Cordis; preprint under active revision.

Design basis linked by DeepSeek Harness for Cordis; preprint under active revision.

Open source
Internal Publication Lineage

When Another Lab Finds the Same Wall

Durable SharePlane evidence that the DeepSeek Harness / Cordis convergence Work already existed.

Durable SharePlane evidence that the DeepSeek Harness / Cordis convergence Work already existed.

Open source
Internal Publication Lineage

Issue #488: When Another Lab Finds the Same Wall

Exact Development candidate and owner-UAT lineage for the recalled DeepSeek Harness article.

Exact Development candidate and owner-UAT lineage for the recalled DeepSeek Harness article.

Open source
Internal Architecture Authority

The Continuity System semantic source

Existing SharePlane semantic authority for externalized continuity, reconstruction tax, durable context, and temporary intelligence at the perimeter.

Existing SharePlane semantic authority for externalized continuity, reconstruction tax, durable context, and temporary intelligence at the perimeter.

Private repository authority: pinklon/shareplane-platform docs/intake/issue-356/continuity-system.yaml
Claim discipline

What is asserted—and how it is bounded

Research, author analysis, and personal testimony remain distinct. Supporting links and caveats stay attached to each claim.

Externally Supportedclaim:513:context-reinstatement

Episodic memory retrieval can involve reinstating aspects of prior context rather than recalling isolated facts alone.

Boundary Context reinstatement is established here for episodic-memory research; re-entry is used as an architectural reader term, not a claimed neurological mechanism.

Externally Documented Current Architecture Exampleclaim:513:deepseek-v3

DeepSeek-V3 reports 671B total parameters and 37B activated parameters for each token.

First Party Current Stateclaim:513:harness

DeepSeek Harness is an open-source agent harness developed by DeepSeek AI; its architecture derives model-visible context from a durable session log and requires model-visible inputs to be reconstructable from that log.

Boundary Developer preview; rapidly changing implementation. Primary DeepSeek Harness sources were rechecked on 2026-08-18 immediately before Production promotion.

Owner Architecture Synthesisclaim:513:continuity-thesis

For serious human-machine work, useful continuity depends less on opaque model memory than on governed persistence of identity, evidence, relationships, authority, state, freshness, and re-entry cues.

Support
Explicit Nonclaimclaim:513:nonclaim

This Work does not claim that the human brain is a Transformer, that biological cognition literally implements MoE routing, that AI preserves a human mental state exactly, or that DeepSeek endorses SharePlane or GhostMesh.

Public boundary. Public-safe owner history and architecture only. No medical diagnosis, raw private ChatGPT history, employer information, credentials, protected infrastructure details, or private Tony Brain content is exposed.

15 sources8 governed claims1 portable package
Connected work

Continue the thinking

Each connection explains why the next work belongs here. The graph records the edge; this layer makes it useful to a reader.

Foundations

Explore the complete graph