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

Org Studio: Open-source dashboard for managing multi-agent AI teams
Org Studio is an open-source dashboard that applies organizational design principles to coordinate teams of AI agents, with native support for both OpenClaw and Hermes Agent runtimes. It features team topology management, event-driven task boards, and cross-runtime communication where agents can mention each other in task comments.

3D-Printed Clawd Mascot with ESP32-Powered Mochi Bot
A developer built a physical 3D Clawd inspired by the Claude Code mascot, with an ESP32-driven Mochi bot featuring a small display. Files and code available on MakerWorld and GitHub.

Signet: Open-Source Memory Layer for AI Coding Agents Hits 80% F1 on LoCoMo
Signet is an open-source memory system for AI coding agents that achieves 80% F1 on the LoCoMo benchmark, compared to 41% for standard RAG. It extracts memories after each session and injects relevant context before prompts, running locally with SQLite.

Analysis of Ollama's Reusable Go Components for Local LLM Development
A developer examined Ollama's source code and found several standalone Go components including a pure Go token sampler, GGUF reader/writer, model conversion tools, chat template rendering, and OpenAI compatibility transforms that aren't available as separate libraries.