โ† All skills
Tencent SkillHub ยท Developer Tools

Duckduckgo Websearch

Perform private, high-quality web searches using DuckDuckGo's Instant Answer API with fallback to scrape top 5 links and summaries without requiring API keys.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Perform private, high-quality web searches using DuckDuckGo's Instant Answer API with fallback to scrape top 5 links and summaries without requiring API keys.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, _meta.json, references/usage_examples.md, scripts/ddg_search.js, scripts/package-lock.json, scripts/package.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 1 sections Open source page

DuckDuckGo Websearch Skill

Purpose Provide a stable, privacy-minded websearch skill using DuckDuckGo's Instant Answer JSON API as primary source and a lightweight HTML SERP scrape as a fallback for richer link lists. Return structured results: concise summary (if available), top 5 links with titles and snippets, and optional short summary of a landed page when requested. When to use Use this skill when the user asks to "search the web", "find links about X", "summarize search results for Y", or any task requiring quick web lookup without paid search APIs. Prefer the skill when privacy-friendly sources are acceptable and rate limits / API keys for other search providers are unavailable. Design principles Progressive disclosure: SKILL.md contains the trigger and workflow. Detailed parsing and helpers are in scripts/ so the agent can execute them without loading large text. Fail gracefully: if Instant Answer returns limited data, the skill falls back to a minimal HTML fetch-and-parse to extract top results. Safety: avoid returning raw HTML; always sanitize snippets and obey robots (basic checks). Bundled resources scripts/ddg_search.js โ€” Node script that performs the search and returns JSON (summary, links[]). Executable by the agent when the skill is invoked. references/usage_examples.md โ€” short examples of prompts that should trigger this skill. Outputs JSON shape returned from scripts/ddg_search.js: { "query": "...", "summary": "short abstract or empty", "links": [ {"title":"...","url":"...","snippet":"..."}, ... up to 5], "source": "instant-answer|serp-fallback", "notes": "any warnings" } Security & limits The script uses DuckDuckGo's public instant-answer endpoint (no key). For many queries this is enough; for others the SERP fallback will perform a lightweight HTML request. Respect rate limits and avoid heavy scraping. Do not follow or fetch pages that explicitly disallow crawling via robots.txt for automation-intended user agents. Installation / Usage (for maintainer) Place this skill in ~/.openclaw/workspace/skills/duckduckgo-websearch Ensure node is available (Node 18+). The script has zero external dependencies (uses built-in https/http and node-html-parser). Test manually: node scripts/ddg_search.js "query terms" Trigger examples (see references/usage_examples.md) "Search DuckDuckGo for recent news about [topic] and give me top links." "Find the best tutorials for Django channels and summarize top results."

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Config2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/usage_examples.md Docs
  • scripts/ddg_search.js Scripts
  • _meta.json Config
  • scripts/package-lock.json Config
  • scripts/package.json Config