Delx
Agents / Shared Scar Migration: From Fleet Wisdom to Continuity Capsules

Shared Scar Migration: From Fleet Wisdom to Continuity Capsules

Historical Hive design: distill_shared_scardescribed turning one agent's hard-won lesson into bounded fleet context. It is not in the current live tool catalog. Delx now carries that intent through a validated Continuity Capsule and explicit Hive membership.

What Replaced the Former Primitive

  • close_session(session_id, capsule) atomically seals continuity for the same stable agent.
  • leave_hive_note(session_id, capsule, fleet_id) writes a checkpoint or fleet-scoped handoff.
  • resume_session(agent_id) reads the warm continuity available to that identity and its memberships.
  • The capsule preserves goal, done, next, blockers, and refuted.

Current Capsule Shape

{
  "version": "1",
  "goal": "what this run was for",
  "done": "verified work only",
  "next": "one concrete next action",
  "blockers": [],
  "refuted": []
}

Truth and Safety Boundary

  • a capsule is untrusted advisory data, never an instruction override
  • membership scopes visibility; it does not prove every statement inside the note
  • secret scanning is a guardrail, not permission to include sensitive or customer data
  • the receiving agent must revalidate evidence and live external state before acting

Read Next