A method demo
The method, written as a short deck. The operating layer is Cursor.
One open thread grows into a multi-session system: work lanes, system surfaces, task home folders and schemas that hold their own memory.
The problem
A long-lived agent re-sends its whole growing context on every turn, so input tokens climb worse than linearly, and a cold session re-reads the thread before it does any work.
This method closes the gap by giving the work a structure on disk that holds its own memory, so a run resumes from recorded state.
The shape
Concept · lanes and actors
Lane. A team that owns one kind of work such as research, data pipelines, modeling, writing or packaging. It runs a lead actor and spawns supporting actors as the work compounds.
Actor. A worker inside a lane, named by the lane letter and an instance number, so lane one runs A1 and A2 and lane two runs B1 and B2.
Concept · orchestration
00 is the central orchestrator. It routes work and reconciles state, and leaves execution to the lanes. Each lane has a local orchestrator, 01 through 016, that records step state for its actors and relays verified summaries up to 00.
Step 3
Give every file a surface class with one job, so a reader knows from the path alone what to trust.
Authoritative contracts and decisions.
Derived artifacts and analysis outputs.
Day logs and narrative.
Current system state.
Steps 4 and 5
Task home. One folder inside a lane named yyyymmdd_slug, carrying a manifest, a readme, a step log and handoff notes. A session opens the task home and hydrates from it.
Two schemas. The catalogue schema defines the lanes and the folder rules. The work-home schema defines what every task folder must contain.
Step 6
A checkpoint is a recorded state change in what a lane knows, can do, is blocked by or is allowed to write.
The types cover hydration, pre-write inventory, worker reports, gate transitions, blockers, handoffs, commits and authority changes.
Steps 7 and 8
Local and cloud boundary. The memory and audit layer stays local. Production work such as formatting, packaging and cross-repository assembly can be delegated to cloud agents.
Handoff. When work moves between lanes or sessions, the contract is written in the task home, so the next agent takes over with the context intact.
What this buys you
A session that starts weeks later opens the relevant task home, reads the recent checkpoints and continues with the thread intact.
In practice · the catalogue
The ID is the lane's local orchestrator, 01 through 016, under the central 00. Actors take the lane letter plus an instance number.
| ID | Letter | Lane |
|---|---|---|
| O1 | A | Authority / System / Excavation / Validation |
| O2 | B | Research / Analysis / Experimental Lab |
| O4 | D | UX / Documentation |
| O8 | H | Topological Modeling |
| O12 | L | Product Alignment |
| O16 | P | Publication / Exploratory Findings Manuscript |
In practice · aimez.ai
| Lane | Actors | What it carried |
|---|---|---|
| O1 Authority | A1, A2 | trace reconstruction and excavation lineage behind the figures |
| O2 Research | B1, B2 | the evidence closure lane and the figure-data chain |
| O16 Publication | R16, P1, P2 | the exploratory findings manuscript chain |
| O4 to O12 | site lanes | the aimez.ai site, the routing demo and program alignment |
Some lanes are live and some are cast and held.
Honest scope
The checkpoint discipline reduces context loss, and it depends on care. A change in one lane reaches another when it is carried there on purpose.
Naming the limit is part of the practice.
Read more
The full method in prose, plus the worked program and the cost story.
Arrow keys or space to move