Sources you can inspect
Keep the relevant artifact and intent version visible. A summary should help you reach the evidence.
The review, with its context attached
For the engineer approving another author’s AI-assisted change. Compare the agreed requirements with the exact change and its evidence. The example below is synthetic; real reviews begin through a founder-assisted pilot.
01 / Agreed intent
Make the goal, constraints, and acceptance criteria explicit. Keep the version being reviewed in view, so the discussion has a clear reference point.
Goal: make retrying an invitation safe.
02 / Relevant context
Bring in the documents and decisions that explain the requirement. Open the source rather than trusting an isolated summary.
Retries are allowed. Duplicate delivery is not.
When a provider request times out, delivery may already have been accepted. The retry policy needs to account for that uncertainty.
Open question: does the provider support an idempotency key? Verify this before accepting the recovery behavior.
03 / Inspect the evidence
Select a requirement. Compare the author’s summary with the review questions, then inspect the source. This is a synthetic example of the workflow we are exploring through a founder-assisted pilot.
Intent v3 · PR #42 · commit 7c91e2a
Alex authored the change. Sam is reviewing. All people, code, and evidence in this example are fictional.
Agreed requirements
The sequential retry test supports this case. It does not establish safety when two requests arrive together.
await invite({ email, requestId });
await invite({ email, requestId });
expect(sendEmail).toHaveBeenCalledTimes(1);Synthetic excerpt for this demonstration; not a linked production artifact.
Add a concurrent-request check at the shared delivery boundary. A sequential test cannot answer this question.
The workspace around the review
Issues and projects organize the work. Vault holds useful context. Intent makes the agreement explicit. Start the pilot from your existing workflow.
Harbor / Reliability / In review
Keep the change connected to its project and the people doing the work. The pilot can start with an existing task or PR; you do not need to maintain a second board.
Illustrative workspace content.
Designed for inspectable judgment
Keep the relevant artifact and intent version visible. A summary should help you reach the evidence.
Missing checks and unresolved assumptions belong in the review, not behind a blanket “passed” badge.
The pilot helps prepare a review. It does not automatically approve code or execute agents on your behalf.
Start with one real change
We’re working with small software teams to explore a more grounded review workflow. Bring an existing task or PR. No board migration required.
Founder-assisted pilot. Scope and access agreed together.