Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

easy-search轻松搜索

Agent Skill

easy-search 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

21,244

周安装

931

GitHub Stars

公开资料未说明

下载量

6,981
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:easy-search(轻松搜索)
来源仓库:https://github.com/hkall/easy-search
安装命令:
openclaw skills install easy-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install easy-search

简介

提供多搜索引擎聚合查询功能,无需API密钥即可进行网络信息检索。

  • 支持Google、Bing、百度等主流引擎,覆盖全球与本地搜索需求。
  • 适合在OpenClaw中快速定位关键词结果或筛选来源线索。
  • 安装命令:openclaw skills install easy-search;默认启用多个搜索源。
  • 实际可用性与响应速度取决于各引擎的实时访问状态。

SKILL.md

name
easy-search
description
Simple web search using multiple search engines with no API key required. Supports Google, Bing, DuckDuckGo, Baidu, Sogou, 360, Brave, Yandex. Features time filtering, interactive mode, snippet extraction, and network diagnostics.

Easy Search Skill

A powerful web search skill that doesn't require API keys. It uses direct HTTP requests and the duckduckgo_search library for reliable results.

Features

  • No API key required - Uses public search interfaces
  • 9 search engines - Google, Bing, DuckDuckGo, Baidu, Sogou, 360, Brave, Yandex, Startpage
  • Auto engine selection - Automatically picks the best available engine
  • Snippet extraction - Get result previews, not just titles
  • Time filtering - Filter by day/week/month/year
  • Interactive mode - Continuous searching with live engine switching
  • Network diagnostics - Built-in connectivity checking and proxy hints
  • Proxy support - Respects ALL_PROXY, HTTPS_PROXY environment variables
  • Result caching - Faster repeated searches
  • Smart failover - Auto-switches to backup engines on failure

Requirements

  • Python 3.6+
  • Optional: pip install duckduckgo-search requests for better results

Commands

Basic Search

# Simple search (positional argument)
python3 {baseDir}/scripts/search.py Python tutorial

# With flag
python3 {baseDir}/scripts/search.py --query "your search terms"

# Specify engine
python3 {baseDir}/scripts/search.py "AI news" --engine bing

# More results
python3 {baseDir}/scripts/search.py "React hooks" --results 10

# JSON output (default)
python3 {baseDir}/scripts/search.py "Vue.js" --format json

# Markdown output
python3 {baseDir}/scripts/search.py "machine learning" --format md

# Simple output (quick reading)
python3 {baseDir}/scripts/search.py "Docker" --format simple

# CSV output
python3 {baseDir}/scripts/search.py "Kubernetes" --format csv

Time Filtering

# News from last 24 hours
python3 {baseDir}/scripts/search.py "AI news" --time day

# Results from last week
python3 {baseDir}/scripts/search.py "React 19" --time week

# Results from last month
python3 {baseDir}/scripts/search.py "Python 3.13" --time month

# Results from last year
python3 {baseDir}/scripts/search.py "best laptops 2024" --time year

Interactive Mode

# Start interactive mode
python3 {baseDir}/scripts/search.py --interactive

# In interactive mode:
# [auto]> Python tutorial          # Search with auto engine
# [auto]> :engine duckduckgo       # Change engine
# [duckduckgo]> React hooks        # Search with new engine
# [duckduckgo]> :format simple     # Change output format
# [duckduckgo]> :check             # Check engine health
# [duckduckgo]> :quit              # Exit

Network Diagnostics

# Run network diagnostics
python3 {baseDir}/scripts/search.py --diagnose

# Check which engines are available
python3 {baseDir}/scripts/search.py --check-engines

Engine Management

# Clear cache
python3 {baseDir}/scripts/search.py --clear-cache

# Disable auto-fallback (stay on specified engine)
python3 {baseDir}/scripts/search.py "query" --engine google --no-fallback

Search Engines

EngineBest ForNotes
autoGeneral useAuto-selects best available engine
startpagePrivacy, globalPrivacy-focused, reliable HTML parsing
duckduckgoPrivacy, globalPreferred, uses library if installed
bingGlobal searchGood reliability, decent snippets
googleBest resultsMay need proxy in some regions
baiduChinese contentStrong anti-crawl measures
sogouChinese contentGood alternative to Baidu
so360Chinese contentAnother Chinese option
bravePrivacy-focusedGrowing index
yandexRussian/GlobalWorks in some regions

Output Formats

JSON

{
  "query": "search terms",
  "engine": "bing",
  "method": "HTML scraping",
  "results": [
    {
      "title": "Result Title",
      "url": "https://example.com",
      "snippet": "Brief description..."
    }
  ],
  "total": 5
}

Markdown

## Search Results: your terms

Engine: **BING**
Method: _HTML scraping_

1. [Result Title](https://example.com)
   > Brief description...

2. [Another Title](https://another.com)
   > More info...

Simple

1. Result Title
   https://example.com
   Brief description...

2. Another Title
   https://another.com
   More info...

Examples

# Quick search for documentation
python3 {baseDir}/scripts/search.py "Python requests library docs"

# Search Chinese content with Sogou
python3 {baseDir}/scripts/search.py "人工智能最新进展" --engine sogou

# Get recent news in markdown format
python3 {baseDir}/scripts/search.py "OpenAI news" --time day --format md

# Use interactive mode for multiple searches
python3 {baseDir}/scripts/search.py -i

# Search with time filter
python3 {baseDir}/scripts/search.py "React 19 features" --time month --results 10

Proxy Configuration

Set environment variables for proxy support:

# Set proxy
export ALL_PROXY="http://127.0.0.1:7890"
export HTTPS_PROXY="http://127.0.0.1:7890"

# Then run search
python3 {baseDir}/scripts/search.py "your query"

Troubleshooting

ProblemSolution
Empty resultsTry a different engine with --engine
Connection timeoutCheck proxy settings or use --timeout 60
Rate limitingWait between searches or switch engines
DuckDuckGo slowInstall library: pip install duckduckgo-search
No snippetsSome engines have limited snippet extraction
Google blockedUse proxy or switch to Bing/DuckDuckGo
All engines failRun --diagnose to check network

Tips for Best Results

  1. Use auto engine - Let the tool pick the best available engine
  2. Install dependencies - pip install duckduckgo-search requests for better reliability
  3. Use time filters - For news and recent topics, use --time day or --time week
  4. Try Chinese engines - Use sogou or so360 for Chinese content
  5. Interactive mode - Great for multiple related searches
  6. Cache is your friend - Repeated searches are instant (1 hour cache)
  7. Run diagnostics - Use --diagnose to troubleshoot network issues

Version History

  • v1.1.0 - Added Startpage engine with proper parsing, fixed HTML entity decoding in URLs
  • v1.0.1 - Added network diagnostics, better proxy hints, improved error messages
  • v1.0.0 - Added 4 new engines (Sogou, 360, Brave, Yandex), time filtering, interactive mode, snippet extraction, engine health caching
  • v4.0.0 - Integrated duckduckgo_search library, auto engine selection
  • v1.0.0 - Initial release with basic search

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

88.77%
按下载量换算6,197

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills