reinstate

module
v0.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 21, 2026 License: Apache-2.0

README

Reinstate session continuity across devices

Reinstate

Find, verify, resume, and hand off coding-agent work

Your agents lose context every time you switch. Reinstate carries it across. Indexes 11 agents in stable v0.5.1. Full continuity on 2 — Claude Code and Codex.

Reinstate is the open-source continuity layer for coding-agent work: search, resume, and hand off tasks across agents, projects, environments, and devices, with optional encrypted sync through your own S3-compatible storage.

Stable v0.5.1 adds universal agent coverage on top of the Phase 4 structured handoff: an agent catalog with an explicit tier per agent, rein doctor --agents with a redacted storage probe, session discovery for eleven agents, and structured handoff from five. A structured handoff continues the same task in a new Claude Code or Codex session. Apple Silicon macOS and native Windows x64 passed dual-platform tagged-artifact acceptance on candidate v0.5.0-rc.6 (150/150 on both devices); the public installers pin v0.5.1, whose acceptance is still pending. Intel macOS and Linux/WSL2 downloads remain preview/unverified pending issues #97 and #98.

License Go Report Card Release CI Go PRs Welcome Contributor Covenant Security Policy

GitHub stars GitHub forks GitHub watchers GitHub issues GitHub pull requests GitHub contributors GitHub last commit GitHub commit activity GitHub repo size Downloads

Why · Features · Quick start · Agents · How it works · Docs · Roadmap · Contributing

Created & maintained by Harjot Singh Rana · harjot.co


The problem

Even on one machine, you can have twenty sessions across Claude Code, Codex, projects, branches, and worktrees. Finding the right thread later becomes a memory problem. Switching agents can also mean re-explaining the task when the source agent is closed, logged out, or rate-limited.

Then you open your MacBook on the couch.

Git has the code. The agent does not have the conversation — the rejected approaches, the files already read three times, the style constraints you established mid-thread. Vendor tools save sessions locally. Switching machines is context death.

flowchart LR
  subgraph Desktop["🖥️ Desktop (Windows)"]
    D["20 sessions<br/>full context"]
  end
  subgraph Laptop["💻 Laptop (macOS)"]
    L["empty history<br/>MCP + skills B<br/>start from zero"]
  end
  D -.-x|context dies| L
  style D fill:#1f2937,stroke:#f87171,color:#f9fafb
  style L fill:#1f2937,stroke:#f87171,color:#f9fafb

Reinstate makes state portable:

flowchart LR
  subgraph Desktop["🖥️ Desktop"]
    A["Claude/Codex sessions"]
  end
  subgraph Cloud["☁️ Encrypted cloud"]
    B["your R2 / S3-compatible bucket<br/>ciphertext only"]
  end
  subgraph Laptop["💻 Laptop"]
    C["resume · same IDs"]
  end
  A -->|push · age E2E| B
  B -->|pull · remap paths| C
  style A fill:#064e3b,stroke:#34d399,color:#ecfdf5
  style B fill:#0c4a6e,stroke:#22d3ee,color:#e0f2fe
  style C fill:#312e81,stroke:#818cf8,color:#e0e7ff

Why Reinstate?

What you get
Local recovery Configless local index/search/resume for Claude Code and Codex
Multi-agent Structured handoffs continue the same task in a new Claude Code or Codex session
Verified resume v0.3.0 checks the workspace, agent, capabilities, and recognized runtimes before launch
Offline-capable origin Works when the other machine is off (stored sync, not a live relay)
Path remapping Windows ↔ macOS project paths rewritten so --resume actually finds sessions
Zero-knowledge Client-side encryption; bring-your-own storage
Bounded previews Metadata and a short user-prompt preview, never a default transcript dump
Privacy-safe environment truth Capability names and state may be indexed; contents, commands, values, credentials, and raw URLs are excluded
Open source Apache-2.0 · auditable · patent grant · no vendor lock-in

Native vendor sync typically serves its own ecosystem. Unreviewed Syncthing/Drive copies can preserve source-device absolute paths or include sensitive artifacts. Reinstate instead provides Claude/Codex same-vendor × cross-device × encrypted × path-aware continuity.


Features

Phase 5 stable v0.5.1:

  • Directional structured handoff — Claude Code and Codex are destinations; Claude Code, Codex, Gemini, OpenCode, and Grok are sources
  • No source model dependency — parse and checkpoint locally while the source CLI is closed, logged out, rate-limited, or offline
  • Auditable fidelity — each component is labeled exact, normalized, summarized, referenced, or omitted, with reasons
  • Destination capability diff — report missing tools, MCP servers, skills, instructions, attachments, and context before launch
  • Private local capsules — owner-only artifacts and append-only lineage under $REINSTATE_HOME/handoffs/, hard-excluded from sync
  • Safe destination launch — start a new session through the vendor's documented CLI; never write vendor-internal session files
  • Prompt-level acknowledgement — ask the destination to restate the task, workspace truth, uncertainty, and next action before mutation

Also included from stable v0.3.0:

  • Configless local indexrein sessions works without init or cloud storage
  • Literal search — prompt, file, branch, project, agent, and session identity
  • Metadata-first inspect — bounded user-prompt preview; no full transcript mode
  • Native continuationlast, resume, and fork launch the source vendor
  • Interactive switcher — bare rein on a TTY; deterministic JSON for automation
  • Read-only expansion — Gemini CLI and OpenCode discovery without mutation
  • Verified resume — deterministic environment reports on inspect, native dry-runs, direct launches, last, and picker selections
  • Workspace truth — offline repository identity, branch, HEAD, and privacy-safe working-tree checks without fetching or printing filenames
  • Agent and capability checks — fail-closed Claude/Codex version and layout verification plus bounded, name-only instruction, skill, and MCP inventory
  • Runtime checks — recognized Node and Go declarations inspected without running project scripts
  • Exact authorization — warnings require terminal confirmation or every invocation-scoped --allow-environment-warning CHECK_ID; blockers cannot be overridden

Also included from stable v0.1.0:

  • Cross-device session sync — continue the same Claude/Codex thread on another machine
  • Multi-agent adapters — same-vendor Claude Code and Codex session continuity
  • End-to-end encryptionage, passphrase-derived keys
  • Bring-your-own storage — Cloudflare R2, AWS S3, and S3-compatible storage
  • OS-aware path remapping — the hard problem treated as the product
  • Safe by default — credential denylist, atomic restore, conflict forks, local backups
  • Simple sync CLIrein init · push · pull · status · diff · conflicts (rein is the short alias; reinstate is the full command — same binary)

Later, Reinstate will extend continuity beyond sessions: declare MCP servers, skills, hooks/loops, plugins, marketplaces, instruction files, and safe settings once, then preview and apply the correct native configuration across Claude Code, Codex, Grok, OpenCode, Gemini CLI, and multiple devices. This is planned, not part of the current CLI. See Universal agent configuration.


Quick start

Platform boundary: the public installers pin stable v0.5.1, which passed dual-platform tagged-artifact acceptance on Apple Silicon macOS and native Windows x64. Intel macOS and Linux/WSL2 remain optional and unverified (#97, #98).

CLI: prefer short alias rein. Full name reinstate works the same.

Local continuity from the current source

From this repository, with Go 1.25.13 or newer:

make build
export REINSTATE_HOME="$HOME/.reinstate-phase3-local"

./bin/rein sessions
./bin/rein search "stripe webhook retry" --agent claude
./bin/rein inspect claude:SESSION_ID
./bin/rein last --dry-run
./bin/rein resume codex:SESSION_ID --dry-run
./bin/rein fork claude:SESSION_ID --dry-run
./bin/rein handoff claude:SESSION_ID --to codex --dry-run
./bin/rein

On native Windows PowerShell, build .\bin\rein.exe with go build -o .\bin\rein.exe .\cmd\reinstate, set $env:REINSTATE_HOME, and use that executable for the same commands.

These commands refresh a private derived index at $REINSTATE_HOME/cache/session-index-v2.sqlite. Its owner-only .lock and .write.lock files protect destructive repair and serialize writers/rebuilds across concurrent rein/reinstate processes. None is synced. These commands do not require init, storage credentials, a passphrase, or a network backend.

Stable v0.3.0 adds an environment report to inspect and native dry-runs. A first launch truthfully warns with baseline.unavailable; it never manufactures a historical match. Review the report, then either confirm on a TTY or acknowledge every current warning explicitly in automation:

./bin/rein resume claude:SESSION_ID \
  --allow-environment-warning baseline.unavailable

Acknowledgements apply only to that invocation. Missing workspaces, unrecognized agent versions/layouts, known repository replacement, stale source metadata, and verifier failures remain non-overridable. A private reinstate_prelaunch_observed baseline is stored only after the authorized same-vendor child exits successfully. Native resume/fork remains same-vendor.

Bare rein opens the numbered switcher only on a TTY. For scripts use rein sessions --json; a non-TTY bare invocation exits promptly with that hint.

Install the v0.5.1 candidate

macOS, Linux, or WSL2:

curl -fsSL https://reinstate.dev/install.sh | sh

Native Windows PowerShell:

irm https://reinstate.dev/install.ps1 | iex

Both bootstraps pin and verify v0.5.1, install without elevation, and print the next command:

rein version --json
rein init

Apple Silicon macOS with Homebrew:

brew install HarjjotSinghh/tap/reinstate

The GitHub Release and reinstate.dev installers pin v0.5.1. The Homebrew tap may still list an earlier release until its formula is updated. Intel macOS and Linuxbrew remain optional and unverified.

Reinstate waits at most 30 seconds for replacement approval; set REINSTATE_CONFIRM_TIMEOUT_SECONDS=1..300 to choose a shorter or longer bound. Shells without timed-read support refuse immediately and preserve the installed binary. For deliberate automation, review the version change first and set REINSTATE_CONFIRM_REPLACE=1.

Optional encrypted sync — Device A
rein init --project github.com/acme/app=/absolute/path/to/app
rein list --agent AGENT
rein push --agent AGENT --session SESSION_ID --dry-run
rein push --agent AGENT --session SESSION_ID

Use the S3/R2 service endpoint as the endpoint and enter the bucket separately. Reinstate refuses to overwrite an initialized home by default. The explicit --force path backs up prior config and state together before replacement.

Optional encrypted sync — Device B
rein init --profile-id <DEVICE_A_PROFILE_ID> \
  --project github.com/acme/app=/different/local/path
rein status
rein pull --agent AGENT --session SESSION_ID --dry-run
rein pull --agent AGENT --session SESSION_ID
# Then use the same vendor's native resume UI or command.

Reinstate verifies the encrypted remote manifest during additional-device init before saving local configuration. Require status to show the expected sessions after setup.

Full walkthrough: docs/getting-started.md


Supported agents

Support is a published tier (T0–T5), not a yes-or-no list.

Agent Tier Local index Native resume/fork Handoff source Handoff target Encrypted sync
Claude Code T5 ✅ full ✅ same-vendor
OpenAI Codex CLI T5 ✅ full ✅ same-vendor
Gemini CLI T2 ✅ read-only ✅ source-only
OpenCode T2 ✅ read-only ✅ source-only
Grok Build T2 ✅ read-only ✅ source-only
Kimi Code CLI T1 ✅ read-only
Qwen Code T1 ✅ read-only
Pi T1 ✅ read-only
Cursor CLI T1 ✅ read-only
GitHub Copilot CLI T1 ✅ read-only
Cline T1 ✅ read-only

This table is stable v0.5.1, which indexes all 11 agents above. Stable v0.4.0 indexed 5 — Claude Code, Codex CLI, Gemini CLI, Grok Build, and OpenCode.

Structured handoff in stable v0.5.1 starts a new destination session. Native resume/fork and encrypted sync remain same-vendor.

Details: docs/adapters.md


How it works

flowchart TB
  subgraph Agents["Coding agents on disk"]
    CC[Claude Code]
    CX[Codex]
    GM[Gemini CLI]
    OC[OpenCode]
  end
  subgraph Local["Local continuity · no config/cloud"]
    AD[Read adapters]
    IX[Private derived index]
    Q[Search · inspect · switcher]
    EX[Same-vendor launch plan]
  end
  subgraph Sync["Optional encrypted sync"]
    NM[Normalize paths]
    EN[Encrypt · age]
    SY[Manifest · push/pull]
  end
  BK[(Your bucket<br/>R2 / S3-compatible)]
  Agents --> AD --> IX --> Q --> EX --> Agents
  Agents --> NM --> EN --> SY
  SY <-->|ciphertext only| BK
  SY -->|pull · decrypt · remap · atomic restore| Agents
  1. Local read adapters derive bounded metadata and user-prompt search text
  2. Index stores owner-only SQLite session rows and private prelaunch baselines; it never enters sync
  3. Verified resume (stable v0.3.0) observes the fresh workspace, agent, capabilities, and runtimes and applies exact warning/blocker policy
  4. Executors launch a supported session through its native vendor
  5. Pathmap rewrites known structural paths for optional cross-device sync
  6. Crypto/sync encrypt before upload and restore atomically with backups

For a structured handoff, Reinstate freezes a read-only source boundary, parses it locally, verifies the live workspace, builds a private continuity capsule, and launches a new destination session through the destination vendor's documented CLI. Imported history is inert evidence; no source model call or vendor-internal write is part of this path.

Deep dive: docs/architecture.md · research diagram:

Reinstate architecture


Security

Guarantee Detail
E2E encryption Ciphertext only on remote storage
Credential denylist auth.json and tokens never synced by default
Private local index Owner-only derived metadata; no assistant/tool-output corpus
No vendor API keys required Local files only
Verified-resume boundary Offline checks, exact warning consent, non-overridable blockers
Structured-handoff boundary Redaction before write, inert imported history, no vendor-store mutation
Fail-safe restore Backups + conflict forks

Report vulnerabilities privately: SECURITY.md · model: docs/security-model.md


Documentation

Doc Description
Website reinstate.dev — product, documentation, compatibility, and security
Getting started Configless local index plus optional encrypted sync
Features and commands What shipped in v0.1.0 through v0.5.1
Verified resume Phase 3 environment report, provenance, policy, and privacy contract
Cross-agent handoff Phase 4 scope, fidelity, security, storage, and directional support
Architecture Pipeline, packages, design principles
Adapters Per-agent layouts & support matrix
Universal configuration Planned MCP/skills/loops/plugins/settings portability
Security model Threat model & defaults
Comparison vs native sync, claude-sync, DIY
FAQ Common questions
Troubleshooting Path remap, conflicts, large histories
Roadmap Phases & non-goals
Contributing Dev setup & PR process
Releasing Maintainer release checklist
Package-manager publishing Maintainer registry rollout and authentication guide
Support How to get help
Governance Decision making
Changelog Release history

Project activity

Star history

Star History Chart

↗ Open interactive star history · Stargazers

Contributors

Contributors

Category context

Category traction context

Insights
Metric Link
Pulse pulse
Traffic graphs/traffic
Commits graphs/commit-activity
Code frequency graphs/code-frequency
Network network
Stars stargazers · star-history

Roadmap

Phase Focus Status
0 Contracts, diagnostics, installers, fixtures, release trust
1 Claude + Codex encrypted same-vendor session sync
2 Configless local index, search, native resume/fork
3 Verified resume (stable v0.3.0)
4 Structured cross-agent handoffs (stable v0.4.0)
5 Universal agent coverage (stable v0.5.1)
6–7 Universal config + automatic sync, thin Console/ACP client, teams 📋 / 💭

Full detail: ROADMAP.md


Stable releases

Channel Tag Notes
Latest Release Stable builds
Pre-release Pre-release Early adopters
SemVer pre-1.0 Breaking changes possible in minors — see CHANGELOG

Install from GitHub Releases. Every published release must include checksums, SBOMs, a source archive, and an artifact attestation.


Maintainers

Lead Harjot Singh Rana (@HarjjotSinghh)
Site harjot.co
X @HarjjotSinghh

See MAINTAINERS.md · AUTHORS · CODEOWNERS


Contributing

Contributions are welcome — code, adapters, docs, and bug reports.

  1. Read CONTRIBUTING.md and the Code of Conduct
  2. Open an issue for larger changes
  3. Fork → branch → PR
make deps && make test && make build

Good first issues: good first issue


Community & support


Citation

If you use Reinstate in research or publications:

@software{rana_reinstate_2026,
  author = {Rana, Harjot Singh},
  title  = {Reinstate: Encrypted multi-agent session sync for AI coding tools},
  year   = {2026},
  url    = {https://github.com/HarjjotSinghh/reinstate},
  license = {Apache-2.0}
}

Also see CITATION.cff.


License

Licensed under the Apache License, Version 2.0 © 2026 Harjot Singh Rana.

Copyright 2026 Harjot Singh Rana

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

See NOTICE for third-party acknowledgements. Product names of third-party agents are trademarks of their respective owners; Reinstate is an independent project and is not affiliated with or endorsed by those vendors.


Work on desktop. Resume on laptop. Keep the context.

Star this repo

Built with ☕ in New Delhi · Open source forever

Directories

Path Synopsis
cmd
reinstate command
Command reinstate is the CLI entrypoint for Reinstate — encrypted multi-agent session sync for AI coding tools.
Command reinstate is the CLI entrypoint for Reinstate — encrypted multi-agent session sync for AI coding tools.
internal
adapter
Package adapter defines the interface every agent adapter implements.
Package adapter defines the interface every agent adapter implements.
adapter/claude
Package claude implements the Claude Code session adapter.
Package claude implements the Claude Code session adapter.
adapter/codex
Package codex implements the OpenAI Codex CLI session adapter.
Package codex implements the OpenAI Codex CLI session adapter.
agentcheck
Package agentcheck performs bounded, read-only native-agent compatibility probes for verified resume.
Package agentcheck performs bounded, read-only native-agent compatibility probes for verified resume.
agents
Package agents is the catalog of coding agents Reinstate knows about.
Package agents is the catalog of coding agents Reinstate knows about.
agents/conformance
Package conformance enforces a descriptor's declared tier with nine checks.
Package conformance enforces a descriptor's declared tier with nine checks.
agents/probe
Package probe emits the AGENT-PROBE-V1 evidence artifact.
Package probe emits the AGENT-PROBE-V1 evidence artifact.
agents/scan/cliquery
Package cliquery is the shared F2 scanner: a bounded subprocess with a timeout and an output ceiling, JSON decode, and non-zero-exit handling.
Package cliquery is the shared F2 scanner: a bounded subprocess with a timeout and an output ceiling, JSON decode, and non-zero-exit handling.
agents/scan/hometree
Package hometree is the shared F1 scanner: home-tree root resolution, a bounded glob walk, JSONL reading to the last complete line, and mod-time plus size change detection.
Package hometree is the shared F1 scanner: home-tree root resolution, a bounded glob walk, JSONL reading to the last complete line, and mod-time plus size change detection.
agents/sources
Package sources holds shared record-mapping helpers used by per-agent index ports.
Package sources holds shared record-mapping helpers used by per-agent index ports.
agents/sources/claude
Package claude ports Claude Code's F1 index source onto the shared hometree scanner.
Package claude ports Claude Code's F1 index source onto the shared hometree scanner.
agents/sources/cline
Package cline discovers Cline CLI sessions on the shared hometree scanner.
Package cline discovers Cline CLI sessions on the shared hometree scanner.
agents/sources/codex
Package codex ports Codex CLI's F1 index source onto the shared hometree scanner.
Package codex ports Codex CLI's F1 index source onto the shared hometree scanner.
agents/sources/copilot
Package copilot discovers GitHub Copilot CLI sessions on the shared hometree scanner.
Package copilot discovers GitHub Copilot CLI sessions on the shared hometree scanner.
agents/sources/cursor
Package cursor discovers Cursor CLI sessions on the shared hometree scanner.
Package cursor discovers Cursor CLI sessions on the shared hometree scanner.
agents/sources/gemini
Package gemini ports Gemini CLI's F1 index source onto the shared hometree scanner.
Package gemini ports Gemini CLI's F1 index source onto the shared hometree scanner.
agents/sources/grok
Package grok ports Grok Build's F1 index source onto the shared hometree scanner.
Package grok ports Grok Build's F1 index source onto the shared hometree scanner.
agents/sources/kimi
Package kimi discovers Kimi Code CLI sessions on the shared hometree scanner.
Package kimi discovers Kimi Code CLI sessions on the shared hometree scanner.
agents/sources/opencode
Package opencode ports OpenCode's F2 index source onto the shared cliquery scanner.
Package opencode ports OpenCode's F2 index source onto the shared cliquery scanner.
agents/sources/pi
Package pi discovers Pi coding-agent sessions on the shared hometree scanner.
Package pi discovers Pi coding-agent sessions on the shared hometree scanner.
agents/sources/qwen
Package qwen discovers Qwen Code sessions on the shared hometree scanner.
Package qwen discovers Qwen Code sessions on the shared hometree scanner.
backend
Package backend defines remote object storage for Reinstate.
Package backend defines remote object storage for Reinstate.
backend/memory
Package memory is an in-process Backend for tests.
Package memory is an in-process Backend for tests.
backend/s3
Package s3 implements Backend using AWS SDK v2 against S3-compatible APIs (R2).
Package s3 implements Backend using AWS SDK v2 against S3-compatible APIs (R2).
capability
Package capability discovers privacy-safe, name-only declarations for coding-agent instructions, skills, and MCP servers.
Package capability discovers privacy-safe, name-only declarations for coding-agent instructions, skills, and MCP servers.
capsule
Package capsule defines the continuity-capsule v1 model and its deterministic canonical encoding.
Package capsule defines the continuity-capsule v1 model and its deterministic canonical encoding.
cli
Package cli implements the Reinstate command-line interface.
Package cli implements the Reinstate command-line interface.
config
Package config loads and saves Reinstate local configuration (backend credentials paths, scopes, path_map, excludes).
Package config loads and saves Reinstate local configuration (backend credentials paths, scopes, path_map, excludes).
credentials
Package credentials stores remote access secrets outside config files.
Package credentials stores remote access secrets outside config files.
crypto
Package crypto implements client-side encryption for Reinstate (age + scrypt).
Package crypto implements client-side encryption for Reinstate (age + scrypt).
device
Package device detects OS, architecture, and WSL environment.
Package device detects OS, architecture, and WSL environment.
doctor
Package doctor produces redacted diagnostics and synthetic self-tests.
Package doctor produces redacted diagnostics and synthetic self-tests.
environment
Package environment defines bounded, persistence-safe environment metadata.
Package environment defines bounded, persistence-safe environment metadata.
executabletrust
Package executabletrust resolves host tools without trusting executable code supplied by the workspace being inspected.
Package executabletrust resolves host tools without trusting executable code supplied by the workspace being inspected.
exitcode
Package exitcode defines stable Reinstate process exit codes.
Package exitcode defines stable Reinstate process exit codes.
fileidentity
Package fileidentity captures private, platform-native filesystem identities for launch-bound safety checks.
Package fileidentity captures private, platform-native filesystem identities for launch-bound safety checks.
filelock
Package filelock provides a small cross-process advisory lock used for private derived state.
Package filelock provides a small cross-process advisory lock used for private derived state.
fixture
Package fixture validates synthetic adapter fixtures for secret leakage.
Package fixture validates synthetic adapter fixtures for secret leakage.
fsx
Package fsx provides filesystem helpers (atomic write, permissions, backup).
Package fsx provides filesystem helpers (atomic write, permissions, backup).
handoff
Package handoff implements portable cross-agent session handoffs.
Package handoff implements portable cross-agent session handoffs.
lock
Package lock provides local mutation locking for push/pull.
Package lock provides local mutation locking for push/pull.
pathmap
Package pathmap rewrites absolute paths to portable tokens and back.
Package pathmap rewrites absolute paths to portable tokens and back.
preflight
Package preflight builds and authorizes deterministic verified-resume environment reports.
Package preflight builds and authorizes deterministic verified-resume environment reports.
processcheck
Package processcheck detects supported coding-agent processes before restore.
Package processcheck detects supported coding-agent processes before restore.
project
Package project derives canonical project identity.
Package project derives canonical project identity.
runtimecheck
Package runtimecheck inspects declared project runtime versions without executing project code or package-manager scripts.
Package runtimecheck inspects declared project runtime versions without executing project code or package-manager scripts.
safetext
Package safetext removes terminal/control injection from bounded metadata.
Package safetext removes terminal/control injection from bounded metadata.
schema
Package schema defines versioned Reinstate data contracts.
Package schema defines versioned Reinstate data contracts.
secretscan
Package secretscan provides deterministic secret detection and redaction for transcript and capsule content.
Package secretscan provides deterministic secret detection and redaction for transcript and capsule content.
sessionindex
Package sessionindex provides Reinstate's private, derived local session index.
Package sessionindex provides Reinstate's private, derived local session index.
sync
Package sync implements the push/pull engine, local manifest, and conflicts.
Package sync implements the push/pull engine, local manifest, and conflicts.
transcript
Package transcript defines the shared vendor-transcript Reader contract, complete-record boundary snapshot helpers, and normalization utilities used by agent-specific readers.
Package transcript defines the shared vendor-transcript Reader contract, complete-record boundary snapshot helpers, and normalization utilities used by agent-specific readers.
version
Package version holds build-time version metadata.
Package version holds build-time version metadata.
workspace
Package workspace observes and compares the local workspace used for a native coding-agent continuation.
Package workspace observes and compares the local workspace used for a native coding-agent continuation.
scripts
testing/phase3perf command
Command phase3perf generates and measures the frozen Phase 3 RC1 performance corpus.
Command phase3perf generates and measures the frozen Phase 3 RC1 performance corpus.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL