# Send Deep Scout 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "deep-scout",
    "name": "Deep Scout",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/JonathanJing/deep-scout",
    "canonicalUrl": "https://clawhub.ai/JonathanJing/deep-scout",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/deep-scout",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deep-scout",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "clawhub.json",
      "config.yaml",
      "examples/openclaw-acquisition.md",
      "prompts/browser-extract.txt"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "deep-scout",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T10:57:05.180Z",
      "expiresAt": "2026-05-09T10:57:05.180Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deep-scout",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deep-scout",
        "contentDisposition": "attachment; filename=\"deep-scout-0.1.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "deep-scout"
      },
      "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/deep-scout"
    },
    "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/deep-scout",
    "downloadUrl": "https://openagent3.xyz/downloads/deep-scout",
    "agentUrl": "https://openagent3.xyz/skills/deep-scout/agent",
    "manifestUrl": "https://openagent3.xyz/skills/deep-scout/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/deep-scout/agent.md"
  }
}
```
## Documentation

### deep-scout

Multi-stage deep intelligence pipeline (Search → Filter → Fetch → Synthesize).

### 1. Ask OpenClaw (Recommended)

Tell OpenClaw: "Install the deep-scout skill." The agent will handle the installation and configuration automatically.

### 2. Manual Installation (CLI)

If you prefer the terminal, run:

clawhub install deep-scout

### 🚀 Usage

/deep-scout "Your research question" [--depth 5] [--freshness pw] [--country US] [--style report]

### Options

FlagDefaultDescription--depth N5Number of URLs to fully fetch (1–10)--freshnesspwpd=past day, pw=past week, pm=past month, py=past year--countryUS2-letter country code for Brave search--languageen2-letter language code--search-count8Total results to collect before filtering--min-score4Minimum relevance score to keep (0–10)--stylereportreport | comparison | bullets | timeline--dimensionsautoComparison dimensions (comma-separated, for --style comparison)--output FILEstdoutWrite report to file--no-browser—Disable browser fallback--no-firecrawl—Disable Firecrawl fallback

### 🛠️ Pipeline — Agent Loop Instructions

When this skill is invoked, execute the following four-stage pipeline:

### Stage 1: SEARCH

Call web_search with:

query: <user query>
count: <search_count>
country: <country>
search_lang: <language>
freshness: <freshness>

Collect: title, url, snippet for each result.
If fewer than 3 results returned, retry with freshness: "py" (relaxed).

### Stage 2: FILTER

Load prompts/filter.txt. Replace template vars:

{{query}} → the user's query
{{freshness}} → freshness param
{{min_score}} → min_score param
{{results_json}} → JSON array of search results

Call the LLM with this prompt. Parse the returned JSON array.
Keep only results where keep: true. Sort by score descending.
Take top depth URLs as the fetch list.

Deduplication: Max 2 results per root domain (already handled in filter prompt).

### Stage 3: FETCH (Tiered Escalation)

For each URL in the filtered list:

Tier 1 — web_fetch (fast):

Call web_fetch(url)
If content length >= 200 chars → accept, trim to max_chars_per_source

Tier 2 — Firecrawl (deep/JS):

If Tier 1 fails or returns < 200 chars:
  Run: scripts/firecrawl-wrap.sh <url> <max_chars>
  If output != "FIRECRAWL_UNAVAILABLE" and != "FIRECRAWL_EMPTY" → accept

Tier 3 — Browser (last resort):

If Tier 2 fails:
  Call browser(action="open", url=url)
  Call browser(action="snapshot")
  Load prompts/browser-extract.txt, substitute {{query}} and {{max_chars_per_source}}
  Call LLM with snapshot content + extraction prompt
  If output != "FETCH_FAILED:..." → accept

If all tiers fail: Use the original snippet from Stage 1 search results. Mark as [snippet only].

Store: { url: extracted_content } dict.

### Stage 4: SYNTHESIZE

Choose prompt template based on --style:

report / bullets / timeline → prompts/synthesize-report.txt
comparison → prompts/synthesize-comparison.txt

Replace template vars:

{{query}} → user query
{{today}} → current date (YYYY-MM-DD)
{{language}} → language param
{{source_count}} → number of successfully fetched sources
{{dimensions_or_auto}} → dimensions param (or "auto")
{{fetched_content_blocks}} → build as:
[Source 1] (url1)
<content>
---
[Source 2] (url2)
<content>

Call LLM with the filled prompt. The output is the final report.

If --output FILE is set, write the report to that file. Otherwise, print to the channel.

### ⚙️ Configuration

Defaults are in config.yaml. Override via CLI flags above.

### 📂 Project Structure

skills/deep-scout/
├── SKILL.md                     ← This file (agent instructions)
├── config.yaml                  ← Default parameter values
├── prompts/
│   ├── filter.txt               ← Stage 2: relevance scoring prompt
│   ├── synthesize-report.txt    ← Stage 4: report/bullets/timeline synthesis
│   ├── synthesize-comparison.txt← Stage 4: comparison table synthesis
│   └── browser-extract.txt      ← Stage 3: browser snapshot extraction
├── scripts/
│   ├── run.sh                   ← CLI entrypoint (emits pipeline actions)
│   └── firecrawl-wrap.sh        ← Firecrawl CLI wrapper with fallback handling
└── examples/
    └── openclaw-acquisition.md  ← Example output: OpenClaw M&A intelligence

### 🔧 Error Handling

ScenarioHandlingAll fetch attempts failUse snippet from Stage 1; mark [snippet only]Search returns 0 resultsRetry with freshness: py; error if still 0Firecrawl not installedfirecrawl-wrap.sh outputs FIRECRAWL_UNAVAILABLE, skip silentlyBrowser tool unavailableSkip Tier 3; proceed with available contentLLM synthesis exceeds contextTrim sources proportionally, prioritize high-score sourcesRate limit on Brave APIWait 2s, retry once

### 📋 Example Outputs

See examples/openclaw-acquisition.md for a full sample report.

Deep Scout v0.1.0 · OpenClaw Skills · clawhub: deep-scout
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JonathanJing
- Version: 0.1.4
## 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-02T10:57:05.180Z
- Expires at: 2026-05-09T10:57:05.180Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/deep-scout)
- [Send to Agent page](https://openagent3.xyz/skills/deep-scout/agent)
- [JSON manifest](https://openagent3.xyz/skills/deep-scout/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/deep-scout/agent.md)
- [Download page](https://openagent3.xyz/downloads/deep-scout)