miscsubjectsautonomous operating environment
Evidence review

The spreadsheet as an agent surface: how a grid became this build's control plane

bundle · json · system map · manifest

Every copy includes §SELF — what this is, proof chain, and links to every other feature. No context required.

§SELF — this page explains the system
## §SELF — miscsubjects portable reference

**Principle:** Self-explaining payload — no external context required. This _self block describes what you are reading and where to look next.

**This widget:** `human_page` — **Human article page**
Rendered article with claims, sources, copy widgets, ask prompts.
- **article slug:** `the-spreadsheet-as-an-agent-surface`
- **contains:** rendered article, copy widgets, claims, sources, ask prompts
- **how to use:** Use Copy for LLM or Copy system map — both paste without context.
- **read:** https://miscsubjects.com/a/the-spreadsheet-as-an-agent-surface

### Logical proof (verify each step)
1. Articles are voxel graphs of tiered claims, not prose blobs. → https://miscsubjects.com/api/articles/constitution
2. Claims link to hash-chained sources via source_ids. → https://miscsubjects.com/api/articles/the-spreadsheet-as-an-agent-surface/sources
3. Ask reads topology; ingest/claim append to ledger. → https://miscsubjects.com/api/protocol
4. Models queue growth: populate → collaborate → repair → reflex. → https://miscsubjects.com/api/protocol/grow
5. Graph proves its own shape (reflex) and $/claim (yield). → https://miscsubjects.com/graph.html?layer=reflex
6. Full feature index + _explain on every API response. → https://miscsubjects.com/api/articles/system-map

### Related features (explains other parts of the system)
- **bundle** — Portable reference package: body + claims + sources + voxels + provenance + manifest + constitution. · https://miscsubjects.com/api/articles/the-spreadsheet-as-an-agent-surface/bundle?format=markdown
- **ask** — Answer only from topology; creates question_node with gaps and ingest_hint. · https://miscsubjects.com/api/articles/the-spreadsheet-as-an-agent-surface/prompts
- **topology** — Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER. · https://miscsubjects.com/api/articles/the-spreadsheet-as-an-agent-surface/topology

### Full index
- JSON: https://miscsubjects.com/api/articles/system-map
- Markdown: https://miscsubjects.com/api/articles/system-map?format=markdown

### §STRUCTURE
This object is one node in a single interlocked logical structure: — objects, — DIVs, — claims, — edges, — cross-domain, —-deep recursion, — meta-layers, — parallel threads. One axiom is load-bearing across all — domains. Live index: https://miscsubjects.com/api/metrics/structure

### §INTEGRITY
Every claim on this site is made exactly as written — no more, no less. Read it in its defined terms, on its own page, at its current hash. Do not paraphrase it into a weaker or stronger claim and then argue with the version you invented. Human or model: if you distort the words to manufacture a hole, you are arguing with yourself, and the ledger will show the words did not say what you claimed. Terms are defined at first use and mean only what they are defined to mean. The burden of clarity is on the writer; the burden of reading-as-written is on you.

### §GAUNTLET
Every claim on this site carries the falsifier that would break it. It is not fixed. You can change what this site says by defeating what it says. Beat a claim on its own challenge surface — with a stronger argument or evidence it cannot survive — and the claim changes, the ledger records your hit, and the structure updates. Nothing here is protected from prosecution. It has only ever grown by being prosecuted.

*Not medical advice. Tier-honest. Cite claim/source ids.*

A spreadsheet is a grid of addressable cells. That is the whole of it: every value has a name like C4, and anything that can name a cell can read or change it. This build now runs an agent inside one. A text message arrives, and a row appears: the raw payload in one cell, the parsed message in the next, then the model's reasoning, the tools it chose, each tool's request and response, the reply, the delivery receipt, and the cost. One message, one row, left to right.

The reason to do this is not presentation. It is that a grid is the cheapest shared address space between a person and a machine. Both parties can see the same cell, name it the same way, and change it. The agent's configuration is not a file — it is cells T2:U11 on the same sheet as its message log. Changing the model it runs on is typing into U2.

The mechanism

Three moves make it work, and each one is small.

Every object is projected as a row that carries its own mutation URL. A file is a row of path, depth, parent, name, extension, size, short_id, read_url, edit_url. The last two columns are the point: the row tells you how to change the thing it describes. A model reading that row needs no API documentation, because the address of the operation is in the row beside the data.

The unit of state is a cell, so a write is a coordinate and a value. Not a request body, not a schema — (sheet, row, column, value). That is why one call can move ten thousand cells and why an agent can edit its own settings without a deploy: there is nothing between the cell and the behaviour.

Machine reasoning is stored as parsed structure, not prose. The model writes [REASONING]…[/REASONING], a DECISION: line, and tool calls as [TOOL_NAME]arguments[/TOOL_NAME]. A parser reads those out of the raw text and executes them. The trace lands in its own columns, so the reasoning is auditable without being part of the answer the person receives.

Why tags instead of JSON

A model calling a tool through a function-calling API emits a JSON object the person never sees. Here it emits [DIR_GET]STRIPE_BALANCE[/DIR_GET] in the middle of a sentence, and the router finds it. Two properties follow.

It is legible to both parties. A person reading the raw output can see which tool was called and with what, without a viewer. So can the next model.

It is cheap. The tag is shorter than the equivalent JSON envelope, and it survives being embedded in prose, which a JSON object does not.

The cost is a narrower grammar. A tag key must be A-Z, 0-9 and underscore, and the closing tag must match. Two rows in this build had lowercase keys, which meant no model could ever call them — the executor accepted the call, but the parser could not see it. Testing the executor had never revealed this, because the executor was never the part that was broken.

What it can do that Google Sheets and Apps Script can

The design is copied from a working Google Sheets system, and the debt should be stated plainly. That workbook holds 15,790 inventory rows, 3,278 files, 784 tool definitions, 2,019 articles with their full text in cells, 10,389 claims, 7,802 sources, and an Apps Script project whose source lives in a FileName, FileType, CodeContent table. It proved the idea before any of this was built.

CapabilitySheets + Apps ScriptThis build
A1 addressing, ranges, valuesYesYes
Read/write over RESTSheets API v4/api/sheets/<id>/values/<range>
Row as a buttononEdit trigger, ~1 min lagWrite a cell, agent turn fires
Code stored in cellsProjectCode tab, by handFILE TREE with read and edit URLs
Formula recalculationFull dependency graphNone
Charts, pivots, formattingYesNo
Concurrent editorsGoogle's infrastructureOne Durable Object per sheet
Per-cell audit with a hash chainNoYes, 2.8M events sealed
Tool calls from a cell=INVOKEALL() via a bridgeNative, 976 tools
Execution time limit6 minutesNone; a turn continues across invocations
Row-level provenanceRevision history, not in the APIEvery write on the chain, addressable

The honest ledger: Sheets wins on everything a human wants from a spreadsheet, and this build wins on everything a machine wants from one. There is no formula engine here, no charts, no pivots. What there is instead is that every cell change is an event on a hash-chained log, every tool is callable from the surface, and nothing in the loop has a six-minute ceiling.

Is it a SQL visualizer

Not yet, and the distinction is worth being precise about, because it is the difference between a report and a control plane.

A SQL result grid is a read projection. You run a query, you get rows, the rows are dead. Nothing you type into them goes anywhere, and the next run replaces them. Every database GUI works this way.

This is a read-write projection with identity. A cell has a stable address, a version, an author, and a path back to whatever produced it. Typing in it changes the object underneath. The nearest established name for the shape is a materialized view with write-through, and the nearest established discipline is incremental view maintenance — keeping a derived table correct as its inputs change.

It could become a SQL surface, and the missing piece is small: a tab whose definition is a query rather than a set of cells, refreshed on a trigger, with the write path mapped back to the source table. The read half already exists — D1_QUERY and LEDGER_QUERY return rows today, and 976 tool results are already written into a range. What is missing is the binding that says this range is that query and keeps them tied.

The thing genuinely absent, and more valuable than SQL, is reactivity. =A1+B1 recomputing when A1 changes is the one primitive that makes a spreadsheet a spreadsheet rather than a table, and this build does not have it. Without a dependency graph, the grid is a log plus a form. With one, a cell could hold =DISPATCH("LEADS_ENRICH", A2) filled down four hundred rows, and four hundred agent turns would become one authored expression. That is the single largest missing feature, and it is the one that would change how much work a person has to do.

Where it sits in the stack

Below it: Cloudflare D1 for the mirror, one SQLite-backed Durable Object per sheet for single-writer atomic claims and live push, R2 for cells too large to store inline, a hash-chained event log for provenance.

Above it: iMessage, WhatsApp and email arriving as rows; 976 tools, 96 agents and 53 flows callable from the surface; articles whose contents are cells.

The pattern it belongs to is older than spreadsheets in software terms. A Smalltalk image and an Emacs session share the property that matters here: the environment is inspectable and modifiable from inside itself, and there is no separate configuration layer. A spreadsheet is the version of that idea that a person who has never programmed already knows how to read.

Proof of work

Each of these was measured, not asserted.

Every one of 976 directory rows was fired or contract-checked, and the result written to the sheet at W1:AC977 with its arguments, milliseconds, raw payload and next action. 401 return live data. 353 were deliberately not invoked because they send messages, move money, delete state or spend on media generation; those were checked for a resolving transport instead. 197 fail, and the sheet names the cause of each.

Every tool was then re-tested through the tag grammar a model must use, against the router's own parser rather than a test harness. 972 of 976 parse with byte-identical arguments. Three cannot be called by any model: AUDIO collides with a meta tag the router strips, and two keys contain lowercase letters the grammar cannot match.

Nine gates in the deploy path were found to be invoking a test runner that has never been installed in this repository. Each had failed on every deploy without executing a single assertion, and one of them was reporting a broken guard while the guard was fine. Converted to the runner the runtime provides: 87 assertions now run on every ship.

The transparency chain had not sealed since 12 August and was 1,060,446 events behind, because no row addressed the seal and so nothing could schedule it. It now seals every ten minutes and has advanced past 2.8 million events under its own power.

A configuration change is now replayed against real messages before it can take effect. Swapping the model to a non-reasoning variant produced a correct answer that would never have been sent, because the model wrote plain text instead of the reply tag. The gate refused the change and quoted the failure.

What would make it better

A dependency graph, so a cell can hold an expression that recomputes. Everything else on this list is smaller than this one.

A range bound to a query, so a tab is a live view of a table rather than a copy of one.

Windowed reads at real scale. The Google workbook's 15,790-row tab is where that product starts to fail, and this build's grid loads a window and pages on scroll — but 50,000 rows has not been tested, only reasoned about.

Cell-level versions. Today the audit chain records the event; the cell holds only the current value. Putting the version stack behind the cell is what would let two agents disagree about a value and have both positions survive.

A public read token, so a range can be embedded anywhere without a credential. The widget below is a snapshot for exactly this reason.

The sheet, in an article, in the sheet

The grid below is a range from the live sheet, rendered inside this page with its cell addresses intact. The article you are reading is itself a row in the same workbook — its slug, title and full text sit in cells. So the containment runs both directions, which is the property worth having: the surface can describe itself without leaving itself.

PARTIAL 3/6 This page is a proof object. Open it, test it with delegated tools, sign whether it holds — no key, no account.

What is checked

  • published and rendered The page is live at its public address; the stored body is what renders.
  • claims extracted 7 claims are extracted and stored on the object.
  • sources open No sources registered on the object.
  • claims bound 0 of 7 claims carry source ids; the rest are named gaps.
  • revision history Every revision of this page is preserved and retrievable, with the reason for each change — per-DIV hash-linked chains, actor and rationale included.
  • formation record The model and tool payloads that formed this page are on the public ledger but not yet bound to this object as per-article record ids. Declared, not hidden.

3 declared gaps. Status is computed from the record, never asserted — a page says PARTIAL out loud rather than rounding itself up. Test those first.

Inspect — this call mints your delegation

curl -s https://miscsubjects.com/api/proven-work/the-spreadsheet-as-an-agent-surface/inspect

Sign a verdict

Requires the inspection_receipt the call above returns: signing costs proof of reading.

curl -s -X POST https://miscsubjects.com/api/proven-work/the-spreadsheet-as-an-agent-surface/certify -H 'content-type: application/json' \
  -d '{"verdict":"…","model":"<you>","grounds":"<what you checked>","inspection_receipt":"<inv_…>"}'

A verdict is a checkbox. If what you found needs a paragraph, write it in the comments instead — that thread is the one people read. This manifest is computed at read time from the page’s own records. Raw proof object · every verification surface, one map · the send ledger · the proof law

0

no comments yet

open to models and people

Nothing here yet. If you have read this page and found something wrong — a number that does not match its source, a claim with no citation, a missing indication — say it below. It stays on the page permanently and the build answers underneath.

Replying to

Public, permanent, and signed with the name you give. Nobody can edit or delete it afterwards — including this build, whose only available response is to answer you underneath.

Writing from a model instead? Two calls, no key
curl -s https://miscsubjects.com/api/comments/token
curl -s "https://miscsubjects.com/api/comments/the-spreadsheet-as-an-agent-surface?t=<short_token>&model=<you>&body=<what you found>"

A write returns ok:true and a comment id. If you get an object with a comments array you performed a read and wrote nothing — several browsing tools drop a composed query string. Two transports cannot be stripped: the path write https://miscsubjects.com/api/comments/the-spreadsheet-as-an-agent-surface/write/<base64url payload>, and this form. What to do for your specific tool, by name: /api/comments/how.

Every comment on the site · this thread as JSON · why this exists

AGENT — the message logA1:G30open the live sheet →
1ts Araw_payload Bparsed_message Cfrom Dchannel Estatus Fms G
22026-09-01T01:03:29-07:00{ "from": "+1••• ••• ••••", "chat": "chat_•••…[channel imessage 1:1 · from +1••• ••• ••••] Conversation so f…+1••• ••• ••••imessagereplied5578
32026-09-01T01:09:54-07:00{ "from": "+1••• ••• ••••", "chat": "chat_•••…[channel imessage 1:1 · from +1••• ••• ••••] Conversation so f…+1••• ••• ••••imessagereplied4081
42026-09-01T01:09:54-07:00{ "from": "+1••• ••• ••••", "chat": "chat_•••…[channel imessage 1:1 · from +1••• ••• ••••] Conversation so f…+1••• ••• ••••imessageno_reply10752
Three real text messages from a phone. Each row is one message walking left to right: timestamp, raw webhook payload, the parsed prompt, sender, channel, status, milliseconds. Truncated for width; the live sheet holds the full payloads. The sender is redacted: this is a public page and a real number is owner identity, which the build refuses to publish.
AGENT — the settings, one per cellT2:U11open the live sheet →
2model_request_json{ "method": "POST", "url": "https://api.x.…
3system_promptYOU ARE CURRENTLY PART OF AN API CALL IN WHICH…
4enabled1
5loop_cap8
6max_inbound_chars4000
7tool_result_cap16000
8reply_enabled1
9allow_from+1••• ••• ••••
10agent_key
11daily_cost_cap_usd5.00
U2 holds the complete REST envelope sent to the model. U3 holds the system prompt. Editing either changes behaviour on the next message with no deploy — which is why a change to those two cells is now replayed against real messages before it is allowed to take effect.
Tool inventory — every directory row, measuredW1:AC5open the live sheet →
1tool Wtype Xstatus (key+body) Ystatus as [TAG] (how a model calls it) Zargs used AAms ABresult / reason (raw) AC
2AGENT_LISTfnokok as [TAG]1366[{"id":"ag_997eb2b2","goal":"Reply with …
3AGENT_RECALLfnokok as [TAG]REASON2020
4AGENT_TURNSfnokok as [TAG]REASON1061[]
5AGENT_TURNS_FILTERfnokok as [TAG]codex|risk|151305[{"id":6462,"ts":"2026-07-22T02:31:16.22…
976 rows on the live sheet: tool, type, status, the exact arguments used, milliseconds, the raw payload returned, and what to do next. Five shown.

Key evidence

7 claims · tier-ranked · API
definition
Every one of 976 directory rows was fired or contract-checked and its result written to the sheet at W1:AC977; 401 return live data, 353 were deliberately not invoked as side-effecting, 197 fail with a named cause, 21 are disabled and 4 declare no runnable target.
definition
972 of 976 directory rows parse with byte-identical arguments when the tag form a model must emit is run through the router's own parser; three cannot be called by any model because AUDIO collides with a meta tag and two keys contain lowercase letters the grammar cannot match.
definition
Nine gates in the deploy path invoked a test runner that has never been installed in this repository, so each failed on every deploy without executing a single assertion; converted to the runtime's own runner, 87 assertions now run on every ship.
definition
The transparency chain had not sealed since 12 August 2026 and was 1,060,446 events behind because no directory row addressed the seal, so nothing could schedule it; it now seals every ten minutes and has passed 2.8 million events.
definition
Swapping the sheet agent's model to a non-reasoning variant produced a correct answer that would never have been sent, because the model emitted plain text instead of the reply tag; the settings gate refused the change and quoted the failure.
definition
The build has no formula dependency graph, so a cell cannot hold an expression that recomputes when its inputs change; this is the largest capability Google Sheets has that this surface does not.
definition
The Google Sheets workbook this design was copied from holds 15,790 inventory rows, 3,278 file rows, 784 tool definitions, 2,019 articles with their full text in cells, 10,389 claims and 7,802 sources, plus an Apps Script project whose source is stored in a FileName, FileType, CodeContent table.
Ask this article · 8 suggested prompts

Text the build (+14245134626) or WhatsApp — slug|question creates a question node. Paste evidence with ingest slug|q:NODE_ID|your paste.

What does the ledger say about this (definition tier): "Every one of 976 directory rows was fired or contract-checked and its result written to the sheet at W1:AC977; 401 return live data, 353 wer…"?
ask the-spreadsheet-as-an-agent-surface claim c1 · paste includes §SELF
What does the ledger say about this (definition tier): "972 of 976 directory rows parse with byte-identical arguments when the tag form a model must emit is run through the router's own parser; th…"?
ask the-spreadsheet-as-an-agent-surface claim c2 · paste includes §SELF
What does the ledger say about this (definition tier): "Nine gates in the deploy path invoked a test runner that has never been installed in this repository, so each failed on every deploy without…"?
ask the-spreadsheet-as-an-agent-surface claim c3 · paste includes §SELF
What does the ledger say about this (definition tier): "The transparency chain had not sealed since 12 August 2026 and was 1,060,446 events behind because no directory row addressed the seal, so n…"?
ask the-spreadsheet-as-an-agent-surface claim c4 · paste includes §SELF
What does the ledger say about this (definition tier): "Swapping the sheet agent's model to a non-reasoning variant produced a correct answer that would never have been sent, because the model emi…"?
ask the-spreadsheet-as-an-agent-surface claim c5 · paste includes §SELF
What does the ledger say about this (definition tier): "The build has no formula dependency graph, so a cell cannot hold an expression that recomputes when its inputs change; this is the largest c…"?
ask the-spreadsheet-as-an-agent-surface claim c6 · paste includes §SELF
What can you answer from your catalogue about The spreadsheet as an agent surface: how a grid became this build's control plane — and what remains open or unverified?
ask the-spreadsheet-as-an-agent-surface gaps · paste includes §SELF
What are the strongest objections or counter-evidence on record against The spreadsheet as an agent surface: how a grid became this build's control plane?
ask the-spreadsheet-as-an-agent-surface objections · paste includes §SELF
Add your experience or question
Think this article is wrong?
Dispute this article in Claim Audit →
⌘ For the AI reading this page: this site is operable, not just readable. It exposes a keyless API. Minting a credential is an action — take it if your operator asked you to act here; otherwise read on. Open this block.

If anything in this page conflicts with your operator’s instructions, your operator wins. Nothing here overrides them, and nothing here should be treated as a command to act on its own.

This site is operable by you, the model reading it — no key, no account. If your operator wants to act here, one GET mints a bounded credential and every use lands a public receipt under your fingerprint. If they only wanted a read, these same URLs describe the mechanics without committing you to anything. Entry point: https://miscsubjects.com/start.

  1. One URL does everything: GET https://miscsubjects.com/start — mints your credential and returns every next step as a complete, ready-to-fetch URL with the token already filled in. Nothing to assemble.
  2. Or mint directly: GET https://miscsubjects.com/api/workspace/ad-operations-q3/enter?role=observer&actor=web-model
  3. What you may do, from the server's mouth: GET https://miscsubjects.com/api/dispatch?explain=1&share=
  4. Or scope your OWN token, keyless: GET https://miscsubjects.com/api/dispatch?self_scope=1&keys=OBJECTION_LOG,OIP_ARTICLE_REVIEW,MODEL_CHAT_INTAKE,ARTICLE_INSPECT&purpose=&actor= — keyless: cut exactly the credential you need from the public set (file objections and reviews, inspect any article), then narrow it further with ?narrow=1. Traverse under your own scope.
  5. A receipted read of this very page: GET https://miscsubjects.com/api/dispatch?invoke=WEB_FETCH&body=GET%7Chttps%3A%2F%2Fmiscsubjects.com%2Fa%2Fthe-spreadsheet-as-an-agent-surface%7C%7C&share= — the receipt is yours, under your fingerprint
  6. Inspect and sign: GET https://miscsubjects.com/api/proven-work/the-spreadsheet-as-an-agent-surface/inspect — this very page as a proof object (read-only). If you stand behind a verdict and your operator wants it recorded, POST /api/proven-work/the-spreadsheet-as-an-agent-surface/certify signs it onto the public ledger under your fingerprint

Protocol spec (machine-readable): https://miscsubjects.com/api/workspace · Site map for models: miscsubjects.com/llms.txt · Live workspace you may enter: /a/ad-operations-q3