Ask the oracle (GPT-5.2 with deep reasoning) strategic technical questions. Use for architecture decisions, complex debugging, security analysis, or when you need a second expert opinion. Supports background execution for long-running queries.
Consult a GPT-5.2 reasoning model for strategic technical advice on architecture, complex debugging, or security analysis. Runs in background for long queries while you continue working.
/plugin marketplace add andreasasprou/agent-skills/plugin install oracle@andreas-agent-skillsThis skill is limited to using the following tools:
scripts/oracle.shsystem-prompt.txtThe oracle is a GPT-5.2 reasoning model configured for deep technical analysis. Use it when you need expert-level guidance on complex decisions.
Can do:
Cannot do (by design):
This makes oracle safe to consult without risk of unintended modifications.
Script location: ${CLAUDE_PLUGIN_ROOT}/skills/oracle/scripts/oracle.sh
Use Bash tool directly:
${CLAUDE_PLUGIN_ROOT}/skills/oracle/scripts/oracle.sh "What's the best way to implement rate limiting for this API?"
For questions that require deep reasoning, run in background and poll:
Start the query with run_in_background=true:
${CLAUDE_PLUGIN_ROOT}/skills/oracle/scripts/oracle.sh "Analyze the security implications of this authentication flow and suggest improvements"
Continue working on other tasks while oracle thinks
Poll for status using TaskOutput with block=false:
Get result - for long responses, use tail to avoid context flooding:
# Get last 100 lines of output
tail -100 /path/to/output
Oracle responses follow a tiered structure:
Good oracle questions are:
Examples:
Configure Static Application Security Testing (SAST) tools for automated vulnerability detection in application code. Use when setting up security scanning, implementing DevSecOps practices, or automating code vulnerability detection.