Single file review prompt generator for AI built systems

Producer review

Understand what you built with AI, spot risks early, and move forward safely.

Producer review report preview

What it is

The Producer review CLI is a local single file script that asks a few questions, scans your repo, and generates one prompt. You paste that prompt into Codex or Claude Code to get a plain English report on what the system does, where trust changes, and what to check before you ship.

If gate D or E fails, do not ship yet.

What you get

Files written in your repo:

The report produced from the prompt includes:

When to use it

How it works

  1. Download the zip and copy producer_review.py into your repo root.
  2. Run the script and answer the questions.
  3. Open the generated PRODUCER_REVIEW_PROMPT.txt file.
  4. Paste it into Codex or Claude Code and ask for the report.
  5. Review the gates, fix issues, and document the next steps.

Quick run example:

python3 producer_review.py

Privacy

This runs locally on your machine and does not upload your code. You decide what to paste into an AI assistant.

Common questions

Do I need to know how to code

No. The report is written for builders who want clear guidance without digging into source files.

Does this send my code anywhere

No. The CLI runs on your machine and writes a prompt file. If you paste the prompt into another tool, that content is shared there.

Will it fix the code for me

No. It gives you a report and a short path forward so you can decide what to change.

What if a gate fails

Stop and resolve the issue or document a clear mitigation before moving forward.