oracle

Bundle a user prompt with selected repository files into a one-shot model request.

87|20|Updated Mar 9, 2026
One-click install
npx skills add https://github.com/openaeon/OpenAEON --skill oracle-openaeon
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: oracle
Source: https://github.com/openaeon/OpenAEON/tree/main/skills/oracle
Command: npx skills add https://github.com/openaeon/OpenAEON --skill oracle-openaeon

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Oracle prevents weak, guessy AI answers by bundling your exact prompt together with the most relevant repository files so the model can respond using real project context.

Core Features & Use Cases

  • One-shot prompt + file bundling: Packages your task plus selected files into a single request for repo-grounded answers.
  • Engine-aware execution: Supports browser mode for interactive long runs and API mode for model flexibility when you explicitly choose it.
  • Session and payload control: Helps you preview payload size and costs, reattach to long-running browser sessions, and control what gets included or excluded via globs.
  • Use case: When you need a model to explain or modify a specific subsystem, attach only the truth-relevant files (e.g., src modules and key docs) and ask for a patch plan with tests, then verify against code and test results.

Quick Start

Use the oracle skill to run a browser-based repo-grounded request with: oracle --engine browser --model gpt-5.2-pro -p "<task>" --file "src/**".

Frequently Asked Questions about oracle

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

FAQPage Schema
How do I bundle repository files with a prompt for better AI answers?

To bundle repository files with a prompt for better AI answers, use the oracle CLI to package your task and selected files into a one-shot request. Specify file globs like "src/**" to include relevant code modules so the model responds using actual project context.

What is repo-grounded code analysis and when do I need it?

Repo-grounded code analysis prevents weak, guessy AI answers by attaching truth-relevant files directly to your prompt. You need it when asking a model to debug, refactor, or explain a specific subsystem where actual project context is required for an accurate patch plan.

Can I use browser automation for long-running repository coding tasks?

Yes, you can use browser automation for long-running repository coding tasks by selecting the browser engine mode. This allows interactive execution and enables session persistence so you can reattach to active browser sessions if a task takes extended time to complete.

How do I exclude files and control payload size when sending repository context to a model?

Control payload size and exclude files when sending repository context by applying file glob include and exclude patterns during prompt bundling. You can also perform payload dry-runs to preview the request size and estimated costs before executing the targeted model run.

What are the limitations of attaching codebase files to AI prompts?

A key limitation of attaching codebase files to AI prompts is the risk of exposing sensitive data. You must apply safety practices to avoid attaching secrets, and carefully manage file glob patterns to prevent accidentally bundling configuration files or unrelated repository context into the one-shot request.