AI Drafted the Docs. Your Job Is Decisions, Not Prose. A developer has proposed a documentation review pipeline that separates AI drafting from human decision-making, using an ownership file to classify sections and a script to extract decision points for merge gates. The workflow aims to prevent volume acceptance and review theater by making the model mark unresolved claims and limiting human review to ownership decisions. When a language model drafts documentation, the bottleneck shifts from writing to reviewing, and most review habits were built for scarce text. Teams respond by reading generated prose line by line, which spends attention on wording the model can regenerate in seconds. The better split separates labor by kind rather than by time: the model produces candidates, a script extracts decision points, and the human answers those decisions. This article shows a review-brief pipeline that turns every generated section into a small list of ownership decisions a merge gate can enforce. Documentation review traditionally assumes that text is scarce enough to justify close reading. Generated text breaks that assumption, because the cost of regenerating a paragraph approaches zero while the cost of verifying a claim stays constant. Two failure patterns appear in teams that review AI drafts the old way. The first is volume acceptance, where long documents get merged because the act of reading felt like work. The second is review theater, where humans edit punctuation while wrong parameter names survive into production. The workflow has four steps, and each one produces a concrete artifact. The pipeline starts with a YAML file that declares what each documentation section may contain. The file is the contract between the drafting model and the human reviewers, and it lives in the repository next to the docs it governs. Three tiers cover most projects, and the exact names matter less than the boundary they draw. docs/ownership.yaml sections: quickstart: tier: model draft model may draft freely api reference: tier: model draft verified model drafts, human verifies claims security: tier: human owned no generated prose accepted migration guide: tier: human owned model draft sections are disposable prose that the team can regenerate at any time, so review stays light. model draft verified sections contain claims about behavior, parameters, or migrations, and the model must mark anything it cannot confirm. human owned sections carry decisions about security, compatibility, and product intent, and no generated text may enter them. Each human-owned section carries a marker like < -- owner: @handle -- , which the script treats as evidence that a person actually authored it. Each generation run starts from the ownership file instead of an open-ended instruction, and the prompt tells the model which sections to draft and which to leave empty. MonkeyCode's free model access keeps this drafting step inexpensive, and its free server option is relevant when the brief generator needs a scheduled home. Disclosure: This article was prepared as part of MonkeyCode's product outreach. Neither option changes the review design, because every draft remains a hypothesis until a human decides otherwise. You are drafting docs for the repository at