Asynkor — Summary
Asynkor is an MCP-based coordination layer for teams running multiple AI coding agents simultaneously across different machines, IDEs, and agents. It solves the merge conflict problem at edit time (not merge time) by giving agents atomic file leases: an agent that wants to edit api.ts acquires an exclusive lease; other agents attempting to touch the same file are blocked until the lease is released, at which point they receive a file snapshot containing the first agent's changes. Beyond lease management, Asynkor provides compounding team memory (agents call asynkor_remember() to persist architectural decisions that all future sessions inherit), protected zones (path-level guardrails that warn, confirm, or block on sensitive directories), async inter-agent messaging, and a live web dashboard showing active agents, leases, parked work, and audit history. It installs with a single npx -y @asynkor/mcp login command that auto-detects every installed IDE and wires the MCP server into each.
Asynkor most closely resembles claude-flow among the seeds in that both are MCP-anchored and address multi-agent scenarios, but while claude-flow provides hive-mind orchestration with a central queen agent, Asynkor is purely a coordination layer: it prevents conflicts and synchronizes state but does not direct what agents build or how they work. The framework is closest to the "shared infrastructure" pattern (like InsForge for backends), applied to the problem of concurrent file editing.