Agent skill · Content & Marketing

web-search

This skill should be used when users need to search the web for information, find current content, look up news articles, search for images, or find videos. It uses duckse (DDGS-based CLI) to return clean results in pretty text or JSON.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill duckse --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/ai-llm/duckse/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Web Search (duckse) ## Overview Gunakan `duckse` untuk metasearch web berbasis DDGS. Skill ini mendukung: - `text`, `news`, `images`, `videos`, `books` - filter waktu, region, safe search, backend - output rapi (default) atau JSON (`--json`) - URL final via redirect (`--expand-url`) ## When to Use This Skill Gunakan skill ini saat user meminta: - pencarian web umum - berita terbaru/topik tertentu - pencarian gambar/video - riset cepat dengan sumber URL - fact-checking berbasis hasil web ## Prerequisites Pastikan `duckse` tersedia: ```bash duckse --help ``` Jika belum ada, install: ```bash curl -sSL https://raw.githubusercontent.com/dwirx/duckse/main/scripts/install.sh | bash ``` ## Core Commands ### 1. Basic Web Search ```bash duckse "<query>" ``` Contoh: ```bash duckse "python asyncio tutorial" ``` ### 2. Limit Results ```bash duckse "<query>" --max-results <N> ``` Contoh: ```bash duckse "machine learning frameworks" --max-results 20 ``` ### 3. Time Filter ```bash duckse "<query>" --timelimit <d|w|m|y> ``` Contoh: ```bash duckse "artificial intelligence news" --type news --timelimit w ``` ### 4. News Search ```bash duckse "<query>" --type news ``` Contoh: ```bash duckse "climate

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. Prerequisites
  4. Core Commands
  5. 1. Basic Web Search
  6. 2. Limit Results
  7. 3. Time Filter
  8. 4. News Search
  9. 5. Image Search
  10. 6. Video Search
  11. 7. Books Search
  12. 8. Region and SafeSearch
  13. 9. JSON and Final URL
  14. Valid Backends by Type
Ships with 1 file
  • metadata.json
Commands it runs
duckse --help
curl -sSL https://raw.githubusercontent.com/dwirx/duckse/main/scripts/install.sh | bash
duckse "<query>"
duckse "python asyncio tutorial"
duckse "<query>" --max-results <N>
duckse "machine learning frameworks" --max-results 20
duckse "<query>" --timelimit <d|w|m|y>
duckse "artificial intelligence news" --type news --timelimit w
duckse "<query>" --type news
duckse "climate change" --type news --timelimit w --max-results 15
More from claude-skill-registry
All skills →
About this skill
What does the web-search skill do?

This skill should be used when users need to search the web for information, find current content, look up news articles, search for images, or find videos. It uses duckse (DDGS-based CLI) to return clean results in pretty text or JSON.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill duckse --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going