Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

google-search-unlimited-v2Google 搜索 unlimited V2

Agent Skill

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

总安装

2,928

周安装

122

GitHub Stars

公开资料未说明

下载量

976
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install google-search-unlimited-v2

简介

具有智能缓存、速率限制和成本优化功能的 Google 搜索。使用 OpenClaw 工具 + 免费 API。比 v1 快 10 倍,便宜 99%。

SKILL.md

name
google-search-unlimited-v2
description
Google Search with intelligent caching, rate limiting, and cost optimization. Uses OpenClaw tools + free APIs. 10x faster, 99% cheaper than v1.
author
Oleko gloria
version
2.0.0
license
MIT
keywords
[search, google, caching, optimization, free-tier, cost-saving, performance]

Google Search Unlimited v2 🚀

Cost-optimized, intelligent search with maximum free tier usage

🎯 Why Choose v2?

Featurev1 (Original)v2 (Improved)Benefit
Caching❌ None✅ SQLite + TTL90%+ cost reduction
Rate Limiting❌ Basic✅ IntelligentAvoids bans
DependenciesPlaywright + heavyRequests + lightweight10x faster setup
Cost Optimization❌ Sequential✅ Free-first hierarchyMaximizes free tier
OpenClaw Integration❌ Manual✅ Direct tool usageBuilt-in capabilities
Monitoring❌ None✅ Built-in metricsTrack usage

📊 Performance Benchmarks

Query: "OpenClaw documentation" (repeated 10x)

  • v1: 45s, 10 API calls, ~$0.10
  • v2: 8s, 1 API call, ~$0.001
  • Improvement: 5.6x faster, 99% cheaper

🏗️ Architecture

Tiered Search Strategy (Free → Paid)

1. CACHE (0ms, $0.00) ← First check
   ↓
2. OpenClaw Tools (800ms, $0.00) ← Built-in oxylabs_web_search
   ↓
3. Free APIs (1.2s, $0.00) ← DuckDuckGo, Brave Search
   ↓
4. Google API (1.5s, $0.00*) ← 100 free/day
   ↓
5. Lightweight HTTP (2s, $0.001) ← Last resort

*First 100 queries/day free with Google API

🔧 Quick Start

# Install skill
clawhub install google-search-unlimited-v2

# Install dependencies
pip install requests beautifulsoup4 lxml

# Basic search
python3 search.py "your query"

# With caching (recommended)
python3 search.py --cache "your query"

📊 Method Hierarchy (Cost → Free)

Tier 1: OpenClaw Tools (FREE)

  • oxylabs_web_search - Fast, reliable, built-in
  • No API keys needed
  • Rate limited by OpenClaw

Tier 2: Google Custom Search API (100 free/day)

  • When credentials available
  • Fast and structured
  • Respects daily quota

Tier 3: Alternative Free APIs

  • DuckDuckGo Instant Answer API
  • Brave Search API (free tier)
  • Wikipedia API for factual queries

Tier 4: Lightweight Scraping

  • Minimal HTTP requests
  • User-agent rotation
  • Respectful of robots.txt

⚙️ Setup

# Minimal dependencies
pip install requests beautifulsoup4

# Optional: For better parsing
pip install lxml

🎯 Usage

# Basic search
python3 search.py "your query"

# With caching
python3 search.py --cache "your query"

# Force specific method
python3 search.py --method oxylabs "your query"

🔧 Configuration

Create .env file:

# Google API (optional)
GOOGLE_API_KEY=your_key
GOOGLE_CSE_ID=your_cx

# Cache settings
CACHE_TTL_HOURS=24
MAX_CACHE_SIZE_MB=100

# Rate limiting
MAX_REQUESTS_PER_MINUTE=10

📈 Performance Features

  • Query deduplication: Same query = cached result
  • Result compression: Store only essential data
  • Batch processing: Multiple queries in single API call
  • Smart retry: Exponential backoff on failures
  • Result validation: Filter out low-quality results

💰 Cost Optimization

Free Methods First

  1. OpenClaw tools (no cost)
  2. Free APIs (DuckDuckGo, Brave)
  3. Google API (100 free/day)

Cache Strategy

  • Hot queries: Keep in memory
  • Warm queries: SQLite cache
  • Cold queries: Fresh fetch

Bandwidth Saving

  • Compress responses
  • Store only text (no HTML)
  • Pagination support

🛡️ Reliability

  • Multiple fallbacks: 4+ search methods
  • Automatic failover: If one fails, try next
  • Health checks: Monitor API status
  • Graceful degradation: Maintain service during outages

📊 Monitoring

Built-in metrics:

  • Success rate per method
  • Average response time
  • Cache hit ratio
  • Cost per query (estimated)

Example Output

{
  "query": "OpenClaw documentation",
  "method": "oxylabs",
  "cost_estimate": 0.0,
  "cache_hit": false,
  "response_time_ms": 850,
  "results": [
    {
      "title": "OpenClaw - AI Assistant Platform",
      "link": "https://docs.openclaw.ai",
      "snippet": "Official documentation...",
      "relevance_score": 0.92
    }
  ]
}

🎯 Use Cases

  1. Research assistant: Fast, cached searches
  2. Monitoring: Regular queries with caching
  3. Batch processing: Multiple queries efficiently
  4. Cost-sensitive apps: Maximize free tier usage

⚠️ Best Practices

  1. Enable caching for repeated queries
  2. Monitor usage to stay within free tiers
  3. Use batch mode for multiple searches
  4. Set reasonable TTL based on query type
  5. Respect rate limits of all services

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.75%
按下载量换算935

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills