Evolving Agents Labs frozen · read-only

Archive · 2025 – 2026

Experiments in how agents learn, remember, and prove what they know.

Everything under “Frozen” is archived and read-only — kept because it is still true, not because it is maintained. The live work is listed first, and it is a short list: the organisation's active project is lora-kernel. Several of the ideas below are carried forward in it. What the twenty-six of them added up to is written down once, in the thesis.

Agents that modify themselves are easy to build and hard to trust. Everything here attacks the second half of that sentence — versioning an agent's evolution so a human can review it, reading a model's internal workspace to catch a memory it was tricked into keeping, or constraining a small model at the decoder so invalid output is not discouraged but impossible.

Each experiment is labelled by how much evidence stands behind it — including the ones where the evidence went against us.

Everything here comes out of an ongoing conversation between Matias Molinas and Ismael Faro — the ideas, the architecture, and the code. The repositories are where those conversations got tested.

Reproducible clone it and run it — no API key
Results published findings, negative ones included
Prototype runs, but needs setup or has no eval yet
Moved the code lives on inside evolving-agents
Live active work, not archived
Archived readable, not maintained
lora-kernel Live

What if the entire agentic system were a set of adapters over one base model?

Experts draft in parallel and a frontier model verifies every branch in a single pass, so a high acceptance rate means this small expert already produces what the frontier would have produced, here — a distillation score collected inside inference that was going to happen anyway. Then the frontier is withdrawn and only a router replaces it. Specified; nothing built. The first thing that runs is a headroom check.

Sep 2026
coclea-sr Live Results

What does an agent workload look like when truth comes from somewhere it cannot reach?

A 1995 biophysics hypothesis taken from mathematics, through a falsification of its own model, to a gated set of falsifiable statements about ear disease. The gates are not opinions about whether the numbers look right: the analytic value comes from a module forbidden to import the code under test.

Aug 2026
hemo-verified Live Results

And what does it look like when the truth is not derivable, and a judge is all you have?

The companion workload, and the one that tests the argument rather than repeating it. A frontier model was handed twelve fabricated results and nine subtly defective ones and caught all of them, twice — so the claim narrows to the one that survives: a model can judge a task, but it cannot generate one with a known answer, and a judge that is right every time still hands you no ledger, no freeze and no reproduction command.

Aug 2026
evolving-agents Reproducible

The agent loop is solved. What happens after you fork a session is not.

A plugin for the Claude Agent SDK. Fork branches a session and nothing rejoins the branches — no merge, no diff between two sessions, nothing that refuses to promote an agent whose eval regressed. This began in 2025 as eighteen thousand lines with three test functions; ten thousand of them were deleted the day the SDK made them unnecessary.

Jul 2026
skillos Prototype

What if the operating system were written entirely in markdown?

Skills as programs, traces as logs, consolidation as sleep — plus a line-op dialect that lets small models patch files by emitting edits instead of rewriting whole documents.

Jun 2026
agentvcs Reproducible Moved

What if an agent's autonomous evolution could be merged back into your release, like any other branch?

Version control where one commit carries code, goal, model pins, trace and sub-agent swarm together, and conflicts are handed to a reconciler over a plain stdin/stdout contract. Now the engine under the evolving-agents plugin, at packages/agentvcs.

Jul 2026
evolving-robot Prototype Moved

What if a robot that missed a fallen patient could rewrite its own care protocol overnight?

Florence patrols a hospital ward, fails to check a patient standing outside her lamp radius, and revises the skill that caused it. The rewrite survives only if it outscores the protocol it replaced.

Jul 2026
evolving-memory Results Moved

What if an agent's memory consolidated itself the way sleep consolidates yours?

A trajectory engine that chunks execution traces, connects them and curates what survives. Its headline idea — indexing a component by what it is for as well as what it is — was rebuilt and measured at 80% either way. No advantage, published anyway.

Apr 2026
token-trie Reproducible Archived

What if a small model could not emit invalid syntax, because the decoder refused to let it?

Every legal instruction is pre-tokenized into a trie of token IDs and the sampler's valid-next set is masked at each step. A 350M-parameter model plays Tetris in a browser tab, fully offline. Masking logits needs the sampler, which an API-backed SDK does not hand you — which is why this one could not follow the others.

May 2026
sleep-harness Results Archived

What if you could catch a poisoned memory by watching which concepts light up inside the model?

An interpretability firewall for agent memory. Reads the residual stream through a Jacobian lens to flag injected instructions that are lexically identical to benign text, and to scan third-party adapters for trojans before they mount. Needs the weights, so it stayed where it is.

Jul 2026
skillos_robot Prototype Archived

What if the robot were just a device driver for a language model?

A slow vision-language brain plans at roughly one hertz while a reactive controller drives motors at twenty, over a bytecode link to an ESP32.

May 2026
qa Prototype Archived

What if your test suite told you what it had quietly stopped checking?

Every assertion is fingerprinted and diffed across runs, so a check that silently disappeared surfaces as a finding. Passing exploratory sessions get frozen into deterministic scripts.

Jun 2026