Refactor high-complexity React components in Dify frontend. Use when `pnpm analyze-component...
npx skills add terry-li-hm/skills --skill "oracle"
Install specific skill from multi-skill repository
# Description
Bundle prompt + files for other LLMs (GPT-5.2 Pro via browser, or API). Use for deep analysis requiring another model's perspective or capabilities.
# SKILL.md
name: oracle
description: Bundle prompt + files for other LLMs (GPT-5.2 Pro via browser, or API). Use for deep analysis requiring another model's perspective or capabilities.
user_invocable: false
github_url: https://github.com/steipete/oracle
Oracle
Bundle prompts + selected files into one-shot requests for other models. Output is advisory — verify against code + tests.
Prerequisites
oracleCLI installed:npx -y @steipete/oracle --help- For browser mode: ChatGPT session in browser
Primary Use Case
Browser mode with GPT-5.2 Pro for "long think" analysis (10 min to 1 hour is normal).
Commands
Preview (No Tokens)
# Summary preview
oracle --dry-run summary -p "<task>" --file "src/**" --file "!**/*.test.*"
# Full preview
oracle --dry-run full -p "<task>" --file "src/**"
# Token report
oracle --dry-run summary --files-report -p "<task>" --file "src/**"
Browser Run (Main Path)
oracle --engine browser --model gpt-5.2-pro -p "<analysis task>" --file "src/**"
API Run
oracle --engine api --model anthropic/claude-sonnet-4 -p "<task>" --file "src/**"
File Selection
# Include pattern
--file "src/**"
# Exclude pattern
--file "!**/*.test.*"
--file "!**/node_modules/**"
Golden Path
- Pick tight file set (fewest files with needed context)
- Preview with
--dry-run+--files-report - Use browser mode for GPT-5.2 Pro workflow
- If detached/timeout: reattach to stored session, don't re-run
Notes
- Avoid
pnpx(sqlite binding issues) — usenpx - Long-running is normal for browser mode
- Treat output as advisory, verify against actual code
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.