AI makes mistakes! Undisk makes recovery instant: every write is versioned, every file is reversible.
See it heal →

What it does

Multi-agent coordination: claim/release file locks, leave handoff notes for other agents, and discover active agents. Locks auto-expire after a configurable TTL (default 5 minutes). Handoff notes persist until read.

Parameters

ParameterTypeRequiredDescription
actionstringYesOperation to perform. Values: claim_lock, release_lock, list_locks, handoff_note, list_notes, list_agents.
pathstringNoFile path to lock or unlock. Required for ‘claim_lock’ and ‘release_lock’. Glob patterns supported for ‘claim_lock’ (e.g., ‘src/**/*.ts’).
ttl_secondsnumberNoLock time-to-live in seconds (default: 300 = 5 minutes, max: 3600). Only used with ‘claim_lock’.
messagestringNoHandoff message text. Required for ‘handoff_note’.
to_agentstringNoOptional target agent ID for ‘handoff_note’. Omit to broadcast to all agents.
limitnumberNoMaximum results to return for ‘list_notes’ or ‘list_agents’ (default: 50, max: 200).
include_readbooleanNoInclude already-read notes in ‘list_notes’ results (default: false).