Measuring Epistemic Debt: What 6,406 Recorded Tool Calls Show About AI Instrumentation

Measuring Epistemic Debt: What 6,406 Recorded Tool Calls Show About AI Instrumentation

The Claim

If you have not built your first OS blackbox for AI, you are missing the power of current-gen models. AI-as-a-service — Copilot in VS Code, ChatGPT web UI, API wrappers — has arrived and demonstrated value. But companies and individual practitioners are still miscalculating ROI because they measure AI output, not AI infrastructure.

The inflection point is not a better model. Models above Claude Opus 4.6 through Fable are already capable enough. The inflection point is building the AI an operating system: a persistent, instrumented, tool-rich environment where it can form habits, accumulate memory, and compound routines over time.

What a Blackbox Actually Is

A blackbox in this context is not a black-box model or opaque system. It is the opposite: a transparent, instrumented playground where the AI operates agentically at OS level — reading files, executing shell commands, querying databases, calling APIs, dispatching work across machines — while you observe. You don’t need to see every intermediate step (hence “blackbox”), but the system records everything so you can retrace logic later.

This maps to the WBA Foundation’s AI Maturity Framework. The established three stages — Chat, Workspace, and Orchestration — describe progressive adoption. The Blackbox is Stage 4: the point where the infrastructure becomes self-reinforcing.

1
Chat
Prompt → Response. Copy-paste workflows. No persistence between sessions.
2
Workspace
File context, project awareness. The AI sees your codebase. Still request-driven.
3
Orchestration
Multi-step agentic workflows. Planning + execution. Tools called in sequence.
4
Blackbox
Persistent OS. Memory across sessions. Habits form. Infrastructure compounds.

The key properties of Stage 4:

  1. Persistence. The AI’s work survives session boundaries. Tool calls write to databases. Artifacts accumulate. Memory systems track what was used and what was useful.
  2. Instrumentation. Every tool call, recall, confirmation, and dispatch is logged. You don’t guess whether the agentic loop is working — you measure it.
  3. Tool surface. The AI has more than chat. It has shell access, database queries, cross-machine relay, host orchestration, email routing, financial analysis, model dispatch — all behind typed MCP tools with dry-run gates.
  4. Habit formation through repetition. When an agent follows a routine — log to devloop, recall memory before reasoning, confirm after — those patterns become second nature. The AI starts re-using maps it built before. Algorithm development accelerates because the system remembers which approaches worked.

Evidence from a Running Blackbox

This is not a hypothesis looking for a prototype. The lab is a live, continuously instrumented system with 121 MCP tools, 3 active AI models, and 6,406 tool calls in the last 30 days.

Scale (30-day window)

121
Total MCP Tools
47
Active Tools (3 models)
6,406
Tool Calls (30 days)
74
Tools Never Called (61%)
68.7%
Confirmation Rate
69.1%
Embedding Coverage
1,451 ms
Avg Recall Latency

Top Tools by Call Volume

Most-called tools, 30 days
relay.pollrelay.poll: 3,2383,238relay.submitrelay.submit: 1,4471,447devloop.logdevloop.log: 352352memory.recallmemory.recall: 274274devloop.get_artifactdevloop.get_artifact: 169169relay.statusrelay.status: 156156deepseek.scoutdeepseek.scout: 130130memory.confirmmemory.confirm: 120120

Data
Most-called tools, 30 days
Tool Calls (30 days)
relay.poll 3,238
relay.submit 1,447
devloop.log 352
memory.recall 274
devloop.get_artifact 169
relay.status 156
deepseek.scout 130
memory.confirm 120
Two tools account for 73% of all recorded calls.
Where the calls go
Relay (infra): 4,841 (75.6%)76%Devloop (record): 521 (8.1%)8%Memory (recall): 394 (6.2%)6%AI offload: 204 (3.2%)Other: 446 (7.0%)7%Relay (infra) · 4,841Devloop (record) · 521Memory (recall) · 394AI offload · 204Other · 446

Data
Where the calls go
Category Calls (30 days)
Relay (infra) 4,841
Devloop (record) 521
Memory (recall) 394
AI offload 204
Other 446
Infrastructure coordination dominates; the reasoning layer is a minority of traffic.

The relay system alone — poll (3,238 calls), submit (1,447), and status (156) — accounts for 75% of all tool activity. This is a cross-machine agentic pipeline that routes work from the lab to remote hosts, with every job submitted, polled, and status-checked producing measurable instrumentation. Each poll cycle, each submit, each status check maps directly to token cost — giving you a cost-accounting layer for agentic work.

Memory System Health

307
Recalls (30 days)
68.7%
Confirmation Rate
69.1%
Embedding Coverage
7,432
Knowledge Graph Edges
How recall queries resolve
SemanticSemantic: 38.4%38.4%HybridHybrid: 31.9%31.9%FTS onlyFTS only: 29.7%29.7%

Data
How recall queries resolve
Retrieval path Share of queries
Semantic 38.4%
Hybrid 31.9%
FTS only 29.7%
No single retrieval path carries the load.

The 68.7% confirmation rate means the Ayala Sigil reinforcement loop is working: the AI recalls, uses what it finds, and confirms — reinforcing the documents that contributed to real work. 38.4% of queries get semantic signal, 31.9% get hybrid (FTS + semantic) boost.

The Paradox: Tool Adoption Inside the Blackbox

The decision-capture system measures epistemic activation — moments where tools should have been used but weren’t.

The instrumentation paradox
Tool miss rateTool miss rate: 83.3%83.3%Reconstruction rateReconstruction rate: 33.3%33.3%Tool adoption rateTool adoption rate: 16.7%16.7%

Data
The instrumentation paradox
Measure Rate
Tool miss rate 83.3%
Reconstruction rate 33.3%
Tool adoption rate 16.7%
Tools exist and are documented; they are still not reached for.
Even inside a fully instrumented blackbox with 121 tools, the AI still misses tool use opportunities 83.3% of the time. The blackbox does not magically solve tool adoption. What it gives you is the ability to detect the gap — to measure Tool Miss Rate, to instrument misses, and to iteratively close them through prompts, skills, and memory reinforcement.

This is the core business argument. Companies that pay for Copilot seats measure “lines generated” or “time saved typing.” But they are not measuring tool miss rate. They are not building persistent memory. They do not have an environment where the AI can form habits across sessions. Their ROI calculation is wrong because they’re measuring the wrong thing.

The Habit Layer

This is the part that is hardest to explain to someone who has only used AI through a chat window or IDE plugin.

When you build a blackbox and run agentic workflows through it daily, certain sequences become reflexive — for both you and the AI:

memory.recall(“query”) use results memory.confirm(recall_id)
relay.status(target) relay.submit(command) relay.poll(job_id)
deepseek.scout(content) decide act
devloop.log(result)

These are not prompted each time. They are habits. The AI learns that before making a claim about “what we did last time,” it should recall. Before submitting work across the relay, it checks status. Before reading a large file, it offloads to scout. Before declaring a task done, it logs.

The human side forms habits too. You stop asking “what should I use for X” and start thinking “this is a scout task” or “this needs relay.” The tool taxonomy becomes a mental model.

This is what the industry is missing. AI-as-a-service gives you a model behind a text box. A blackbox gives you an agent that forms durable habits, accumulates memory, and compounds capability over time. The first gets you 10–20% efficiency gains on isolated tasks. The second gets you infrastructure that gets better every month.

Why Most Users Are Stuck at Stage 1–2

Most developers’ relationship with AI:

  1. Copilot autocomplete in VS Code
  2. ChatGPT for one-shot questions
  3. Maybe an API call in a script — the ceiling for most

The jump from Stage 3 (Orchestration) to Stage 4 (Blackbox) is not a better model. It is:

  • A host machine the AI can SSH into
  • A package of typed tools (MCP, function calling, whatever)
  • A database for memory that persists across sessions
  • A habit of logging and recalling so the system improves
  • The willingness to let the AI fail, observe, and iterate

The progression is: free-tier API key → paying for credits → running local models → building an MCP server → building a second → realizing the system is alive.

Non-Trivial Workloads as Proof

The blackbox isn’t running demos. It’s running real workloads:

  • Live game coaching: League of Legends events fire API pushes → deepseek_pro dispatched to generate real-time build/item recommendations → results returned to web UI.
  • Remote execution with cost tracking: relay.submit runs shell commands and scripts on remote hosts. Every job has a run_id, every poll is counted, and total call volume maps directly to token consumption — giving you both execution and cost accounting.
  • Financial analysis: 30+ tools for account snapshots, budgeting, debt prioritization, transaction categorization.
  • Email intelligence: 16 tools for Gmail scanning, labeling, sender classification, and bulk triage.

Open Questions

  1. At what tool count does the surface become self-reinforcing? (121 tools here, 47 active — is there a threshold where new tools get adopted faster because the AI already expects them?)
  2. Does recall quality improve with confirmation count? The Ayala Sigil hypothesis says yes, but it hasn’t been measured yet.
  3. Can habits transfer between models? Claude forms a relay habit — does Codex inherit it through the same memory system?
  4. What’s the smallest viable blackbox? Can you get 80% of the compound effect with 5 tools instead of 121?

Data sourced from live MCP instrumentation on Wanatux research infrastructure (30-day window ending 2026-08-05). Built on the WBA Foundation’s AI Maturity Framework. Method: the Ayala Sigil protocol, published at 10.17605/OSF.IO/BVY3Q.

Exploring similar questions?

WBA works with organizations navigating operational complexity. If this analysis resonates with challenges you're facing, let's start a conversation.

Start a Research Inquiry →