# Oracle Research

> 🔮 Oracle Research Skill (HYBRID SUPERPOWER)

- Skill: `moeabdelaziz007/oracle-research` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add moeabdelaziz007/oracle-research`
- Raw SKILL.md: https://api.skillmd.com/api/skills/moeabdelaziz007/oracle-research/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: Moeabdelaziz007 (https://skillmd.com/u/moeabdelaziz007)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/moeabdelaziz007/oracle-research

---

# 🔮 Oracle Research Skill (HYBRID SUPERPOWER)

## Overview

A **Unified Research Engine** that combines three zero-config skills into one super-powered tool:

- 👻 **Ghost Search** (DuckDuckGo web search)
- 📚 **Wiki Intelligence** (Wikipedia summaries)
- 🌐 **URL Ripper** (Deep content extraction)

## Why Hybrid?

Instead of calling three separate tools, `Oracle Research` provides:

1. **One function call** for comprehensive research.
2. **Automatic source triangulation** (cross-reference web + wiki).
3. **Deep content extraction** from discovered URLs.

## Capabilities

| Function | Description |
| :--- | :--- |
| `deep_research(topic)` | Full research with all sources. |
| `quick_lookup(topic)` | Fast lookup (wiki + 2 web results). |

## Usage

```python
from skills.oracle_research.tool import deep_research, quick_lookup

# Comprehensive Research
report = deep_research("Quantum Computing", web_results=5)
for finding in report["findings"]:
    print(f"[{finding['source']}] {finding['title']}")

# Quick Lookup
quick = quick_lookup("Python 3.12 features")
```

## Requirements

- `ddgs` (for web search, optional)
- No other dependencies required!

## Output Structure

```json
{
  "status": "success",
  "topic": "...",
  "sources_used": ["wikipedia", "web_search", "url_fetch"],
  "total_findings": 4,
  "findings": [
    {"source": "Wikipedia", "title": "...", "content": "..."},
    {"source": "Web Search", "title": "...", "extended_content": "..."}
  ]
}
```

