Coordination tools let clients coordinate project work with lease locks.
Tools
lock_acquire— Acquire a project-scoped lease lock for coordinated work.lock_status— Check whether a project-scoped lease lock is currently held.lock_release— Release a project-scoped lease lock you own.
Notes
Use locks for short-lived coordination around shared files, plans, migrations, or other work where overlapping edits would be expensive. Locks are coordination signals, not permanent ownership.
Acquiring or releasing locks requires an actor identity; checking lock status only requires project scope. Solo-managed agents are identified automatically. For acquire and release operations, callers running outside Solo can register as external actors with identify_session. See Agent and terminal tools.