claudeers.

🔓 unclaimed — this page was auto-generated from GitHub. Are you the creator?

Claim this page →
// Data & Analytics

insane-review

Use GPT-5.5 Pro (web-only, no API) from inside Claude Code — repomix-pack the relevant code, send to subscription ChatGPT Pro, harvest the review (API cost $0)

// Data & Analytics[ cli ][ api ][ web ][ claude ]#claude#dataMIT$open-sourceupdated 15 days ago
Actively maintained
100/100
last commit 10 days ago
last release 10 days ago
releases 13
open issues 0
// install
git clone https://github.com/fivetaku/insane-review

English | 한국어

insane-review

GPT-5.5 Pro has no API. This plugin uses it from inside Claude Code anyway.

GPT-5.5 Pro lives only in the ChatGPT web app (subscription) — there is no official API, so you can't reach it from Codex CLI, omc ask, or an agent-council API provider. insane-review drives your logged-in ChatGPT web session over CDP: it packs the relevant code with repomix, sends it to Pro, and harvests the review. Zero API cost — it runs on your existing ChatGPT plan.

Quick StartWhy insane-review?How it worksFeaturesTuning & timeoutsRequirements


Quick Start

1. Add the marketplace (once)

/plugin marketplace add https://github.com/fivetaku/gptaku_plugins.git

2. Install

/plugin install insane-review

3. Restart Claude Code

Required for the plugin to load.

4. Prepare the browser bridge (once per machine)

Pro is web-only, so insane-review needs a real, logged-in browser on a debug port:

# launch Comet (or Chrome) with the CDP port, then log into chatgpt.com and pick GPT-5.5 Pro
open -a Comet --args --remote-debugging-port=9222

# verify everything is wired up (node/repomix, playwright, pyperclip, CDP browser)
python3 bin/pack_and_ask.py --check-env

5. Run it

/insane-review review the auth flow in src/auth

Or just say "have Pro review this" / "ask GPT-5.5 Pro about this design" — Claude figures out the target and packs it.


Why insane-review?

  • The only way to reach Pro programmatically — no API exists. A logged-in web session driven over CDP is the bridge, and it costs nothing beyond your subscription.
  • Claude picks the complete relevant set — you don't have to hand-list files. For reviews it sends full code (no --compress, which strips function bodies and produces false "looks fine" verdicts) and audits the packed file list so nothing is silently missing.
  • fail-closed by design — wrong model, unverified login, truncated prompt, an empty pack, or a previous turn's answer are all refused rather than silently sent or saved. Hardened across four rounds of Pro's own self-review (6 → 0 P0s).
  • Two roles, one engine — a standalone reviewer when you ask for a fix/review, or a web-only member of agent-council so Pro can debate alongside Codex/Gemini/others.
  • Citations you can follow — line numbers are packed in, so Pro's findings come back as file:line you can jump to.

How it works

"have Pro review this"  /  council member call
  ↓
Claude selects the COMPLETE relevant file set (full code — no --compress for reviews)
  ↓
repomix pack  (line numbers · secretlint · packed-file-list audit · token count)
  ↓
CDP-attach the logged-in ChatGPT session
Select GPT-5.5 + Pro effort  → re-open menu and VERIFY (mismatch = abort, fail-closed)
  ↓
Attach pack + prompt  → confirm the prompt actually landed in the composer  → send
  ↓
Wait for THIS turn to complete (turn-scoped: new assistant node + new copy button)
Optionally cut long reasoning early with --force-answer-after
  ↓
Harvest the answer → save to  ./.insane-review/response_*.md  (atomic write)

Output lands in the current project's .insane-review/ folder (like kkirikkiri's .kkirikkiri/), never inside the plugin:

.insane-review/
├── pack_<target>_<ts>.md        # what was sent (chmod 600)
└── response_<target>_<ts>.md    # Pro's answer + verified model header

Features

Commands

CommandWhat it does
/insane-review [target/question]Pack the relevant code and send it to GPT-5.5 Pro for review
natural language"have Pro review this", "ask GPT-5.5 Pro about X" — same flow

Two modes

  1. Standalone reviewer — you ask for a fix/review → Claude scopes the target → repomix pack → Pro analysis → applied back.
  2. agent-council member — register Pro as a web-only council member so it debates with other models. See references/council-setup.md.

Key flags

FlagPurpose
--target <dir>Folder to pack (omit for a prompt-only opinion)
--include <glob> / --ignore <glob>Narrow the packed set
--model proSelect the reasoning effort (e.g. Pro)
--require-model "GPT-5.5"Verify the active model name — abort send on mismatch (fail-closed)
--prompt "..." / --prompt-fileThe question
--pack-onlyJust pack (inspect token count), don't send
--councilCouncil mode — response on stdout, logs on stderr
--compresstree-sitter skeleton only — don't use for reviews (drops function bodies)
--check-env / --installDiagnose / install the local toolchain

Tuning & timeouts

Response waiting and pack timeouts are adjustable from both the CLI and the environment — useful because Pro's full reasoning can take 10–15 minutes.

ControlDefaultWhat it does
--max-wait <sec>1200 (20 min)Max time to wait for Pro's response before giving up (fail-closed, no partial save)
INSANE_REVIEW_MAX_WAIT1200Same as --max-wait, via environment
--force-answer-after <sec>offSoft cut: if Pro is still reasoning after N sec, click "Get answer now" so it answers from the reasoning it has done so far — a complete, saved answer (see below)
INSANE_REVIEW_REPOMIX_TIMEOUT300Max seconds for the repomix packing step
--retries <n>1Re-attempts if a send/harvest fails

Two different "timeouts" — don't confuse them:

  • --force-answer-after N (soft cut, recommended for bounding cost). Pro reasons for a long time; this clicks ChatGPT's "Get answer now" at N seconds, so Pro stops reasoning and replies based on what it has reasoned up to that point. That reply is a normal, complete turn — it's harvested and saved like any other. Use it to cap a council member at, say, 120s instead of waiting 10+ minutes.
  • --max-wait N (hard ceiling, fail-closed). If the turn never completes within N seconds and no answer was forced, insane-review gives up without saving the half-streamed text — an incomplete answer is treated as a failure, not a result. This is intentional: it never hands you a truncated review pretending to be done.

Other environment overrides:

VariableDefaultWhat it does
INSANE_REVIEW_CDP_PORT9222Browser remote-debugging port
INSANE_REVIEW_COMET / INSANE_REVIEW_CHROMEapp default pathBrowser executable path
INSANE_REVIEW_REPOMIX_VERSION1.15.0Pinned repomix version (reproducibility)
INSANE_REVIEW_OUT./.insane-reviewOutput directory (also --out-dir)
# example: give Pro up to 25 minutes, but cut reasoning at 5 minutes if it's still thinking
INSANE_REVIEW_MAX_WAIT=1500 python3 bin/pack_and_ask.py \
  --target . --include "src/**" --model pro --require-model "GPT-5.5" \
  --force-answer-after 300 --prompt "Where are the concurrency bugs?"

Requirements

Required

  • Claude Code
  • Python 3.11+ with playwright and pyperclip
  • Node.js / npx
  • A subscription ChatGPT account with GPT-5.5 Pro, logged in inside Comet/Chrome launched on the debug port (--remote-debugging-port=9222)

What's auto-handled vs. what you do

DependencyFirst-run behavior
repomixFully automatic — pulled on demand via npx -y repomix@<pinned>, never needs manual install
playwright / pyperclipChecked on first use by --check-env; install them with --install (runs pip install). A normal run without them stops with a clear instruction (fail-closed) rather than failing mid-way
Browser login + GPT-5.5 ProManual — can't be automated; you log into chatgpt.com and select Pro once
# one shot: checks node/repomix, playwright, pyperclip, CDP browser — and installs the pip deps if missing
python3 bin/pack_and_ask.py --check-env --install

Note

Web-UI automation is not endorsed by OpenAI's ToS and selectors may need maintenance when the ChatGPT DOM changes. Intended for personal subscription use only.


License

MIT


No API. Still Pro.

// compatibility

Platformscli, api, web
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguagePython

// faq

What is insane-review?

Use GPT-5.5 Pro (web-only, no API) from inside Claude Code — repomix-pack the relevant code, send to subscription ChatGPT Pro, harvest the review (API cost $0). It is open-source on GitHub.

Is insane-review free to use?

insane-review is open-source under the MIT license, so it is free to use.

What category does insane-review belong to?

insane-review is listed under data in the Claudeers registry of Claude-compatible tools.

0 views
87 stars
unclaimed
updated 15 days ago

// embed badge

insane-review on Claudeers
[![Claudeers](https://claudeers.com/api/badge/insane-review.svg)](https://claudeers.com/insane-review)

// retro hit counter

insane-review hit counter
[![Hits](https://claudeers.com/api/counter/insane-review.svg)](https://claudeers.com/insane-review)

// reviews

// guestbook

0/500

// related in Data & Analytics

🔓

Apache Airflow - A platform to programmatically author, schedule, and monitor workflows

// dataapache/Python46,041Apache-2.0[ claude ]
🔓

Marketing skills for Claude Code and AI agents. CRO, copywriting, SEO, analytics, and growth engineering.

// datacoreyhaines31/JavaScript36,446MIT[ claude ]
🔓

Turso is an in-process SQL database, compatible with SQLite.

// datatursodatabase/Rust22,655MIT[ claude ]
🔓

Wrap Antigravity, ChatGPT Codex, Claude Code, Grok Build as an OpenAI/Gemini/Claude/Codex compatible API service, allowing you to enjoy the free Gemini 3.1 P…

// datarouter-for-me/Go39,544MIT[ claude ]
→ see how insane-review connects across the ecosystem