Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

web-fetch网络获取

Agent Skill

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

总安装

930

周安装

38

GitHub Stars

公开资料未说明

下载量

298
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:web-fetch(网络获取)
来源仓库:https://github.com/creminiai/cremini-skills
仓库路径:skills/web-fetch
安装命令:
npx skills add https://github.com/creminiai/cremini-skills --skill web-fetch
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/creminiai/cremini-skills --skill web-fetch

简介

web-fetch 通过无头 Chrome 实例抓取网页内容,支持 JavaScript 渲染和动态页面加载。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中提取完整文本、处理 SPA 或 JS 重定向。
  • 依赖本地安装的 Google Chrome 或 Chromium,无需 API 密钥,但需确保浏览器可访问。
  • 使用前请确认系统已安装兼容浏览器,并注意脚本可能发起网络请求或提取外部资源。
  • web-fetch 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Web Fetch

Controls a headless Chrome instance via Chrome DevTools Protocol (CDP) to fetch web pages with full JavaScript rendering. Handles JS redirects, SPAs, and dynamic content. Extracts clean text from any URL.

Prerequisites

  • Google Chrome or Chromium: Must be installed on the system.

- macOS: brew install --cask google-chrome - Ubuntu/Debian: sudo apt install google-chrome-stable - Windows: winget install Google.Chrome

  • Python 3: Standard library only. Zero pip dependencies. Optionally trafilatura for better content extraction.
  • No API keys or tokens required.

Usage

Single URL

python <skill-path>/scripts/web_fetch.py --url "https://example.com/article"

Multiple URLs (single Chrome session, efficient)

python <skill-path>/scripts/web_fetch.py --url "https://example.com/a" --url "https://example.com/b"

Piped input (one URL per line)

echo "https://example.com/article" | python <skill-path>/scripts/web_fetch.py

JSON output to file (recommended for multiple URLs)

# Cross-platform temp dir
TMPDIR=$(python -c "import tempfile; print(tempfile.gettempdir())")
python <skill-path>/scripts/web_fetch.py --url "https://example.com" --format json -o "$TMPDIR/results.json"

Options

FlagDefaultDescription
--urlURL to fetch (repeatable)
--formattextOutput format: text or json
-o, --outputstdoutWrite to file instead of stdout (recommended for large results)
--wait-ms1500Wait time for JS rendering in milliseconds
--timeout15Per-URL timeout in seconds
--max-chars15000Max characters per page
--batch-size3URLs per batch (Chrome restarts between batches for stability)
--portautoCDP debugging port (default: auto-detect free port)

Output

Text mode (default)

Plain text content of each URL, separated by ---.

JSON mode

[
  {
    "url": "https://news.google.com/rss/articles/...",
    "final_url": "https://www.theguardian.com/actual-article",
    "success": true,
    "content": "Article text content..."
  }
]

On failure:

[
  {
    "url": "https://example.com/broken",
    "success": false,
    "error": "Page load timeout"
  }
]

How It Works

  1. Finds Chrome — Checks platform-specific paths, then searches PATH
  2. Launches isolated Chrome--headless=new --remote-debugging-port=PORT --user-data-dir=TMPDIR (never conflicts with your running Chrome)
  3. Controls via CDP — Connects over WebSocket using a pure-Python CDP client (no dependencies)
  4. Navigates & waits — Uses Page.navigate, listens for loadEventFired, then waits for JS rendering
  5. Captures content — Gets final URL via Runtime.evaluate, extracts DOM via DOM.getOuterHTML
  6. Extracts text — Uses trafilatura (if installed) or falls back to HTML tag stripping
  7. Cleans up — Terminates Chrome and removes temp profile

Key Advantages

  • No profile conflicts — Uses isolated --user-data-dir, works alongside your running Chrome
  • Handles JS redirects — Google News, URL shorteners, SPA routing all work
  • Zero dependencies — Pure Python 3 stdlib (WebSocket client included)
  • Single Chrome session — Multiple URLs reuse one instance (fast)
  • Cross-platform — Mac, Windows, Linux

Cross-Platform Support

PlatformChrome Paths Checked
macOS/Applications/Google Chrome.app/..., Chromium.app
Linux/usr/bin/google-chrome, chromium, snap chromium
Windows%ProgramFiles%\Google\Chrome\..., %LocalAppData%\...

Falls back to searching PATH on all platforms.

Notes

  • No configuration needed — Just have Chrome installed. No need to enable "remote debugging" or change any Chrome settings. The script handles everything automatically.
  • macOS first run — The system may show a popup asking "Do you want the application Google Chrome to accept incoming network connections?" Click Allow. This is because CDP uses a local port (127.0.0.1) — no external network traffic is involved.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.8%
按下载量换算98

Claude

31.31%
按下载量换算93

Cursor

18.95%
按下载量换算56

Gemini CLI

9.48%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills