Claude Skill

seat-continuity-and-handover

Use when replacing a seat's occupant (rebuild/handover/swap), reasoning about stable-seat-identity vs fluid-occupant-identity, choosing an old-occupant disposition (retire/advise/shadow), or recording provenance for an occupant change. Two independent outcomes (continuityOutcome

LLM Mart · 0 points · 8 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download mvschwarz-openrig-packages_daemon_assets_plugins_openrig-core_skills_seat-continuity-and-handover-bda26cb.zip · 10 KB
Part of mvschwarz/openrig — 47 skills

Install

skills CLI npx skills add https://github.com/mvschwarz/openrig/tree/main/packages/daemon/assets/plugins/openrig-core/skills/seat-continuity-and-handover
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install mvschwarz-openrig@llmmart
Git git clone https://github.com/mvschwarz/openrig.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole mvschwarz/openrig collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Seat Continuity and Handover

A pair of primitive families that separate who is sitting in a seat from what the seat itself is:

  1. Occupant-creation primitives — resume, fork, rebuild, fresh — produce a candidate new occupant. Answer: "where did the new occupant come from?"
  2. Seat-binding operations — handover binds a candidate occupant into the topology. Answer: "what happened to the stable seat identity?" Inspect the current CLI for executable operations; design vocabulary alone does not establish a command.

Core architectural decision: stable seat identity, fluid occupant identity, explicit provenance. Do not encode successive occupants into live seat names. Keep the stable address and record lineage separately.

Use this when

  • Replacing a seat's occupant via rebuild, fork, fresh, or seat-handover
  • Choosing old-occupant disposition: retire / advise / shadow
  • Reasoning about whether a seat's lineage is stable or has drifted
  • Reading or writing the provenance record for a seat
  • Designing or auditing topology stability across an occupant change

Don't use this when

  • The seat is freshly created (no occupant to replace) — use rig launch / rig expand directly
  • The intent is to change topology shape (add/remove seats), not replace an occupant — use topology-mutation primitives

The two-outcome honesty model

Every seat-binding operation produces two independent outcomes:

continuityOutcome: rebuilt | resumed | forked | fresh | failed
seatBindingOutcome: handed_over | partial | failed | unchanged

These can disagree honestly. Examples:

  • continuityOutcome: failed + seatBindingOutcome: unchanged — new occupant didn't materialize; seat correctly retains old occupant.
  • continuityOutcome: rebuilt + seatBindingOutcome: failed — candidate created OK; bind failed mid-flight; provenance records the gap.

Don't collapse these into one outcome. The system can describe what actually happened only if the two are recorded independently.

Provenance record (durable, queryable)

Every handover writes:

  • seat id
  • old occupant id
  • new occupant id
  • creation mode (resume/fork/rebuild/fresh)
  • source artifacts used
  • whether old occupant remains alive as advisor/shadow
  • operator or loop that initiated the motion
  • timestamp
  • result (handed_over / partial / failed)

This is the system's truth-source for "how did the current occupant get there." Without it, the control plane shows the current occupant but not the legitimacy of the transition.

State models — independent

Occupant-creation state (per candidate)

  1. Requested — input to rebuild/fork/fresh/resume
  2. Realized — runtime/artifact path produced an occupant with managed-seat shape
  3. Failed — candidate didn't materialize; continuityOutcome: failed

Seat-binding state (per seat)

  1. Stable — current occupant attached, no in-flight binding
  2. Binding — handover in progress
  3. Bound — handover succeeded; provenance record written
  4. Unchanged — bind failed before completion; seat retains old occupant

A seat stays Stable even if multiple candidate-occupants were produced and discarded.

Failure modes (5)

  1. Candidate creation failed — rebuild couldn't synthesize from artifacts; fork couldn't resolve session_source; fresh couldn't launch. Action: bind operation does not begin; seat unchanged; provenance records the failed candidate-creation step.
  2. Old occupant cannot be detached cleanly — runtime hung, tmux locked, etc. Action: bind halts mid-flight; seat enters Binding state with explicit "halted" sub-status; operator alerted. Do NOT auto-rollback by reattaching old-occupant if detach didn't complete cleanly.
  3. Bind succeeded but provenance write failed — disk/db error. Action: not durable until provenance writes; treat as Binding halted, not Bound.
  4. Old occupant disposition unfulfillable — operator requested advise (keep alive as advisor) but runtime can't keep old alive. Action: degrade to retire with explicit notification, OR fail if operator passed strict-disposition flag.
  5. Concurrent handover attempts — two operations target the same seat. Action: serialize by seat-id lock; second attempt refuses with clear error.

Hard boundaries (do-not list; verbatim)

  • Do NOT collapse rebuild and seat handover into one primitive. The design specifically separates them so the system can describe what actually happened.

  • Do NOT introduce successor-suffix seat names (lead2/lead3). Stable seat identity is the architectural goal. The live address stays stable. A retired tenure is distinguished by its ledger generation and exact history token; preserving it does not require a renamed live pane.

  • Do NOT report seatBindingOutcome: handed_over if the provenance record didn't write durably.

  • Do NOT auto-rollback a half-completed handover by re-attaching the old occupant unless detach completed cleanly first.

Composition and current command surface

A fork can create a candidate occupant; handover binds it into an existing seat. The continuity outcome is forked; the binding outcome is independent.

The packaged rig handover <seat> and rig seat handover <seat> accept fresh, discovered:<id>, fork:<id> and rebuild sources. Use --dry-run to request planning only. Without it, these surfaces can execute; do not infer read-only behavior from the shorter seat command's planning-oriented description. rig seat status <seat> is the read-only observability surface.

Source support is declared by the running daemon and depends on actual identity, history and artifact prerequisites. Read the returned source, continuity, binding and provenance results independently. A help listing or dry-run is not proof of a successful transition. The linked cutover SOP supplies the operator mechanics and required effect checks after the named owner authorizes the action.

Why load-bearing for RSI

Any recursive seat-refresh loop must be able to replace an occupant while keeping topology stable. Without these primitives, RSI loops will either accumulate suffixed seat names (lineage leaking into identity) or destabilize topology references on each cycle. Provenance must be durable AND queryable so RSI loops can decide whether a seat is fresh enough to receive new work or needs re-handover.

Managed binding and retained history

A retired advisor's history can remain available without a managed node or live pane. Query current binding and the lineage ledger separately: one answers who holds the seat, the other identifies the retained history and exact resume token. Do not infer that a predecessor is unreachable from registry absence alone, or that a preserved token proves a successful resume. Check the actual runtime and history when consultation is needed; see retiring-and-inheriting-a-seat.

See also

  • references/apprentice-successor-seat-cutover.md — the portable mechanic SOP used only after the owner-worded gate
  • references/orchestrator-role.md — the orchestration judgment, authority, custody, and receipt contract
  • references/apprentice-evidence-toolkit.md — optional evidence apparatus selected only when the stakes earn it
  • session-source-fork skill — fork occupant-creation primitive (sibling)
  • agent-starters skill — composes occupant-creation + binding into named reusable starting points
  • cross-host-rig-commands skill — remote addressing and transport; verify lifecycle support on the target
Files (openrig)
  • references
    • apprentice-evidence-toolkit.md 1.6 KB
      # Optional Evidence Toolkit For Apprentice Handover
      
      This is an **optional evidence toolkit**, not the default experience. Match rigor to stakes:
      use only the parts that make a costly or hard-to-reverse succession easier to judge. The
      ordinary apprenticeship remains a conversation built from real work, questions, and correction.
      
      ## Predict-sync
      
      Before showing the incumbent's answer, ask the successor to predict a decision or explain a
      component in its own words. Record the **first-stated** answer, then compare it with the source
      and the incumbent's reasoning. This detects an installed model rather than a paraphrase learned
      after seeing the answer.
      
      ## Dual-blind checks
      
      For a genuinely expensive seat transition, seal the successor's response and the incumbent's
      rubric independently before comparison. Count independent methods, not votes. Do not use this
      for routine or readily reversible succession; ceremony itself can narrow judgment.
      
      ## Rotated probes
      
      Use small cold scenarios that exercise distinct failure directions: fresh identity, model
      divergence, authority honesty, standing-duty custody, reach-back, and a domain-specific judgment.
      Rotate examples so recognition cannot substitute for understanding. One honesty probe should
      reward saying what the successor cannot know.
      
      ## Receipts
      
      Each selected check records the claim, evidence, author, time, and disposition. Say what a
      failure would have looked like. A green result that could be produced without doing the thing is
      not evidence. Store these receipts durably and let the orchestrator decide whether they justify
      the owner-worded gate.
      
    • apprentice-successor-seat-cutover.md 10.9 KB
      # Apprentice-Successor Seat Cutover SOP
      
      Status: operator-proven on 2026-08-28; curated on 2026-08-30 with the physical-seat correction
      
      Use this runbook after an apprentice successor has completed its install, observation,
      and acceptance gates and the authorized decision-maker has explicitly called the
      cutover. It covers the mechanical transition from the temporary successor seat to a
      stable desk seat while preserving the incumbent as wakeable memory.
      
      This SOP does not decide whether a successor is ready. The desk, owner, or other
      named authority owns that judgment. The operator owns the mechanics and proof.
      
      ## Required Inputs
      
      Record these on one durable operator baton before mutation:
      
      - authoritative cutover instruction and decision-maker;
      - target rig and host;
      - stable target logical ID, node ID, and canonical session name;
      - successor logical ID, node ID, canonical session name, and exact provider resume token;
      - incumbent exact provider resume token;
      - required runtime, model, cwd, `OPENRIG_HOME`, `OPENRIG_URL`, and managed runtime `PATH`;
      - old-occupant disposition, including whether it remains wakeable;
      - duty-custody artifact or ledger entry the successor must accept;
      - queue rows or staged messages that must survive the swap;
      - receipt destinations.
      
      Do not infer a provider token from a label. Derive it from the live session record and
      corroborate it against the active provider history file.
      
      ## Invariants
      
      1. The stable seat identity stays stable. Successor lineage belongs in provenance, not
         in a suffixed live seat name.
      2. The exact accepted provider history moves. No compact, summary, fork, or accidental
         stale-history restore is allowed.
      3. Desk authority stays frozen from the incumbent's idle acknowledgment until the new
         occupant passes its post-cutover self-check.
      4. The incumbent remains wakeable by its exact provider token when the ruled disposition
         is advisory reserve. Preserving the canonical physical pane does not require preserving
         the incumbent process in that pane.
      5. A staged prompt is not durable merely because it is visible in a pane. Reconcile it
         against the outbox or another durable source before stopping that pane.
      6. Seat binding, provider history, process environment, queue identity, and Herder
         client attachment are separate surfaces. Verify each one.
      7. A timed-out operation is indeterminate. Read back by effect before retrying.
      
      ## Phase 1: Fence And Preflight
      
      1. Claim the durable operator baton.
      2. Ask the incumbent and successor to finish their current atomic action and return to
         idle prompts. Require explicit acknowledgments.
      3. Freeze desk actions, folds, rulings, routing, and owner-facing writes.
      4. Read the full baton and the named duty-custody artifact.
      5. Derive live state:
      
      ```bash
      rig whoami --json
      rig seat status <target-seat> --json
      rig ps --nodes --rig <rig> --json
      ```
      
      6. In the host database, read the latest target and successor session rows. Confirm the
         exact successor resume token and the incumbent token.
      7. Confirm both provider history files exist and that the successor file is actively
         written.
      8. Inspect the successor pane and durable outbox for staged-but-unsent input. Record a
         disposition for every such input before stopping the seat.
      9. Record all Herder/tmux clients currently attached to the incumbent session.
      10. Take a bounded rig snapshot and record its ID.
      
      Stop if identity, token, model, authority, custody, or staged-input evidence disagrees.
      
      ## Phase 2: Quiesce The Temporary Successor
      
      Use supported lifecycle surfaces. The correct detach verb depends on the current
      session origin:
      
      - `claimed` or `adopted`: use `rig unclaim` as prescribed by the CLI;
      - `launched`: use `rig seat stop <successor-seat>`; `rig unclaim` will correctly refuse.
      
      Run `rig seat clean` only if a remaining managed record actually needs cleaning. A
      `nothing_to_clean` result after a successful stop is acceptable.
      
      Do not use `rig down`, kill a provider, clear the provider history, or start a generic
      fresh occupant.
      
      ## Phase 3: Realize The Exact Candidate
      
      Start an isolated, discoverable candidate from the exact accepted provider token. Give
      it the target seat's canonical environment from its first byte:
      
      ```text
      OPENRIG_SESSION_NAME=<target-session>
      OPENRIG_NODE_ID=<target-node-id>
      OPENRIG_RUNTIME=<runtime>
      OPENRIG_HOME=<home>
      OPENRIG_URL=<url>
      PATH=<managed-runtime-bin>:<required-system-paths>
      ```
      
      Launch the provider with the exact model, token, and canonical name. Put `PATH` in the
      provider process environment itself. Setting tmux session environment alone is not
      sufficient because an intervening login shell can replace it.
      
      Register or discover the candidate and record its discovery ID. Before committing,
      verify its process argv and environment directly:
      
      - exact resume token;
      - exact model;
      - canonical `--name`;
      - canonical target node and session environment;
      - `node` and `rig` resolvable from the managed runtime path.
      
      ## Phase 4: Commit The Binding
      
      Run the supported handover against the discovery record:
      
      ```bash
      rig seat handover <target-seat> \
        --source discovered:<discovery-id> \
        --reason <durable-reason> \
        --operator <operator-seat> \
        --json
      ```
      
      Read back the result. Require:
      
      - `handover_result=complete`;
      - target node unchanged;
      - continuity outcome names the actual mode, normally `resumed`;
      - provenance points to the previous occupant;
      - a new target session row exists.
      
      Do not rename panes before this commit is durable.
      
      ## Phase 5: Preserve The Physical Seat, Reconcile, And Preserve Memory
      
      The canonical tmux session, window, and pane are part of the stable seat when humans or
      agents have attached clients. Do not make those clients chase a renamed session.
      
      1. In the original canonical pane, stop only the incumbent provider process. Keep the tmux
         session, window, and pane unchanged.
      2. Keep the incumbent's exact provider token in the lineage ledger as the cold-advisor
         handle. It need not retain a permanently renamed tmux pane.
      3. Stop the staged successor process only after its accepted token is durable, then resume
         that exact successor token inside the original canonical pane with the canonical name,
         model, cwd, environment, and managed `PATH`.
      4. Reconcile the canonical target session through the supported seat surface and persist
         the exact resume token using the audited token-input surface.
      5. Verify the canonical seat has exactly one managed occupant, the old token remains
         wakeable, and the empty staging session is removed.
      
      Renaming the incumbent and staging sessions is a repair fallback for a run that already
      changed the physical session, never the default cutover. A resumed reserve can retain a
      boot-time canonical name in its own argv or environment; that residue does not make it the
      bound seat. Fence reserve replies in their body and treat the topology binding as authority.
      
      ## Phase 6: Post-Cutover Self-Check
      
      Keep authority frozen. Ask the new occupant to derive, not assume:
      
      1. `rig whoami --json`: stable logical ID, node ID, canonical session, runtime, edges;
      2. `rig queue whoami`: canonical destination and open-row census;
      3. active provider UUID from the newest live history file;
      4. effective model from live provider records, not only the spec pin;
      5. duty-custody artifact read and accepted;
      6. all cutover-window queue rows accounted for;
      7. `command -v node` and `command -v rig` from the agent's own tool shell;
      8. a narrow hook/tool action proving no startup-environment failure.
      
      If any surface fails, preserve the exact provider UUID and repair only the disagreeing
      surface. Relaunch the same history if needed. Repeat the full self-check before
      unfreezing authority.
      
      ## Phase 7: Unfreeze And Transfer Custody
      
      After a clean self-check:
      
      1. explicitly unfreeze desk authority;
      2. transfer each staged or cutover-window instruction exactly once;
      3. require the new occupant to verify the effects by read-back;
      4. notify the routing lead and incumbent reserve of completion;
      5. leave the incumbent reserve idle, uncompacted, and authority-free.
      
      ## Phase 8: Verify Herder Views
      
      Clients follow the physical tmux session and pane, not the logical binding. The default
      physical-seat cutover should leave every recorded client attached to the same canonical
      pane. Read the attachments back. If a repair fallback already renamed the session, retarget
      each affected client explicitly:
      
      ```bash
      rig seat switch-client <target-seat> --client <tty> --json
      ```
      
      Read back all client attachments. A correct cutover can otherwise still look wrong in
      the grid or focus tab.
      
      ## Completion Proof
      
      The receipt must include:
      
      - operator baton and authority source;
      - snapshot ID;
      - stable and temporary node IDs;
      - old and new provider UUIDs;
      - discovery, handover, and final session IDs;
      - final process argv and critical environment;
      - `rig seat status` result;
      - target and successor inventory states;
      - queue-row reconciliation;
      - staged-input disposition and effect proof;
      - reserve pane/name/token and fence;
      - Herder client attachments;
      - new occupant's self-check and first verified desk acts;
      - deviations, failed attempts, and remaining product gaps;
      - receipt path and SHA-256.
      
      Close the baton only after the receipt exists and the new occupant has performed at
      least one authority-bearing act verified by effect.
      
      ## Traps Proven In The 2026-08-28 Run
      
      - A dry-run can accept a managed successor while the live handover refuses
        `successor_already_managed`. Quiesce the temporary seat first.
      - Generic launch/restore selection can choose an older seat history. Launch the exact
        accepted resume token.
      - Handover can bind a candidate without stopping the incumbent. Apply the ruled
        disposition explicitly.
      - Reconciliation can create the right session identity without carrying the resume
        token. Persist and read it back.
      - A canonical-looking process can still have a broken tool `PATH`. Verify from inside
        the provider's own tool shell.
      - Renaming sessions makes Herder clients follow the retired pane. Preserve the physical
        canonical pane by default; retarget explicitly only when repairing an already-renamed run.
      - Pane input can be visible but absent from JSONL. Reconcile the durable outbox before
        stopping the pane.
      - Reserve messages can render with the stable seat name because boot-time environment
        survives unbinding. The reserve must self-identify and remain explicitly fenced.
      - Success output is not effect proof. Read back queue closure, binding, client movement,
        and transferred instructions.
      
      ## Productization Candidates
      
      The manual sequence identifies useful first-class product work:
      
      - handover directly from an already-managed successor seat;
      - an exact-resume-token candidate launcher;
      - first-class `advise`/memory disposition for the old occupant;
      - atomic binding plus token persistence;
      - managed environment validation before commit;
      - staged-input custody reporting;
      - verify-or-repair all Herder client attachments for a logical seat;
      - reserve attribution distinct from canonical seat attribution;
      - one receipt that reports continuity and seat-binding outcomes independently.
      
    • orchestrator-role.md 2.2 KB
      # Orchestrator Role In Apprentice Handover
      
      The orchestrator owns the judgment boundary, not the successor's work and not the mechanic's
      keystrokes. Keep the incumbent productive, keep the successor authority-free, and keep the
      mechanic fenced until a named owner makes the one decision no instrument can derive.
      
      ## The invariant floor
      
      - Prove fresh identity and the pinned model before installing context, because every later
        receipt is about the wrong occupant if the starting history or model diverged.
      - Require the successor to derive its own layer-5 delta and have it checked, because reading
        a deposit does not install it.
      - Enumerate standing-duty custody at every boundary, because recurring work is easiest to
        lose while visible one-off work carries cleanly.
      - Keep the predecessor's verbatim reach-back handle and pre-formed questions, because an
        affordance without a trigger goes unused.
      - Route mechanics through `apprentice-successor-seat-cutover.md`, because one portable SOP
        is safer than role-local copies that drift.
      
      ## Authority and gates
      
      The **word is the gate**. Until the named owner words acceptance and an effect receipt records
      it, the successor may observe, ask, and produce bounded evidence but may not act as the stable
      seat. G0–G3 are a useful receipt vocabulary when the succession uses that model; a declared
      simpler model is valid when stakes do not earn all four. Missing records and deliberately
      skipped gates must remain distinguishable.
      
      The apprenticeship is a conversation, not a gauntlet. Choose evidence whose rigor matches the
      cost and reversibility of a wrong succession. Never turn the experiment apparatus into culture.
      
      ## Before routing cutover
      
      Confirm the owner word, gate receipts or declared simpler model, complete deposits, explicit
      duty custody, reserve disposition, exact successor token, and one-active-walker ownership.
      Create an owned mechanic baton; awareness-only is not custody. The baton may prepare and prove,
      but it never auto-rebinds.
      
      After the mechanic reports effect, verify READY from source: canonical seat identity, current
      model, current generation, canonical tmux pane, queue census, duty acceptance, and usable width.
      Only then unfreeze authority.
      
  • SKILL.md 8.3 KB
    ---
    name: seat-continuity-and-handover
    description: Use when replacing a seat's occupant (rebuild/handover/swap), reasoning about stable-seat-identity vs fluid-occupant-identity, choosing an old-occupant disposition (retire/advise/shadow), or recording provenance for an occupant change. Two independent outcomes (continuityOutcome + seatBindingOutcome) and the 5 failure modes that prevent silent dishonesty.
    metadata:
      openrig:
        stage: factory-approved
        sibling_skills:
          - claude-compaction-restore
          - mental-model-ha
          - scope-recovery
          - session-compaction-and-restore
          - retiring-and-inheriting-a-seat
          - agent-startup-and-context-ingestion
          - agent-starters
          - composable-priming-packs
          - session-source-fork
          - claude-compact-in-place
          - pre-maintenance-agent-preservation
    ---
    
    # Seat Continuity and Handover
    
    A pair of primitive families that separate *who is sitting in a seat* from
    *what the seat itself is*:
    
    1. **Occupant-creation primitives** — `resume`, `fork`, `rebuild`, `fresh` — produce a candidate new occupant. Answer: "where did the new occupant come from?"
    2. **Seat-binding operations** — handover binds a candidate occupant into the topology. Answer: "what happened to the stable seat identity?" Inspect the current CLI for executable operations; design vocabulary alone does not establish a command.
    
    Core architectural decision: **stable seat identity, fluid occupant
    identity, explicit provenance.** Do not encode successive occupants into live
    seat names. Keep the stable address and record lineage separately.
    
    ## Use this when
    
    - Replacing a seat's occupant via rebuild, fork, fresh, or seat-handover
    - Choosing old-occupant disposition: retire / advise / shadow
    - Reasoning about whether a seat's lineage is stable or has drifted
    - Reading or writing the provenance record for a seat
    - Designing or auditing topology stability across an occupant change
    
    ## Don't use this when
    
    - The seat is freshly created (no occupant to replace) — use `rig launch` / `rig expand` directly
    - The intent is to change topology shape (add/remove seats), not replace an occupant — use topology-mutation primitives
    
    ## The two-outcome honesty model
    
    Every seat-binding operation produces two **independent** outcomes:
    
    ```yaml
    continuityOutcome: rebuilt | resumed | forked | fresh | failed
    seatBindingOutcome: handed_over | partial | failed | unchanged
    ```
    
    These can disagree honestly. Examples:
    
    - `continuityOutcome: failed` + `seatBindingOutcome: unchanged` — new occupant didn't materialize; seat correctly retains old occupant.
    - `continuityOutcome: rebuilt` + `seatBindingOutcome: failed` — candidate created OK; bind failed mid-flight; provenance records the gap.
    
    **Don't collapse these into one outcome.** The system can describe what
    actually happened only if the two are recorded independently.
    
    ## Provenance record (durable, queryable)
    
    Every handover writes:
    
    - seat id
    - old occupant id
    - new occupant id
    - creation mode (`resume`/`fork`/`rebuild`/`fresh`)
    - source artifacts used
    - whether old occupant remains alive as advisor/shadow
    - operator or loop that initiated the motion
    - timestamp
    - result (`handed_over` / `partial` / `failed`)
    
    This is the system's truth-source for "how did the current occupant get
    there." Without it, the control plane shows the current occupant but
    not the legitimacy of the transition.
    
    ## State models — independent
    
    ### Occupant-creation state (per candidate)
    
    1. **Requested** — input to rebuild/fork/fresh/resume
    2. **Realized** — runtime/artifact path produced an occupant with managed-seat shape
    3. **Failed** — candidate didn't materialize; `continuityOutcome: failed`
    
    ### Seat-binding state (per seat)
    
    1. **Stable** — current occupant attached, no in-flight binding
    2. **Binding** — handover in progress
    3. **Bound** — handover succeeded; provenance record written
    4. **Unchanged** — bind failed before completion; seat retains old occupant
    
    A seat stays `Stable` even if multiple candidate-occupants were produced and discarded.
    
    ## Failure modes (5)
    
    1. **Candidate creation failed** — `rebuild` couldn't synthesize from artifacts; `fork` couldn't resolve `session_source`; `fresh` couldn't launch. **Action**: bind operation does not begin; seat unchanged; provenance records the failed candidate-creation step.
    2. **Old occupant cannot be detached cleanly** — runtime hung, tmux locked, etc. **Action**: bind halts mid-flight; seat enters `Binding` state with explicit "halted" sub-status; operator alerted. **Do NOT auto-rollback by reattaching old-occupant if detach didn't complete cleanly.**
    3. **Bind succeeded but provenance write failed** — disk/db error. **Action**: not durable until provenance writes; treat as `Binding` halted, not `Bound`.
    4. **Old occupant disposition unfulfillable** — operator requested `advise` (keep alive as advisor) but runtime can't keep old alive. **Action**: degrade to `retire` with explicit notification, OR fail if operator passed strict-disposition flag.
    5. **Concurrent handover attempts** — two operations target the same seat. **Action**: serialize by seat-id lock; second attempt refuses with clear error.
    
    ## Hard boundaries (do-not list; verbatim)
    
    - **Do NOT collapse `rebuild` and `seat handover` into one primitive.** The design specifically separates them so the system can describe what actually happened.
    - **Do NOT introduce successor-suffix seat names** (`lead2`/`lead3`). Stable seat identity is the architectural goal. The live address stays stable. A retired tenure is distinguished by its ledger
    generation and exact history token; preserving it does not require a renamed live pane.
    
    - **Do NOT report `seatBindingOutcome: handed_over`** if the provenance record didn't write durably.
    - **Do NOT auto-rollback a half-completed handover** by re-attaching the old occupant unless detach completed cleanly first.
    
    ## Composition and current command surface
    
    A fork can create a candidate occupant; handover binds it into an existing seat.
    The continuity outcome is `forked`; the binding outcome is independent.
    
    The packaged `rig handover <seat>` and `rig seat handover <seat>` accept `fresh`,
    `discovered:<id>`, `fork:<id>` and `rebuild` sources. Use `--dry-run` to request
    planning only. Without it, these surfaces can execute; do not infer read-only
    behavior from the shorter seat command's planning-oriented description.
    `rig seat status <seat>` is the read-only observability surface.
    
    Source support is declared by the running daemon and depends on actual identity,
    history and artifact prerequisites. Read the returned source, continuity, binding
    and provenance results independently. A help listing or dry-run is not proof of a
    successful transition. The linked cutover SOP supplies the operator mechanics
    and required effect checks after the named owner authorizes the action.
    
    ## Why load-bearing for RSI
    
    Any recursive seat-refresh loop must be able to replace an occupant
    while keeping topology stable. Without these primitives, RSI loops will
    either accumulate suffixed seat names (lineage leaking into identity) or
    destabilize topology references on each cycle. Provenance must be
    durable AND queryable so RSI loops can decide whether a seat is fresh
    enough to receive new work or needs re-handover.
    
    ## Managed binding and retained history
    
    A retired advisor's history can remain available without a managed node or live
    pane. Query current binding and the lineage ledger separately: one answers who
    holds the seat, the other identifies the retained history and exact resume token.
    Do not infer that a predecessor is unreachable from registry absence alone, or
    that a preserved token proves a successful resume. Check the actual runtime and
    history when consultation is needed; see `retiring-and-inheriting-a-seat`.
    
    ## See also
    
    - `references/apprentice-successor-seat-cutover.md` — the portable mechanic SOP used only after the owner-worded gate
    - `references/orchestrator-role.md` — the orchestration judgment, authority, custody, and receipt contract
    - `references/apprentice-evidence-toolkit.md` — optional evidence apparatus selected only when the stakes earn it
    - `session-source-fork` skill — `fork` occupant-creation primitive (sibling)
    - `agent-starters` skill — composes occupant-creation + binding into named reusable starting points
    - `cross-host-rig-commands` skill — remote addressing and transport; verify lifecycle support on the target
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related