chatgpt-pro
Send prompts to ChatGPT Pro via Playwriter browser automation. Use for cross-validation, second opinions, or leveraging GPT-5.2 Pro's research-grade intelligence.
npx skills add majiayu000/claude-skill-registry --skill chatgpt-pro --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# ChatGPT Pro Automation Send prompts to ChatGPT (including project GPTs) via Playwriter and get responses back. Connects to your existing Chrome session - no need to quit Chrome or manage cookies. ## When to use - Cross-validate complex reasoning with a second model - Leverage GPT-5.2 Pro's extended thinking for research tasks - Query a ChatGPT Project that has custom instructions/files ## Requirements - Chrome with Playwriter extension installed and activated on at least one tab - User must be logged into ChatGPT in Chrome - Dependencies: `playwright-core`, `playwriter` ## Configuration Set `CHATGPT_ORACLE_URL` to use a custom default URL (e.g., a ChatGPT Project). **Option 1: `.env` file in repo root** ```bash # .env CHATGPT_ORACLE_URL="https://chatgpt.com/g/g-p-.../project" ``` **Option 2: Environment variable** ```bash export CHATGPT_ORACLE_URL="https://chatgpt.com/g/g-p-.../project" ``` If not set, defaults to `https://chatgpt.com/`. ## Usage ### As a module ```javascript import { askChatGPT } from './chatgpt-automation.js'; const result = await askChatGPT({ prompt: 'Your question here', model: 'pro' }); console.log(result.response); ``` ### From command line ```bash node .cl
- When to use
- Requirements
- Configuration
- Usage
- As a module
- From command line
- Parameters
- Return value
- Models
- Examples
- Simple question
- With a project GPT
- With file attachments
- Long-running requests
export CHATGPT_ORACLE_URL="https://chatgpt.com/g/g-p-.../project" node .claude/skills/chatgpt-pro/chatgpt-automation.js "What is 2+2?"
What does the chatgpt-pro skill do?
Send prompts to ChatGPT Pro via Playwriter browser automation. Use for cross-validation, second opinions, or leveraging GPT-5.2 Pro's research-grade intelligence.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill chatgpt-pro --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
