# Send Web 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. 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-scout",
    "name": "Web Scout",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/aizain/web-scout",
    "canonicalUrl": "https://clawhub.ai/aizain/web-scout",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/web-scout",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web-scout",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "web-scout",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T22:28:47.812Z",
      "expiresAt": "2026-05-17T22:28:47.812Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web-scout",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web-scout",
        "contentDisposition": "attachment; filename=\"web-scout-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "web-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/web-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/web-scout",
    "downloadUrl": "https://openagent3.xyz/downloads/web-scout",
    "agentUrl": "https://openagent3.xyz/skills/web-scout/agent",
    "manifestUrl": "https://openagent3.xyz/skills/web-scout/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/web-scout/agent.md"
  }
}
```
## Documentation

### Web Scout — AI Agent 全网采集工具箱

基于 Agent Reach 封装，让你的 AI Agent 一键获得全网信息采集能力。

### 支持平台

平台工具免费需要配置🌐 网页Jina Reader✅无📺 YouTubeyt-dlp✅无📺 B站yt-dlp✅服务器需代理📡 RSSfeedparser✅无🔍 全网搜索Exa (MCP)✅自动配置📦 GitHubgh CLI✅需登录🐦 Twitter/Xxreach (bird)✅需 Cookie📖 RedditJSON API + Exa✅服务器需代理📕 小红书xiaohongshu-mcp✅需 Docker + Cookie🎵 抖音douyin-mcp-server✅需 MCP 服务💼 LinkedInlinkedin-mcp✅需浏览器登录🏢 Boss直聘mcp-bosszp✅需扫码登录

### 第一步：安装 Agent Reach CLI

pip install https://github.com/Panniantong/agent-reach/archive/main.zip

### 第二步：自动安装依赖

默认模式（自动安装所有依赖）：

agent-reach install --env=auto

安全模式（只检查不安装，适合生产环境）：

agent-reach install --env=auto --safe

预览模式（只看会做什么）：

agent-reach install --env=auto --dry-run

### 第三步：检查状态

agent-reach doctor

### 第四步：按需配置平台

需要 Cookie 的平台建议使用小号，避免封号风险。

Cookie 导出方法：浏览器登录平台 → 安装 Cookie-Editor 插件 → Export → Header String → 发给 Agent。

配置 Twitter：

agent-reach configure twitter-cookies "COOKIE_STRING"

配置代理（服务器访问 Reddit/B站）：

agent-reach configure proxy http://user:pass@ip:port

配置小红书（需要 Docker）：

docker run -d --name xiaohongshu-mcp -p 18060:18060 xpzouying/xiaohongshu-mcp
mcporter config add xiaohongshu http://localhost:18060/mcp

### 读网页

curl -s "https://r.jina.ai/URL"

### 搜索 Twitter/X

xreach search "关键词" --json

### YouTube/B站 字幕提取

yt-dlp --dump-json "VIDEO_URL"           # 视频信息
yt-dlp --write-sub --skip-download "URL"  # 提取字幕

### 全网搜索（Exa）

mcporter call 'exa.search(query: "关键词", numResults: 10)'

### GitHub

gh repo view owner/repo        # 查看仓库
gh search repos "关键词"        # 搜索仓库
gh issue list -R owner/repo    # 查看 Issue

### RSS

python3 -c "import feedparser; f=feedparser.parse('RSS_URL'); [print(e.title) for e in f.entries[:10]]"

### 小红书

mcporter call 'xiaohongshu.search_feeds(keyword: "关键词")'
mcporter call 'xiaohongshu.get_feed_detail(note_id: "ID")'

### 抖音

mcporter call 'douyin.parse_douyin_video_info(share_link: "分享链接")'

### Reddit

mcporter call 'exa.search(query: "site:reddit.com 关键词")'

### 维护

检查更新：

agent-reach check-update

升级：

pip install --upgrade https://github.com/Panniantong/agent-reach/archive/main.zip

健康检查（适合定时任务）：

agent-reach watch

卸载：

agent-reach uninstall        # 完整卸载
agent-reach uninstall --keep-config  # 保留配置
pip uninstall agent-reach    # 卸载 Python 包

### 安全说明

Cookie 只存本地 ~/.agent-reach/config.yaml，文件权限 600
代码完全开源，可审查
需要 Cookie 的平台（Twitter、小红书）建议用小号
支持 --safe 和 --dry-run 模式

### 致谢

基于 Agent Reach by Panniantong，MIT 协议。
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aizain
- 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:28:47.812Z
- Expires at: 2026-05-17T22:28:47.812Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/web-scout)
- [Send to Agent page](https://openagent3.xyz/skills/web-scout/agent)
- [JSON manifest](https://openagent3.xyz/skills/web-scout/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/web-scout/agent.md)
- [Download page](https://openagent3.xyz/downloads/web-scout)