🔮 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:
- One function call for comprehensive research.
- Automatic source triangulation (cross-reference web + wiki).
- 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
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
{
"status": "success",
"topic": "...",
"sources_used": ["wikipedia", "web_search", "url_fetch"],
"total_findings": 4,
"findings": [
{"source": "Wikipedia", "title": "...", "content": "..."},
{"source": "Web Search", "title": "...", "extended_content": "..."}
]
}