gpt-web-review

Sends code context to ChatGPT web via Oracle CLI and saves raw responses.

28|7|Updated Mar 30, 2026
One-click install
npx skills add https://github.com/DK625/OneHammer --skill gpt-web-review-dk625
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gpt-web-review
Source: https://github.com/DK625/OneHammer/tree/main/.claude/skills/gpt-web-review
Command: npx skills add https://github.com/DK625/OneHammer --skill gpt-web-review-dk625

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @steipete/oracle.

What problem does it solve? When the local model's reasoning is insufficient for a complex task, this Skill lets you escalate the question to ChatGPT web (GPT-5.5 with Extended Thinking) through the Oracle CLI, attaching full project files as context and returning the raw, unedited answer. ## Core Features & Use Cases - File-attachment-based context: Attaches full relevant files with --file flags instead of pasting content into the prompt, with automatic exclusion of secrets, credentials, and build artifacts. - Raw response archiving: Saves every Oracle/GPT response verbatim to /opt/gpt-response with a timestamped filename, never summarizing or rewriting the answer. - Security guardrails: Enforces exclusion patterns for .env, keys, tokens, databases, and node_modules, plus redaction placeholders for sensitive data. - Use Case: You face a hard architectural decision in your repo. The Skill gathers the relevant source files and diff, sends them to ChatGPT web via Oracle, and returns the raw expert answer saved to disk. ## Quick Start Ask the assistant to send a specific question along with the relevant project files to ChatGPT web via Oracle and return the raw response.

Frequently Asked Questions about gpt-web-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I send code files to ChatGPT web from the terminal?

Use the Oracle CLI with the browser engine and attach files via repeated --file flags. The -p prompt should contain only the task description and a list of attached filenames, never pasted file content.

How do I attach large context to a ChatGPT web prompt?

Use --browser-attachments auto with --browser-bundle-files so Oracle bundles multiple files into a single archive. Add --browser-attachment-timeout 120s to avoid false timeouts on large uploads.

Does Oracle CLI support excluding secrets when attaching files?

Yes. Pass negated glob patterns like --file "!.env*" and --file "!**/*secret*" to exclude credentials, tokens, keys, databases, and build directories such as node_modules and dist.

Why does Oracle fail with 'Unable to find model option matching GPT-5.5 Pro'?

The ChatGPT UI does not expose a literal GPT-5.5 Pro option. Use --model gpt-5.5 with --browser-model-strategy current and --browser-thinking-time extended to match the currently selected Thinking model.

Where are Oracle GPT responses saved?

Raw Oracle output is piped through tee into /opt/gpt-response with a timestamped filename. The file contains the unedited response, and the skill returns it as-is without summarizing.