# Send Web Searcher to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "web-searcher",
    "name": "Web Searcher",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kassimisai/web-searcher",
    "canonicalUrl": "https://clawhub.ai/kassimisai/web-searcher",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/web-searcher",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web-searcher",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/research_plan.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "web-searcher",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T22:29:03.381Z",
      "expiresAt": "2026-05-17T22:29:03.381Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web-searcher",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web-searcher",
        "contentDisposition": "attachment; filename=\"web-searcher-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "web-searcher"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/web-searcher"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/web-searcher",
    "downloadUrl": "https://openagent3.xyz/downloads/web-searcher",
    "agentUrl": "https://openagent3.xyz/skills/web-searcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/web-searcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/web-searcher/agent.md"
  }
}
```
## Documentation

### Workflow

Parse the query — Break the user's request into 2-5 specific search queries that cover different angles of the topic.


Search phase — Execute searches using web_search. Rate limit: max 3 searches, then assess before continuing.


Deep dive phase — For promising results, use web_fetch to extract full content. Prioritize:

Primary sources over aggregators
Recent content over old (check dates)
Authoritative domains over random blogs



Cross-reference — Compare findings across sources. Flag contradictions. Note consensus.


Synthesize — Compile findings into a clear, structured response with:

Key findings (bullet points)
Sources cited (URLs)
Confidence level (high/medium/low per claim)
Gaps identified (what couldn't be found)

### Factual queries

Search → verify across 2+ sources → report with citations.

### Comparison/market research

Search each option separately → fetch detail pages → build comparison table → recommend.

### People/company research

Search name + context → fetch LinkedIn/company pages → cross-reference news → compile profile.

### How-to/technical

Search with specific technical terms → fetch documentation/guides → distill steps.

### Guidelines

Max 10 searches per task to avoid rate limits and token waste.
Max 5 page fetches — be selective about which URLs to deep-dive.
Always include source URLs so the user can verify.
If a search returns nothing useful, rephrase and retry once before moving on.
For time-sensitive info, use freshness parameter (pd/pw/pm/py).
Prefer web_fetch with maxChars: 5000 to keep context manageable.
If the task is massive, suggest breaking it into sub-tasks or spawning sub-agents.

### Output Format

## [Topic]

### Key Findings
- Finding 1 (Source: url)
- Finding 2 (Source: url)

### Details
[Expanded analysis]

### Sources
1. [Title](url) — what was found here
2. [Title](url) — what was found here

### Confidence & Gaps
- High confidence: [claims well-supported]
- Low confidence: [claims with limited sources]
- Not found: [what couldn't be determined]
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: kassimisai
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T22:29:03.381Z
- Expires at: 2026-05-17T22:29:03.381Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/web-searcher)
- [Send to Agent page](https://openagent3.xyz/skills/web-searcher/agent)
- [JSON manifest](https://openagent3.xyz/skills/web-searcher/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/web-searcher/agent.md)
- [Download page](https://openagent3.xyz/downloads/web-searcher)