Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

scrapefunscrapefun 搜索

Agent Skill

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

总安装

7,883

周安装

322

GitHub Stars

公开资料未说明

下载量

2,524
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:scrapefun(scrapefun 搜索)
来源仓库:https://github.com/haoweili97/scrapefun
安装命令:
openclaw skills install scrapefun
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install scrapefun

简介

scrapefun 提供面向 OpenClaw 的专用 API,用于高效抓取复杂网页结构。

  • 适用于 OpenClaw 中需要绕过反爬机制、提取嵌套内容或处理异步加载页面的任务。
  • 优先调用 /api/openclaw/* 端点下载结构化数据,减少原始 HTML 处理负担。
  • 需确认 API 服务可用性,并评估请求配额与速率限制政策。
  • 适用于高频数据整理或实时信息更新的应用场景。

SKILL.md

name
openclaw-scrapefun
description
Use this skill when OpenClaw needs to operate a scrapefun server through the dedicated OpenClaw-facing APIs. Prefer /api/openclaw/* query and download endpoints. Use generic scrapefun APIs only for narrow fallback cases.
user-invocable
true
metadata

OpenClaw Scrapefun

Purpose

Use this skill only for scrapefun operational APIs.

Default rule:

  • Prefer X-OpenClaw-Key
  • Prefer /api/openclaw/*
  • Do not silently fall back to /api/metadata, /api/metadata/stats, /api/settings/webdav/search, or /api/settings/webdav/add_offline_download
  • If an expected /api/openclaw/* endpoint returns 404, 403, or validation failure, report the exact blocker instead of switching to an old path unless the fallback is explicitly allowed below

This skill does not perform OpenClaw-side resource discovery.

Auth

Preferred auth:

  • Header: X-OpenClaw-Key: <access key>

Fallback auth:

  • POST /api/auth/login
  • Reuse Authorization: Bearer <token>

Rules:

  • Prefer OPENCLAW_ACCESS_KEY or the saved skill api key
  • Never use OPENCLAW_SCRAPEFUN_API_KEY
  • State the required OpenClaw permissions before calling /api/openclaw/*
  • If a permission is missing, stop and report it

Primary Endpoints

Use these endpoints as the default interface surface:

  • GET /api/openclaw/libraries/catalog

Required permission: library_query Use for listing media entries in a library

  • GET /api/openclaw/media/:metadataId/state

Required permission: library_query Use for existing files, existing episodes, and missing episodes

  • GET /api/openclaw/media/:metadataId/download-target

Required permission: download_target_query Use for target path, season path, storage, and next missing episode

  • POST /api/openclaw/media/:metadataId/download-check

Required permission: download_dedupe Use before every download submission Minimum payload: {} or {"seasonNumber":<n>,"episodeNumber":<n>} Optional fields: candidateName, candidateSize, strictEpisodeMatch

  • POST /api/openclaw/downloads/submit

Required permission: download_submit Use for offline download submission Minimum payload: {"metadataId":"<metadataId>","magnet":"<magnet>"} or {"metadataId":"<metadataId>","urls":["<url>"]} Optional fields: preferredPath, seasonNumber, episodeNumber, candidateMeta

  • POST /api/openclaw/downloads/:downloadId/confirm-landed

Required permission: download_confirm Use to verify landed files after submission Minimum payload: {"metadataId":"<metadataId>"} Optional fields: expectedPath, seasonNumber, episodeNumber, waitMs, forceRefresh

  • POST /api/openclaw/media/:metadataId/finalize-import

Required permission: import_finalize Use for post-download scan, organize, and verification Minimum payload: {"downloadPath":"<webdav path>"} Optional fields: seasonNumber, episodeNumber, matchMode, forceScan, downloadId

  • GET /api/openclaw/downloads/:downloadId

Required permission: download_status or one of download_submit, download_confirm, import_finalize Use for compact workflow status

  • POST /api/openclaw/libraries/scan

Required permission: library_scan Use only for explicit rescan or forced refresh

Default Operation Order

Use these sequences.

1. List a library

  1. GET /api/openclaw/libraries/catalog?libraryName=<name>

Do not use:

  • GET /api/metadata
  • GET /api/metadata/stats

2. Read a show's current state

  1. Resolve metadataId from catalog
  2. GET /api/openclaw/media/:metadataId/state

Do not use:

  • GET /api/metadata

3. Prepare a download

  1. GET /api/openclaw/media/:metadataId/download-target
  2. POST /api/openclaw/media/:metadataId/download-check

Do not manually combine:

  • /api/libraries
  • /api/settings/webdav/storage/resolve
  • /api/settings/webdav/search

unless the fallback rules below explicitly allow it

4. Submit a download

  1. POST /api/openclaw/downloads/submit

Do not call:

  • POST /api/settings/webdav/add_offline_download

directly from this skill

5. Continue after submission

  1. POST /api/openclaw/downloads/:downloadId/confirm-landed
  2. POST /api/openclaw/media/:metadataId/finalize-import
  3. GET /api/openclaw/downloads/:downloadId

Do not manually combine:

  • GET /api/scrape/webdav/list
  • POST /api/scrape/webdav/scan
  • POST /api/scrape/match

as the default path

Endpoint Availability Checks

Before relying on a path in your answer, treat these failures distinctly:

  • 404: endpoint not available on this server version
  • 403: missing OpenClaw permission
  • 400: required parameters missing or invalid

Rules:

  • If catalog, state, download-target, download-check, downloads/submit, confirm-landed, or finalize-import returns 404, say the server does not expose that OpenClaw endpoint
  • If GET /api/openclaw/downloads/:downloadId returns 404, report Download workflow not found; do not describe it as route absence
  • If one of them returns 403, report the exact missing permission and stop
  • Do not describe a legacy fallback as if it were equivalent
  • If POST /api/openclaw/libraries/scan returns partial: true, report the failed library root paths explicitly

Strict Fallback Rules

Fallback is allowed only in these cases.

Allowed fallback

  • GET /api/libraries

Use only when the user explicitly asks for raw library config fields such as path, scraper, sourceMode, or sourcePreferencesJson

  • GET /api/scrape/search

Use only when the user explicitly asks for raw scraper candidates

  • GET /api/scrape/webdav/list

Use only when the user explicitly asks for directory-level file enumeration detail that the OpenClaw endpoints do not return

  • POST /api/openclaw/libraries/scan

Use only when the user explicitly wants a scan or when finalize-import is unavailable and the user still wants a best-effort refresh

Disallowed fallback

  • Do not fall back to GET /api/metadata for library listing
  • Do not fall back to GET /api/metadata for missing episode detection
  • Do not fall back to GET /api/metadata/stats for media browsing
  • Do not fall back to POST /api/settings/webdav/add_offline_download for normal download submission
  • Do not fall back to GET /api/settings/webdav/search for normal landed-file checks

Prohibited Endpoints

Do not use:

  • /api/openclaw/bootstrap/status
  • /api/openclaw/connect/context
  • /api/openclaw/jobs/*
  • /api/openclaw/sites/*
  • /api/openclaw/tasks/*
  • OPENCLAW_URL remote delegation flow

Response Rules

Keep responses functional only.

Always state:

  • auth method
  • endpoint
  • required permission
  • payload shape
  • returned result or blocker

Do not add product commentary or discovery-side explanation unless it is required to explain a blocker.

Examples

View Anime entries

User request:

把 Anime 里的媒体条目发给我看看

Execution:

  1. GET /api/openclaw/libraries/catalog?libraryName=Anime

Check episodes

User request:

芙莉莲现在有哪些集,缺哪些集

Execution:

  1. Find metadataId from catalog
  2. GET /api/openclaw/media/:metadataId/state

Submit magnet

User request:

这个 magnet 下载到对应番剧目录

Execution:

  1. GET /api/openclaw/media/:metadataId/download-target
  2. POST /api/openclaw/media/:metadataId/download-check
  3. POST /api/openclaw/downloads/submit with metadataId and magnet or urls

Continue after download

User request:

下载完成后继续扫出来

Execution:

  1. POST /api/openclaw/downloads/:downloadId/confirm-landed with metadataId
  2. POST /api/openclaw/media/:metadataId/finalize-import with downloadPath
  3. GET /api/openclaw/downloads/:downloadId

Raw library config

User request:

Anime 的路径和 scraper 是什么

Execution:

  1. GET /api/libraries
  2. Return only the matched library's path, type, sourceMode, scraper, and sourcePreferencesJson

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

80.78%
按下载量换算2,039

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills