Skip to content
AgentTeams
03Feature

Code review

A diff per task with accept, reject and comment — plus a built-in editor with Git support.

review · task #214
src/auth/session.ts
+3−2
41 export async function getSession(req) {
42- const raw = req.cookies.sid;
43- return store.get(raw);
44+ const raw = req.cookies?.sid;
45+ if (!raw) return null;
46+ return store.get(raw) ?? null;
47 }
AcceptRejectCommentreviewer approved · 12s ago
What it replaces

Agents are confident and sometimes wrong. Reviewing their work in a separate Git client breaks your flow and hides the reasoning behind each change.

How it works

Nothing lands because an agent said it was done. Every task produces a diff you can read in the app. Accept it, reject it, or leave a comment and send it back — the agent picks the comment up and revises. Reviewer agents can do the first pass so you only see what survived.

  • Per-task diff view, file by file
  • Accept, reject, or comment and send back
  • Reviewer agents do the first pass
  • Built-in editor with Git support
  • Comments become the agent's next instruction
Get started

Stop being the message bus.

Install it, open a repo, and give three agents an objective. Free, no account, no API key.

Download free Find your use case

macOS · Windows · Linux