web-research

Installation
SKILL.md

Web Research

This skill guides you through a structured deep research workflow: multi-angle search, selective full-page fetching, and synthesis into a polished, cited report.

Tools available

Search — run Python with the ddgs library:

from ddgs import DDGS
results = DDGS().text(query="your query", max_results=8)
for r in results:
    print(r["title"], r["href"], r["body"])

If ddgs isn't installed: pip install ddgs

Installs
3
GitHub Stars
10
First Seen
Mar 10, 2026
web-research — cyranob/web-forager