When agents write most of the code, the human’s job changes shape. You cannot read every diff at the rate agents produce them, and pretending to is how “reviewed” becomes a rubber stamp. The working alternative is to make the layers underneath the human prove everything provable, so the final read is spent on the residue: intent, scope, taste, and judgment. The review is the product quality, and the review’s job is to stay small enough to be real.
The monorepo behind this site structures this as a stack of four evidence layers, each with a distinct burden of proof: repository policy as data, mechanical gates, independent agent review, and the human read. None of them is optional, and none of them claims the others’ authority.
policy as data
The cheapest review is the one that cannot be skipped because it is structure. In this repository the boundary rules are files a checker reads: konsistent.json requires an AGENTS.md in every owned directory and confines README.md files to package and deployable roots, and bun run check:structure fails the tree when either rule drifts. The effect on review is direct. When an agent claims “this directory owns X,” the claim is checked against the declared boundary, not taken on trust.
The same move appears in the workspace graph (check:workspaces rejects missing catalog entries and wrong protocols), the data-surface registry (check:cost-surfaces refuses a new table, stream, or route until it declares kind, retention, owner, and budget), and the agent-guide inventory (check:agent-guides). Each converts a review question (“did you register this?”) into a boolean the reviewer never has to ask.
gates as the first reviewer
The merge queue described in merge queues when the author is an agent is, functionally, the first reviewer of every commit. It does not read code. It replays the recorded commits onto a fresh origin/main in a queue-owned detached worktree, runs the affected or complete gate against that exact tree, and refuses to publish unless the worktree HEAD, index tree, and a clean porcelain-v2 status (submodules included) all match the candidate. The proof lands as a versioned, append-only receipt.
This is the layer that absorbs volume. An agent’s commit that fails lint in a sibling workspace it did not know about is a queue rejection with evidence, not a human comment. The reviewer inherits a commit that is already green against the tree it will actually become.
independent agent review
Between the gates and the human sits the layer people get wrong: another agent. It works only because it is structured as an independent reviewer rather than a second opinion from the author. The phase-delivery skills make the separation explicit. phase-reviewer inspects the plan and the actual diff before reading the implementer’s notes, treats those notes as claims to check, patches only bounded low-risk findings, and reports an honest no-op when there is nothing to fix. It does not commit unless commit authority is explicitly delegated. Its final response is a fixed six-heading contract: Outcome, Changed files, Behavior or findings, Validation, Downstream impact, Blockers and risks.
The fixed form matters more than the findings. A reviewer that must report its validation commands and its unfixed findings in named fields cannot hide a skipped check inside a confident paragraph.
the final read
What remains for the human is deliberately small: does this change belong in the product, does the plan still make sense, and is the evidence actually evidence. The stack exists so that question is asked about a commit that already proved its mechanics.
The disclosure rules underneath are part of the review too, and they are worth stating plainly because they are easy to violate accidentally. This site’s editorial policy distinguishes author review, independent human review, and automated or AI review, and forbids describing automated review as human review. “Reviewed” is a claim about who looked, not a vibe. Any reference page you are reading here carries an admission record with a named reviewer identity and type, a score, and a reassessment date; an AI-drafted page is credited to Hraness, never quietly to a person. A commit or publication receipt is also not authorship evidence: the record shows the artifact landed, not that a person wrote or approved it.
The free portion ends on the claim the rest of the piece substantiates: one reviewer can only check what the gates do not already prove, and a review process for agent work is mostly the work of keeping that true.