TopRank Skills

Home / Claw Skills / Git / GitHub / web-search
Official OpenClaw rules 36%

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.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 web-search 技能。 若已安装,则直接安装 web-search 技能。

Overview

Skill Key
dwirx/duckse
Author
dwirx
Source Repo
openclaw/skills
Version
-
Source Path
skills/dwirx/duckse
Latest Commit SHA
c801eb762445d3b9d69eba4176d9db05c3797eed

Extracted Content

SKILL.md excerpt

# 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 change" --type news --timelimit w --max-results 15
```

### 5. Image Search

```bash
duckse "<query>" --type images
```

Contoh:

```bash
duckse "sunset over mountains" --type images --max-results 20
```

Filter image:

```bash
duckse "landscape photos" --type images --size Large
duckse "abstract art" --type images --color Blue
duckse "icons" --type images --type-image transparent
duckse "wallpapers" --type images --layout Wide
```

### 6. Video Search

```bash
duckse "<query>" --type videos
```

Contoh:

```bash
duckse "python tutorial" --type videos --max-results 15
```

Filter video:

```bash
duckse "cooking recipes" --type videos --duration short
duckse "documentary" --type videos --resolution high
```

### 7. Books Search

```bash
duckse "<query>" --type boo...

Related Claw Skills