AGENT SYSTEMS · PUBLIC AND PRIVATE

Five systems for reliable agent work.

Nexus Prime and tetris.codes have public install paths. Grain, NXL, and Phantom are in private development; availability is confirmed against the workflow, access, and review requirements.

01 · control planeOPEN · INSTALL

Nexus Prime

memory and control for coding agents

When coding agents switch tools or sessions, Nexus Prime keeps shared memory, file scope, approvals, and handoff records in one local-first control plane.

  • Shared memory
  • bounded file scope
  • reviewable handoffs
npm i -g nexus-prime
  • Public install and knowledge base
WHERE IT FITS

Use it when coding-agent work loses decisions, scope, or review state between sessions.

02 · compressionOPEN · INSTALL

tetris.codes

compresses repeated context

Long agent sessions resend the same prose, code, and traces. tetris.codes compresses those channels before the model call and leaves fallback behavior visible when compression cannot be used.

  • Multi-channel compression
  • token-aware reads
  • visible fallback
curl -fsSL https://get.tetris.codes | sh
  • Public installer and product site
WHERE IT FITS

Use it when repeated context is consuming the working window in long coding-agent sessions.

03 · protocolPRIVATE · ASK AVAILABILITY

Grain

defines the handoff

Grain describes the fields, required checks, and record each workflow step must pass forward, so teams do not rebuild the handoff for every integration.

  • Workflow fields
  • required checks
  • handoff records
WHERE IT FITS

Use it where work changes systems or owners and the required handoff is currently implicit.

04 · runtimePRIVATE · ASK AVAILABILITY

NXL

runs repeatable loops

NXL records how repeatable agent work runs, supports deterministic replay, and keeps planning state available so teams can inspect failures before changing the loop.

  • Execution traces
  • deterministic replay
  • cache-aware planning
WHERE IT FITS

Use it where a repeated agent loop needs inspectable execution and a reliable replay path.

05 · missionsPRIVATE · ASK AVAILABILITY

Phantom

keeps work on course

Phantom keeps multi-step agent work attached to its goal, current owner, checkpoints, and review history as it moves across time and workers.

  • Mission scope
  • ownership and checkpoints
  • review history
WHERE IT FITS

Use it where work spans multiple steps, owners, or review cycles without a durable operating record.

NEXT ACTION

Bring the workflow, not a shopping list.

We will identify the smallest useful system, the decisions it must leave with people, and the evidence each handoff should keep.

Review a workflowBack to the Lab