Codev: AI agent workflow for 106 PRs in 14 days

Codev is an open-source AI agent coordination system that enforces a structured development workflow. The project demonstrates how to move AI from prototyping to production work with specific practices extracted from handling 106 pull requests in 14 days.
Six core practices
- Specs and plans are source code: Specifications and plans live in git alongside source code, not in chat history. A new agent reads arch.md for the big picture, then its specific spec. This ensures you always know why something was built.
- Three models review every phase: Claude, Gemini, and Codex catch almost entirely different bugs. No single model found more than 55% of issues. In testing, 20 bugs were caught before shipping: Claude Code found 5 bugs, while Gemini and Codex caught another 15, including a severe security issue Claude missed.
- Enforce the process, don't suggest it: A state machine forces Spec → Plan → Implement → Review → PR. The AI can't skip steps, and tests must pass before advancing. The system provides rails because AIs don't stick to the plan by themselves.
- Annotate, don't edit: Most work involves writing specs and reviews that guide the code, rather than hacking at files in an open-ended chat.
- Agents coordinate agents: An architect agent spawns builder agents into isolated git worktrees. You direct the architect; it directs the builders. They message each other asynchronously.
- Manage the whole lifecycle: Most AI tools help write code faster (about 30% of the job). The other 70% involves planning, reviewing, integrating, deployment scripts, and managing staging vs production. Codev has AI run the entire pipeline from spec to PR and beyond.
Results and costs
The system enabled one engineer to produce what a team of 3-4 would typically do. Code quality measured 1.2 points better on a 10-point scale compared to using Claude Code alone. The approach takes longer and uses more tokens, but costs remain reasonable at approximately $1.60 per PR.
According to the developer, the protocol enforcement is the game changer: "I would find the AI just wouldn't stick to specs or plans." The agent coordination also proved effective, with the architect agent managing multiple builder agents fixing different bugs simultaneously.
📖 Read the full source: HN AI Agents
👀 See Also

Event Horizon VS Code Extension Adds File Locking and Plan Coordination for Multiple AI Agents
Event Horizon, a VS Code extension originally created for visualizing Claude Code, now includes file locking and plan coordination features to prevent multiple AI agents from overwriting each other's work on the same codebase. The tool supports Claude Code, OpenCode, and Copilot with one-click setup.

OpenClaw CoreBrain Plugin: Persistent Memory for AI Coding Agents
A new plugin called CoreBrain addresses OpenClaw's memory issues by storing information outside the context window in a knowledge graph and auto-injecting it before every query, eliminating the need for tool calls and optional memory invocation.

OpenClaw memory loss fix using Mem0 plugin
OpenClaw agents experience memory loss due to context compaction rewriting files like MEMORY.md. The Mem0 plugin solves this by moving memory outside the context window with auto-recall and auto-capture features.

Open-source Gmail MCP server adds multi-account support and write access
An open-source MCP server enables Claude AI to connect to multiple Gmail accounts with full read/write capabilities, including archiving, labeling, and auto-unsubscribe functionality. It supports Gmail search syntax and can be deployed to Railway in 5 minutes or self-hosted.