local-web-search

TotalClaw 作者 totalclaw

通过 DuckDuckGo HTML 抓取进行免费本地网络搜索,无需 API 密钥。当 web_search 工具不可用或缺少 API 密钥,并且您需要具有源信任评分、重试/退避处理和适合管道的 JSON 输出的快速查询结果时使用。

安装 / 下载方式

TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~mes28io-local-web-search-skill
cURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~mes28io-local-web-search-skill/file -o mes28io-local-web-search-skill.md
## 概述(中文)

通过 DuckDuckGo HTML 抓取进行免费本地网络搜索,无需 API 密钥。当 web_search 工具不可用或缺少 API 密钥,并且您需要具有源信任评分、重试/退避处理和适合管道的 JSON 输出的快速查询结果时使用。

## 原文

# Local Web Search

Run local search without paid APIs.

## Command

```bash
./skills/local-web-search/scripts/local_search.py "<query>" --max 8
```

## Output

Returns JSON with:
- query
- count
- disclaimer
- security
- results[] {title, url, snippet, trust{score,tier,reason}}

## Trust Scoring

- high: docs/papers/.gov/.edu/authoritative domains
- medium: reputable publications/default domains
- low: user-generated platforms (e.g., dev.to, medium, substack)

Use trust score for ranking/filtering only; always verify key claims with primary sources.

## Security

- No environment/token exfiltration
- No external writes
- Outbound HTTPS GET only to search endpoint

## Reliability

- Handles transient errors with exponential backoff + jitter
- Public scraping behavior can change; parser may need updates