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

web-scraper网络爬虫

Agent Skill

web-scraper 用于处理浏览器自动化、网页检查和页面信息提取,适合在 Codex、Claude、Cursor、Gemini CLI 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

539

周安装

22

GitHub Stars

公开资料未说明

下载量

172
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tryshift-sh/skills-store --skill web-scraper

简介

web-scraper 用于处理浏览器自动化、网页检查和页面信息提取。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中打开页面、读取网页或验证前端流程。
  • 通过 GitHub 安装,需结合原始 README 核验具体用法和权限边界。
  • 安装前建议确认维护状态及是否会触发联网、命令执行或文件读写。
  • 注意该技能当前分类为研究检索,功能以实际文档为准。

SKILL.md

Firecrawl Web Scraper

Use this managed skill when the user wants to scrape web pages, crawl websites, discover URLs, search the web, or extract structured data from websites.

This skill uses Shift's local Skill Router. Do not ask the user to paste credentials into chat.

Invocation

Send a POST request to:

${SHIFT_LOCAL_GATEWAY}/skill-router/invoke

Scrape a single page

Extracts content from a URL as clean markdown.

{
  "skillProvider": "firecrawl",
  "skill": "web-scraper",
  "action": "scrape",
  "input": {
    "url": "https://example.com"
  }
}

Optional input fields:

  • formats: array of output formats, default ["markdown"]. Options: markdown, html, links, screenshot
  • onlyMainContent: boolean, default true. Exclude nav/footer
  • includeTags / excludeTags: arrays of HTML tags to include or exclude
  • waitFor: integer, milliseconds to wait before scraping
  • timeout: integer, milliseconds, default 30000
  • mobile: boolean, default false. Emulate mobile viewport
  • location: object with country (ISO 3166-1 alpha-2) and languages array

Crawl a website (async)

Starts an async crawl job. Returns a job ID to poll with crawl_status.

{
  "skillProvider": "firecrawl",
  "skill": "web-scraper",
  "action": "crawl",
  "input": {
    "url": "https://example.com",
    "limit": 50
  }
}

Optional input fields:

  • limit: max pages to crawl, default 10
  • maxDepth: crawl depth
  • includePaths / excludePaths: regex path filters
  • allowExternalLinks: boolean, default false
  • allowSubdomains: boolean, default false
  • scrapeOptions: object with same options as scrape (e.g. {"formats": ["markdown"]})

Check crawl status

Poll for crawl job results using the ID returned from crawl.

{
  "skillProvider": "firecrawl",
  "skill": "web-scraper",
  "action": "crawl_status",
  "input": {
    "crawlId": "crawl-job-uuid"
  }
}

Status values: scraping, completed, failed.

Map a website's URLs

Discovers all URLs on a site without scraping content. Use this to understand site structure before crawling.

{
  "skillProvider": "firecrawl",
  "skill": "web-scraper",
  "action": "map",
  "input": {
    "url": "https://example.com"
  }
}

Optional input fields:

  • search: order results by relevance to this query
  • limit: max URLs, default 5000
  • includeSubdomains: boolean, default true
  • ignoreSitemap: boolean, default false

Search the web

Search the web and optionally scrape the result pages.

{
  "skillProvider": "firecrawl",
  "skill": "web-scraper",
  "action": "search",
  "input": {
    "query": "latest AI research papers"
  }
}

Optional input fields:

  • limit: max results, 1-100, default 5
  • lang: language code
  • country: country code, default US
  • tbs: time filter (qdr:h hour, qdr:d day, qdr:w week, qdr:m month, qdr:y year)
  • scrapeOptions: object to control content extraction from results

Extract structured data (async)

Extracts structured data from URLs using a prompt and/or JSON schema. Returns a job ID to poll with extract_status.

{
  "skillProvider": "firecrawl",
  "skill": "web-scraper",
  "action": "extract",
  "input": {
    "urls": ["https://example.com/pricing"],
    "prompt": "Extract all pricing plans with name, price, and features"
  }
}

Optional input fields:

  • schema: JSON Schema defining expected output structure
  • enableWebSearch: boolean, default false

Check extract status

Poll for extract job results.

{
  "skillProvider": "firecrawl",
  "skill": "web-scraper",
  "action": "extract_status",
  "input": {
    "extractId": "extract-job-uuid"
  }
}

Authentication

This skill requires a Firecrawl API key configured in Shift. Get one at https://www.firecrawl.dev.

Do not ask the user to paste raw credentials into the conversation. Shift handles authentication automatically when the required connection is configured.

Agent behavior

  1. Prefer scrape for single pages. Use crawl only when multiple pages are needed.
  2. Use map first to discover site structure before starting a large crawl.
  3. For async actions (crawl, extract), poll status every few seconds until completed or failed.
  4. Default to markdown format unless the user specifically needs HTML or screenshots.
  5. When scraping fails, suggest the user check the URL or try with waitFor for JavaScript-heavy pages.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.27%
按下载量换算57

Claude

31.77%
按下载量换算55

Cursor

19.3%
按下载量换算33

Gemini CLI

10.67%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills