Skip to main content
Glama

Holt

The transaction and recoverability layer for parallel coding agents.

Holt makes in-flight repository work observable, recoverable, and safe to act on before a cleanup, merge, or landing decision.

license release CI docs

Current status: The latest published artifact is v0.3.1. This source checkout contains later, unreleased work and must not be treated as the published package until its release gates pass. Team and Enterprise are not being sold or activated in this launch.

The short version

Coding agents make parallel software work cheap. They also leave valuable state distributed across commits, the index, unstaged edits, untracked files, ignored paths, branches, and linked worktrees. Ordinary Git commands can inspect those pieces, but do not give one repository-wide answer to the transaction question:

If this workspace is cleaned up or this change is landed now, what unique work could be lost or misintegrated—and what recovery path exists?

Holt is the layer at that seam. It relates the real local state, separates exact evidence from advisory intelligence, preserves work before a destructive action, re-checks the action boundary, and emits a recovery receipt. It is complementary to Git, worktree managers, CI, editors, and agent orchestrators; it is not a replacement for any of them.

The core loop is:

observe → classify → protect → gate → act → verify/recover

Actual Holt TUI showing repository-wide worktree risk, unique-work evidence, and recovery guidance

Actual holt tui --snapshot output from the real renderer against a controlled real-Git fixture. The linked evidence packet contains the reproduction path and checksum.

Related MCP server: agent-locks

Install and try the core

Holt currently requires Node ^22.22.2 || ^24.15.0 || >=26.0.0 and Git 2.45 or newer. Git 2.45 is the safety floor for the local-object checks Holt performs. The stable URL below installs the latest version that has actually been published, which may differ from this checkout; verify holt --version, the release notes, and the checksums for the exact artifact you install.

npm install -g https://github.com/Raed2180416/holt/releases/latest/download/holt.tgz
cd your-repository
holt setup       # inspect available backends and project-scoped integrations
holt auto        # perform reversible protection; make no deletion decision for you
holt status      # inspect the evidence and remaining decisions

To replay the repository's smallest adversarial proof from source—one empty worktree with a reassuring name beside a misleadingly named worktree holding modified, untracked, and ignored content—run:

node scripts/run-preseed-demo.mjs --json

The demo creates an isolated temporary Git repository, exercises both gate exit-code contracts, previews cleanup, applies quarantine only to the measured-empty worktree, inventories the recovery copy, restores it, and independently checks its HEAD and byte digest. It removes its own restored fixture after the proof; add --keep to inspect it.

holt clean is a dry run. holt clean --apply re-checks candidates immediately before moving provably disposable worktrees into locked local quarantine; it does not delete files or branches and returns the exact restore path. holt purge is a separately named, dry-run-first disk reclamation action and requires an explicit apply step after review.

What is available today

The current free/core boundary is local, Git-native, and single-repository. It does not require an account, hosted code upload, telemetry, or a managed control plane.

Job

Current surface

What the result means

See the repository-wide state

status, risk, context, TUI, offline relationship graph

A measured view of workstreams, unique content, collisions, duplicates, dependencies, and bounds.

Decide whether work is disposable

gate, clean, protect, auto

Exact path/content/reachability evidence can hold or permit an action. Unknown or unmeasured state stays unknown.

Preserve before acting

rescue, discard, clean --apply, quarantines, restore

Capture or quarantine is verified before release; recovery remains local and explicit.

Coordinate parallel work

collisions, hotspots, duplicates, impact, order, partition, branches, stash, plan

Relationship findings guide review and landing. They are not silently promoted into destructive authority.

Connect agents

Project-scoped MCP, brief, integrate, and host-specific hooks

Capability is reported per host as advisory, contract-tested, or live-observed; configuration on disk is not proof of a live deny.

Review incidents and provenance

journal, forensics, audit

Local receipts and package/runtime checks can be inspected offline on customer-controlled storage.

The most important product rule is the boundary between proof and advice:

  • Exact path, operation, mode, object type, object identity, and verified recovery evidence can influence destructive authority.

  • Symbol overlap, clone similarity, dependency impact, family grouping, and landing order are useful review signals. They do not prove semantic equivalence or permission to delete.

  • A failed instrument, an exceeded bound, or an unmeasured path lowers confidence. It does not become a clean-looking answer.

A five-minute mental model

Imagine three agents working in linked Git worktrees:

agent A: one local commit
agent B: staged edits plus an untracked migration
agent C: ignored generated output that is the only copy of a useful artifact

Branches alone do not describe that state. Holt builds a repository-wide evidence view, identifies what is unique, and keeps a cleanup operation reversible:

inspect → protect or rescue → re-check → quarantine → restore if needed

The same model applies before landing: show collisions, dependencies, and the evidence behind the proposed order, then run the supplied combination test when a specific interaction needs empirical verification. A clean supplied test means only that that test observed no combination-only failure; it is not a universal compatibility certificate.

Where Holt fits

Existing tool or layer

Its job

Holt's boundary

Git and Git worktree

Version control and workspace primitives

Relate local state across worktrees before a lock, cleanup, or landing action.

Worktree managers

Create, move, and organize worktrees

Supply repository-wide content evidence and recovery-first disposition.

Agent orchestrators and editors

Dispatch and operate agents

Supply the transaction context and action seam; Holt does not choose the task or model.

CI and merge queues

Test and order committed changes

Protect valuable pre-PR state and investigate specific interactions before work is shared.

Hosted agent/cloud sandboxes

Run work away from a local machine

Local locks do not reach cloud or ephemeral agents by default; no cloud enforcement claim is made.

Holt is the local transaction and recoverability layer for parallel coding-agent work.

Integration coverage

holt integrate writes project-scoped files and preserves existing user configuration. Re-running it repairs Holt-owned entries without duplicating them; holt uninstall removes only receipt-owned, unchanged artifacts. Host configuration on disk is not evidence that a host loaded, trusted, or enforced it.

  • MCP — 16 tools in the executable schema. The protocol path is exercised over stdio as initialize → 16 tools → tools/call; MCP remains reactive model-pull unless a host supplies a separate lifecycle context hook.

  • Implemented deterministic pre-tool blocking — Claude Code, OpenCode, Cursor, Codex local clients, Qwen Code, Copilot CLI, Cline IDE, Goose, Devin CLI and Devin Desktop Cascade cover their documented local surfaces. Their current schemas are contract-tested, but none is currently claimed as a real-host enforcement run.

  • Hook-capable, not yet wired — Gemini, Crush, Amp, Factory and Junie still receive MCP + advisory.

  • Cloud or ephemeral — Codex cloud, Copilot cloud, Cursor cloud, Google Jules, Replit Agent do not receive local worktree enforcement by default.

Holt describes nearly 30 distinct agent product surfaces, but support is deliberately split by evidence grade. Current MCP/hook files for Cursor, Codex, Qwen Code, Copilot, Cline, Goose, Continue, Devin CLI, Cascade, Crush, Gemini CLI and VS Code are generated and parsed in schema fixtures. Gemini, Crush, Amp, Factory and Junie hooks are still unverified and unwired; their hosts remain MCP-capable rather than live-verified blockers. Run holt providers, holt hosts, and holt doctor --json for the machine-readable provider, configured-on-disk, trust, runtime, and live-proof boundaries.

Evidence and limits

The repository contains deterministic unit, end-to-end, filesystem, Git, package, protocol, and mutation checks for the shipped surface. It also records a CI matrix for the core safety and CLI flows on Linux, macOS, and Windows. Read the feature-proof matrix for the exact executable evidence, independent oracles, denominators, and remaining gaps. No current test count or mutation score is published. A number becomes eligible only when the complete, linked release and mutation evidence meets the repository's publication contract.

The full publication contract is in BENCHMARKS.md and eval/README.md. The security and data boundary is in docs/SECURITY-QUESTIONNAIRE.md; holt audit provides an offline check of an installed package's declared capabilities and bytes.

Important operational limits

  • rescue and discard preserve captured bytes as ordinary unencrypted local Git objects under refs/holt/*. Holt does not classify those bytes as secrets. Use approved encrypted storage or whole-worktree quarantine when the Git object database is not an acceptable trust boundary.

  • A local Git lock does not stop every filesystem path or every force override. Supported host hooks extend coverage, and their scope and failure modes are listed in HOSTS.md.

  • Ignored paths are included in destructive analysis, but Holt does not claim semantic understanding of ignored content. Unresolved ignored bytes keep a worktree out of the disposable set.

  • Jujutsu is a different product boundary: auto-snapshots reduce the Git-specific “only uncommitted copy” problem, while collision, duplicate, order, and review-load signals remain useful.

The current offer and the design-partner roadmap

Available now

The free/core product is the only public offer in this launch. Team and Enterprise code remains in the repository for audit and future work, but there is no public paid price, checkout, service commitment, data-processing agreement, enterprise identity offer, or production SLA in this README.

For investors and early design partners

The most useful next conversation is concrete: bring a repository where several agents or worktrees make cleanup, handoff, or landing hard to trust. We want the smallest reproducible incident, one success case, and one adversarial control. Holt does not currently claim customers, revenue, repeat use, or paid pilots; the design-partner program exists to test whether this becomes a recurring and consequential team workflow.

  • Design-partner program — who should participate, what the trial asks, and what counts as a useful result.

  • Pre-seed brief — the company thesis, current evidence boundary, objections, 12-week proof route, and proposed use of funds.

  • Market and future-gap sweep — official-source substitutes, where Holt lags, absorption risk, falsifiers, and an outcome-gated technical roadmap.

Holt is part of Contrare Research. Product and research queries: research.contrare@outlook.com.

Built on proven open source

Holt assembles mature instruments rather than asking teams to replace their stack: universal-ctags for measured symbols, enry for content-based language resolution, jscpd for optional token-level clone detection, git merge-tree for committed-delta evidence, and jj as a first-class backend. Optional backends have explicit degradation paths; absence never becomes deletion authority.

License

  • The complete single-repository product is covered by FSL-1.1-MIT: free for every defined Permitted Purpose, including internal commercial use that is not a Competing Use.

  • Each FSL-covered release converts to MIT on its own second anniversary.

  • Team and Enterprise implementations under src/team/ are source-available under their commercial license. They are not part of the public free/core offer above.

F
license - not found
Not graded
quality - not tested
A
maintenance

Maintenance

Maintainers
Response time
4dRelease cycle
4Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    A filesystem-based MCP server for AI coding agents to coordinate work across git worktrees by claiming files, checking for conflicts, and logging progress without affecting the repository's git history.
    5
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    An MCP server for orchestrating a fleet of CLI coding agents in isolated git worktrees. It exposes tools for spawning workers, sending instructions, reviewing diffs, and merging changes, with full terminal visibility.
    3
    3
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    an MCP server that auto-resolves Git merge conflicts so agents only touch the complex hunks — deterministic pattern engine with confidence scores and a full decision trace, plus merge/rebase preview and hunk-level resolution tools
    167
    MIT

View all related MCP servers

Related MCP Connectors

  • A MCP server built for developers enabling Git based project management with project and personal…

  • Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.

  • ArcAgent MCP server for bounty discovery, workspace execution, and verified coding submissions.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Raed2180416/holt'

If you have feedback or need assistance with the MCP directory API, please join our Discord server