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

pangolinfo-scrape-legacypangoinfo 刮掉遗产

Agent Skill

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

总安装

11,681

周安装

468

GitHub Stars

公开资料未说明

下载量

3,781
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install pangolinfo-scrape-legacy

简介

使用 Pangolin API 搜索 Google 并抓取 Amazon。支持AI模式搜索(带有多轮对话的Google AI概述),带有AI概述的标准SERP

SKILL.md

name
pangolin-serp
description
>

Pangolin SERP & Scrape

New canonical (AI SERP): https://clawhub.ai/pangolinfo/pangolinfo-ai-serp Amazon skill: https://clawhub.ai/pangolinfo/pangolinfo-amazon-scraper

Search Google and scrape Amazon programmatically via Pangolin APIs. Extract AI overviews, organic search results, Amazon product data, and page screenshots.

Prerequisites

  • Python 3.6+ (uses only standard library)
  • Pangolin account at pangolinfo.com
  • Environment variables (one of):

- PANGOLIN_TOKEN -- existing bearer token - PANGOLIN_EMAIL + PANGOLIN_PASSWORD -- for automatic login

Quick Start

AI Mode Search (Google AI Overview)

python3 scripts/pangolin.py --q "what is quantum computing" --mode ai-mode

Standard SERP with AI Overview

python3 scripts/pangolin.py --q "how does java work" --mode serp --screenshot

Multi-Turn Dialogue

python3 scripts/pangolin.py --q "python web frameworks" --mode ai-mode \
  --follow-up "compare flask vs django" \
  --follow-up "which is better for beginners"

Amazon Product Detail

python3 scripts/pangolin.py --url "https://www.amazon.com/dp/B0DYTF8L2W" --mode amazon

Amazon Keyword Search

python3 scripts/pangolin.py --q "wireless mouse" --mode amazon --parser amzKeyword

Workflow

  1. Authenticate -- Token resolved from env var, cache (~/.pangolin_token), or fresh login
  2. Choose API mode -- ai-mode | serp | amazon
  3. Execute -- Script builds the request, calls the API with retry logic
  4. Parse output -- Structured JSON to stdout

Usage

AI Mode (--mode ai-mode)

Uses parserName: "googleAISearch" with udm=50 to get Google AI Mode results.

python3 scripts/pangolin.py --q "explain machine learning" --mode ai-mode

Output includes ai_overview with content paragraphs and source references.

AI Overview SERP (--mode serp)

Uses parserName: "googleSearch" for standard SERP results with AI overview extraction.

python3 scripts/pangolin.py --q "best programming languages 2025" --mode serp

Output includes both organic_results and optional ai_overview.

Multi-Turn Follow-Up

Add follow-up questions to an AI Mode search. Keep to 5 or fewer for optimal performance (more is allowed but slower):

python3 scripts/pangolin.py --q "kubernetes" --mode ai-mode \
  --follow-up "how to deploy" \
  --follow-up "monitoring tools" \
  --follow-up "cost optimization"

Amazon (--mode amazon)

Scrape Amazon product data using various parsers.

Product detail by URL:

python3 scripts/pangolin.py --url "https://www.amazon.com/dp/B0DYTF8L2W" --mode amazon

Keyword search:

python3 scripts/pangolin.py --q "mechanical keyboard" --mode amazon --parser amzKeyword

Best sellers:

python3 scripts/pangolin.py --url "https://www.amazon.com/gp/bestsellers/electronics" \
  --mode amazon --parser amzBestSellers

With custom zipcode and raw HTML:

python3 scripts/pangolin.py --url "https://www.amazon.com/dp/B0DYTF8L2W" \
  --mode amazon --zipcode 90210 --format rawHtml

Available Amazon parsers:

ParserUse Case
amzProductDetailSingle product page (default)
amzKeywordKeyword search results
amzProductOfCategoryCategory listing
amzProductOfSellerSeller's products
amzBestSellersBest sellers ranking
amzNewReleasesNew releases ranking
amzFollowSellerProduct variants / other sellers

Authentication Only

python3 scripts/pangolin.py --auth-only

Raw API Response

python3 scripts/pangolin.py --q "test" --mode ai-mode --raw

All CLI Options

--q QUERY          Search query
--url URL          Target URL (for Amazon product pages, category pages, etc.)
--mode MODE        ai-mode (default) | serp | amazon
--screenshot       Capture page screenshot (Google only)
--follow-up TEXT   Follow-up question (repeatable, ai-mode only)
--num N            Number of results (default: 10, Google only)
--parser PARSER    Amazon parser name (default: amzProductDetail)
--zipcode CODE     Amazon zipcode (default: 10041)
--format FMT       Amazon response format: json (default) | rawHtml | markdown
--auth-only        Authenticate and show token info
--raw              Output raw API response

Choosing the Right API

FeatureAI ModeSERPAmazon
ParsergoogleAISearchgoogleSearchamz* (7 types)
Input--q--q--url or --q
Primary outputAI-generated answerOrganic results + AI overviewProduct data
Multi-turnYes (via --follow-up)NoNo
ScreenshotYesYesNo
Best forAI answersSearch results with AI contextProduct & market data
Cost2 credits2 credits1 credit (json) / 0.75 (raw)

Output Format

Google (ai-mode / serp)

{
  "success": true,
  "task_id": "...",
  "results_num": 1,
  "ai_overview_count": 1,
  "ai_overview": [{"content": ["..."], "references": [{"title": "...", "url": "...", "domain": "..."}]}],
  "organic_results": [{"title": "...", "url": "...", "text": "..."}],
  "screenshot": "https://..."
}

Amazon

{
  "success": true,
  "task_id": "...",
  "url": "https://www.amazon.com/dp/...",
  "results_count": 1,
  "product": {"asin": "...", "title": "...", "price": "...", "star": "...", "rating": "..."}
}

See reference files for full response schemas.

Exit Codes

CodeMeaning
0Success
1API error (non-zero response code)
2Usage error (invalid arguments)
3Network error
4Authentication error

Troubleshooting

ProblemSolution
Auth failsCheck PANGOLIN_EMAIL and PANGOLIN_PASSWORD env vars
Empty AI overviewNot all queries trigger AI overview; try informational queries
Token invalid (1004)Script auto-refreshes; ensure email/password env vars are set
Insufficient credits (2001)Top up at pangolinfo.com
TimeoutScript retries 3x with backoff; check network
Amazon returns emptyVerify the URL and parser match (e.g. product URL + amzProductDetail)

See references/error-codes.md for the full error code reference.

Deep-Dive Documentation

ReferenceContent
references/ai-mode-api.mdAI Mode API schema, multi-turn dialogue mechanism
references/ai-overview-serp-api.mdAI Overview SERP API schema, organic result structure
references/amazon-api.mdAmazon Scrape API, all parser types, product fields
references/error-codes.mdError codes, auth lifecycle, credit management

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.08%
按下载量换算3,519

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills