Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

product-pricing-scraperproduct pricing scraper 浏览器

Agent Skill

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

总安装

2,747

周安装

118

GitHub Stars

公开资料未说明

下载量

963
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install product-pricing-scraper

简介

使用具有重试、退避和安全默认值的 HTML 解析从零售或电子商务页面中提取标准化产品定价数据。

SKILL.md

name
product-pricing-scraper
description
Extract normalized product pricing data from retail or ecommerce pages using HTML parsing with retry, backoff, and safe defaults.
tags
[scraping, ecommerce, pricing, extraction]
metadata

Product Pricing Scraper

Use this skill when you need to pull product pricing details from a product page or a small list of product pages and return normalized JSON.

What it extracts

  • product title
  • current price
  • original/list price when available
  • currency
  • availability / stock text
  • product URL
  • source hints from JSON-LD, meta tags, and visible DOM selectors

Why this skill exists

Pricing pages are noisy and inconsistent. This skill combines:

  1. structured data extraction (JSON-LD)
  2. Open Graph / meta tag fallbacks
  3. CSS selector fallbacks
  4. retry + backoff for temporary failures like 429/5xx

That makes it more reliable than a single-selector scraper.

Inputs

Provide one or more URLs.

Optional knobs:

  • --config <path> for selector overrides
  • --delay <seconds> to slow requests
  • --timeout <seconds> to adjust request timeout

Output

JSON array of normalized pricing records.

Run locally

python3 scraper.py https://example.com/product/sku123
python3 scraper.py urls.txt --input-file
python3 scraper.py https://example.com/product/sku123 --pretty

Example output

[
  {
    "url": "https://example.com/product/sku123",
    "title": "Example Product",
    "currency": "USD",
    "price": 19.99,
    "original_price": 29.99,
    "availability": "InStock",
    "source": {
      "price": "jsonld.offers.price",
      "currency": "jsonld.offers.priceCurrency",
      "title": "meta[property='og:title']"
    }
  }
]

Files

  • scraper.py — main scraper CLI
  • selectors.json — default selector and field fallback config
  • examples/sample_urls.txt — batch input example
  • references/notes.md — implementation notes and failure patterns

Good defaults built from prior runs

This skill bakes in lessons from earlier scraping runs:

  • back off on 429 and common 5xx responses
  • reuse multiple price selectors because ecommerce themes vary widely
  • prefer structured product data when present
  • keep missing price distinct from request failure

Publish

clawhub publish skills/product-pricing-scraper --slug product-pricing-scraper --name "Product Pricing Scraper" --version 1.0.0 --changelog "Initial release with retry/backoff, JSON-LD extraction, and selector fallbacks"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.96%
按下载量换算837

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills