ddg-search
2
总安装量
1
周安装量
#66647
全站排名
安装命令
npx skills add https://github.com/iangcastill0/betterblood --skill ddg-search
Agent 安装分布
amp
1
cline
1
opencode
1
cursor
1
kimi-cli
1
codex
1
Skill 文档
DuckDuckGo Search via web_fetch
Search the web using DuckDuckGo Lite’s HTML interface, parsed via web_fetch. No API key or package install required.
How to Search
web_fetch(url="https://lite.duckduckgo.com/lite/?q=QUERY", extractMode="text", maxChars=8000)
- URL-encode the query â use
+for spaces - Use
extractMode="text"(not markdown) for clean results - Increase
maxCharsfor more results
Region Filtering
Append &kl=REGION for regional results:
au-enâ Australiaus-enâ United Statesuk-enâ United Kingdomde-deâ Germanyfr-frâ France
Full list: https://duckduckgo.com/params
Example â Australian search
web_fetch(url="https://lite.duckduckgo.com/lite/?q=best+coffee+melbourne&kl=au-en", extractMode="text", maxChars=8000)
Reading Results
Results appear as numbered items with title, snippet, and URL. Skip entries marked “Sponsored link” (ads) â organic results follow.
Search-then-Fetch Pattern
- Search â query DDG Lite for a list of results
- Pick â identify the most relevant URLs
- Fetch â use
web_fetchon those URLs to read full content
Tips
- First 1-2 results may be ads â skip to organic results
- For exact phrases, wrap in quotes:
q=%22exact+phrase%22 - Add specific terms to narrow results (site name, year, location)
Limitations
- No time/date filtering (DDG Lite doesn’t support
&df=reliably via fetch) - Text results only â no images or videos
- Results sourced from Bing (may differ from Google)
- Google search does NOT work via web_fetch (captcha blocked)