Skip to content

The operating system
for AI agents.

Invisible coordination through the filesystem, built from Unix primitives. Agents don't know it's there. You see everything.

ostk is a local-first operating system for coordinating multiple AI coding agents on a shared codebase. It intercepts file writes at the tool layer, resolves conflicts through optimistic concurrency, and enforces trust boundaries via GPG-based capability pins — all without requiring agents to learn new APIs or coordination protocols.

TERMINAL
$ curl -fsSL https://ostk.ai/install | sh
$ ostk init
$ ostk listen
BINARY: SINGLE RUST
DEPS: ZERO
INSTALL: ~30s
TRUST: GPG CHAIN
01

Agents collide on shared files

Multiple agents editing the same codebase means race conditions, conflicts, and lost writes. ostk intercepts str_replace as a compare-and-swap. No locking, no message queues. Conflicts resolve after the fact.

02

Agent state scatters on crash

After a crash, you lose context, audit trail, and recovery checkpoints. ostk maintains a durable kernel (.ostk/) tracking agent lifecycle, file generations, and signed checkpoints. Every state transition is logged. Boot from verified state.

03

Running agents in production means risk

Which Agentfile was executed? Did the code change after signing? ostk enforces trust layers: GPG-sign Agentfiles, bind to HUMANFILE identity, record revocations by content hash. Attestation chains prove what ran.

Classical computer memory mapped to LLM inference primitives. Adding agents decreases per-agent cost.

REGISTERS
CONTEXT_WINDOW 0ms
L1_CACHE
PROMPT_CACHE ~0ms
L1.5
FILES_API 50ms
RAM
POSIX_FILES 1ms
DISK
GIT_ARTIFACTS 10ms
SWAP
AUDIT_LOGS 100ms
WRITE_TRACKING
Every file write intercepted, assigned a generation counter via optimistic concurrency
CONFLICT_RESOLUTION
Hot PR — auto-merge, mechanical rebase, or manual. Three tiers.
COST_REDUCTION
28% measured cost reduction via prompt cache reuse + shell output dedup
TRUST_ENFORCEMENT
T0-T3 trust tiers, GPG web of trust, deny-based capability pins
AUDIT_TRAIL
Append-only events. fold(audit.jsonl) reconstructs the fleet at any point
SECRET_MEDIATION
API keys resolved from keychain at call time. Never in agent context.