AgentSkillsCN

web-fetch

单次抓取一个 URL,提取可读的文章内容,以便进行分析与归纳。

SKILL.md
--- frontmatter
name: web-fetch
description: Fetch a single URL and extract readable article content for analysis and summarization.
metadata:
  cyberagent:
    tool: web-fetch
    timeout_class: standard
input_schema:
  type: object
  properties:
    url:
      type: string
output_schema:
  type: object
  properties:
    content:
      type: string
    error:
      type: string

Use this skill when you already have a target URL and need clean readable text.

Guidelines:

  1. Fetch one URL at a time.
  2. Capture title, author/date when available, and main content.
  3. Strip navigation/ads/noise before summarizing.
  4. Flag paywalls, anti-bot blocks, or unavailable pages explicitly.