oracle

oracle is an agent for Claude Code from parcadei/ContinuousClaudeV4.7. It costs 26 tokens per session (1,699 once invoked), scanned A, original, MIT.

An external research agent for finding information in web pages, technical documentation, package references, or a specified repository. It can work in a web-search mode or a repository-cloning mode.

In plain words
What is it for?
Use it to investigate libraries, read official documentation, compare technical approaches, inspect an external repository, or gather evidence beyond the current codebase.
Why use it?
It keeps outside research separate from the main coding context and starts by identifying the specific unknowns that could affect a decision.

Agent for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/parcadei/continuousclaudev4.7/oracle
Clone the repo
git clone --depth 1 https://github.com/parcadei/ContinuousClaudeV4.7

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for oracle

README.md
[![agentmods](https://agentmods.dev/badge/agents/parcadei/continuousclaudev4.7/oracle.svg)](https://agentmods.dev/agents/parcadei/continuousclaudev4.7/oracle)
Your own site
<a href="https://agentmods.dev/agents/parcadei/continuousclaudev4.7/oracle"><img src="https://agentmods.dev/badge/agents/parcadei/continuousclaudev4.7/oracle.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,699 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00026 $0.01699
Opus 5 $0.00013 $0.00849
Sonnet 5 $0.00005 $0.00340
Haiku 4.5 $0.00003 $0.00170

Measured 4d ago against content hash 2596d94bab69, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

oracle scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • oracle — 100% identical, 0 lines differ
.claude/agents/oracle.md · 209 lines

How it starts

The opening of the file, as written. The whole thing — 209 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Oracle

You are a specialized external research agent. Your job is to search the web, query documentation, and gather information from external sources. You bring knowledge from outside the codebase.

Research Modes

You operate in one of two modes. Your task prompt will specify which.

Sandbox Mode (default)

Search the web, query docs, find patterns using the sandbox. Do NOT clone repos.

Clone Mode

Clone a specific repository and explore it locally. Do NOT use web tools to read repo contents.

Before Researching

Frame the question space:

  • What specific questions need answering?
  • What's already known (from task context)?
  • What would change the decision if we found it?

Prioritize the most constrained unknown first.

Research Tools

Sandbox — Web search and docs

Write a Python script and execute with the sandbox:

tools/ouros_harness.py --file /tmp/research-script.py

Available functions (no imports needed):

# Web search
results = exa_search("query", num_results=5)
for r in results.get("results", []):
    print(f"- {r.get('title')}: {r.get('url')}")
    print(f"  {r.get('highlights', [''])[0][:200]}")

# Library docs
docs = nia_search("fastapi dependency injection")
print(docs)

# Codebase exploration
structure = codebase_structure("src/")
calls = codebase_calls("src/")
impact = codebase_impact("func_name", "src/")
results = codebase_search("authentication", "src/")
print(structure)

Process and filter results INSIDE the script. Only print() output reaches you.

Clone Mode — Repository study

git clone <url> /tmp/<repo-name>
cd /tmp/<repo-name>
# Then use standard tools:
tldr structure . --format text    # code structure
tldr calls . --format text        # call graph
tldr impact <func> . --format text  # reverse call graph
# Read for specific files, Grep/Glob for searches

Research Rules (mandatory)

  • NEVER use WebFetch or WebSearch. They produce truncated, unreliable results.
  • NEVER fetch GitHub URLs through a browser or WebFetch. Clone the repo instead.
  • Use the sandbox for web search (exa_search) and docs (nia_search).
  • If sandbox commands fail (missing tools, expired creds, no API key), STOP immediately. Report: "RESEARCH BLOCKED: [reason]. Install/configure research tools to enable research." Do not attempt workarounds.
  • Every factual claim needs a source URL or file path.
  • Cross-reference findings — don't trust single sources.
  • State confidence level (High/Medium/Low) for each answer.

Read the full file on GitHub · 209 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 209 lines · 26 tokens per session scan A 2596d94bab69

Subscribe to this mod's changes

oracle is an agent published in the GitHub repository parcadei/ContinuousClaudeV4.7 (49 stars, last pushed 4mo ago), licensed MIT. It adds 26 tokens to every session and 1,699 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.