desearch-ai/desearch-openclaw-skills

desearch-web-search

Search the web and get real-time SERP-style results with titles, URLs, and snippets. Use this for general web queries when you need current links and information from across the internet.

First seen Mar 7, 2026

Installation

$ npx skills add desearch-ai/desearch-openclaw-skills --skill desearch-web-search

Also in this package

Other skills from desearch-ai/desearch-openclaw-skills.

npx skills add desearch-ai/desearch-openclaw-skills

Browse all from desearch-ai/desearch-openclaw-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Also listed on

Alternate registries and mirrors of this skill.

Repository health

Stars 2
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,889 B
  • docs SUMMARY.md 211 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 243 installs

SKILL.md

Web Search By Desearch

Real-time web search returning structured SERP-style results with titles, links, and snippets.

Quick Start

  1. Get an API key from https://console.desearch.ai
  2. Set environment variable: export DESEARCHAPIKEY='your-key-here'

Usage

# Basic web search
desearch.py web "quantum computing"

# Paginated results
desearch.py web "quantum computing" --start 10

Options

Option Description
--start Pagination offset (default: 0). Use to get the next page of results.

Response

Example

desearch.py web "best sights in Georgia"
{
  "data": [
    {
      "title": "Cool places and fun things to do in Georgia ? : r/solotravel",
      "snippet": "I was in Georgia earlier this month. My favorite place was Mtirala National Park in Adjara. The mountains and forest were absolutely beautiful ...",
      "link": "https://www.reddit.com/r/solotravel/comments/py4wls/cool_places_and_fun_things_to_do_in_georgia/",
    },
  ]
}

Notes

  • Returns up to 10 results per page. Use --start to paginate.

Errors

Status 401, Unauthorized (e.g., missing/invalid API key)

{
  "detail": "Invalid or missing API key"
}

Status 402, Payment Required (e.g., balance depleted)

{
  "detail": "Insufficient balance, please add funds to your account to continue using the service."
}

Resources