Event Horizon VS Code Extension Adds File Locking and Plan Coordination for Multiple AI Agents

Event Horizon is a VS Code extension that started as a visualization tool for Claude Code but has evolved to solve a practical problem: preventing multiple AI coding agents from breaking builds by editing the same files simultaneously.
Problem and Solution
The developer encountered issues when running Claude Code in one terminal and OpenCode in another, both editing the same project. One agent would overwrite the other's work, leading to broken builds that required hours to untangle.
Key Features
- File Locking: When one agent is writing to a file, others are hard-blocked from touching it. The blocked agent sees who holds the lock and works on something else instead, ensuring zero interleaved writes.
- Plan Coordination: Create a plan where agents claim tasks atomically, preventing two agents from working on the same thing. Dependencies are enforced, and a Kanban board updates live as work progresses.
- MCP Tools: Handle all coordination under the hood. Everything auto-registers when you connect an agent, requiring no manual configuration.
- Visualization: The original visualization remains, with file collisions now sparking lightning between planets. This provides an immediate visual indicator when agents are fighting over the same files.
Technical Details
- 100% local with no telemetry - nothing leaves your machine
- Supports Claude Code and OpenCode with one-click setup
- Copilot also supported
- Cursor support coming soon
Availability
- GitHub: https://github.com/HeytalePazguato/event-horizon
- VS Code Marketplace: https://marketplace.visualstudio.com/items?itemName=HeytalePazguato.event-horizon-vscode
📖 Read the full source: r/ClaudeAI
👀 See Also

ClaudeDesk v4.2–4.3 Introduces Agent Teams Visualization and Repository Atlas Engine
ClaudeDesk v4.2–4.3 provides a desktop GUI for managing Claude Code CLI's Agent Teams and optimizes session setup with the Repository Atlas Engine.

Sonicker: Voice Cloning Web App Built with Claude Code in 4 Days
Sonicker is a voice cloning web app that requires only 3 seconds of audio input and supports 10 languages. The developer built it solo in 4 days using Claude Code for the entire frontend, API integration, and deployment.

OpenClaw Alexa Voice Proxy Enables Bidirectional Voice Interaction
openclaw-alexa-voice is a Node.js proxy that connects an Alexa Custom Skill to the OpenClaw gateway with a three-tier response system for voice queries. It handles fast responses under 1 second, agent responses under 12 seconds, and deferred complex queries processed asynchronously within 2 minutes.

Conduid: Trust Infrastructure Layer for MCP Servers Built with Claude
Conduid indexes over 25,000 MCP servers across GitHub, npm, PyPI, and major directories, scoring each 0-100 based on GitHub activity, security posture, documentation quality, and maintenance signals. The entire codebase was written with Claude by a solo founder.