Launching today

Mozzie
Codex Claude Gemini CLI parallel agents orchestration
35 followers
Codex Claude Gemini CLI parallel agents orchestration
35 followers
Mozzie is a local-first desktop tool that lets you orchestrate multiple AI coding agents in parallel. Create work items, spawn agents, and manage their execution from a single workspace. Each agent runs in its own terminal while Mozzie tracks tasks, context, and results. Mozzie works with existing coding agents like Codex, Claude Code, and Gemini CLI — it doesn’t replace them, it coordinates them. Open source on GitHub.








Mozzie
This solves a real pain point. I've been juggling 3-4 Claude Code terminals for different parts of the same project and it gets chaotic fast. The parallel agent orchestration with a single workspace view is exactly what's needed. Quick question: does it handle conflicts when two agents try to edit the same file?
Mozzie
@mihir_kanzariya Not automatically. The way I’m approaching it is to prevent that upfront rather than try to recover later. Each work item runs in its own git worktree/branch, but if two agents edit the same file, that can still create a merge conflict. So the orchestrator is meant to split work into non-overlapping file ownership, put shared files into a foundation task first, and use dependencies when something has to land, dependent tasks are auto launched when foundations are met.