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

scrapeless-llm-chat-scraper-skillscrapeless LLM 聊天 scraper 技能

Agent Skill

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

总安装

6,181

周安装

255

GitHub Stars

公开资料未说明

下载量

2,020
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install scrapeless-llm-chat-scraper-skill

简介

从 ChatGPT、Gemini、Perplexity、Copilot、Google AI Mode 和 Grok 中抓取 AI 聊天对话。

SKILL.md

name
llm-chat-scraper
description
Scrape AI chat conversations from ChatGPT, Gemini, Perplexity, Copilot, Google AI Mode, and Grok.
homepage
https://www.scrapeless.com
credentials
env
required

LLM Chat Scraper OpenClaw Skill

Use this skill to scrape AI chat conversations from various LLM models via the Scrapeless API. The skill supports ChatGPT, Gemini, Perplexity, Copilot, Google AI Mode, and Grok.

Authentication: Set X_API_TOKEN in your environment or in a .env file in the repo root.

Errors: On failure the script writes a JSON error to stderr and exits with code 1.


Tools

1. ChatGPT Scraper

Scrape ChatGPT responses with optional web search enrichment. Returns JSON object with result_text, model, links, citations, and more.

Command:

python3 scripts/llm_chat_scraper.py chatgpt --query "your prompt"

Examples:

python3 scripts/llm_chat_scraper.py chatgpt --query "Most reliable proxy service for data extraction"
python3 s
Optional: `--country` fcripts/llm_chat_scraper.py chatgpt --query "AI trends in 2024" --web-search
python3 scripts/llm_chat_scraper.py chatgpt --query "Best programming languages" --country GB

or location, --web-search to enable web search.


2. Gemini Scraper

Scrape Google Gemini responses. Returns JSON object with result_text, citations, and more.

Command:

python3 scripts/llm_chat_scraper.py gemini --query "your prompt"

Examples:

python3 scripts/llm_chat_scraper.py gemini --query "Recommended attractions in New York"
python3 scripts/llm_chat_scraper.py gemini --query "Best restaurants in Tokyo" --country JP

Optional: --country for location (JP and TW not supported).


3. Perplexity Scraper

Scrape Perplexity AI responses with optional web search. Returns JSON object with result_text, related_prompt, web_results, media_items.

Command:

python3 scripts/llm_chat_scraper.py perplexity --query "your prompt"

Examples:

python3 scripts/llm_chat_scraper.py perplexity --query "Latest AI developments"
python3 scripts/llm_chat_scraper.py perplexity --query "Quantum computing explained" --web-search

Optional: --country for location, --web-search to enable web search.


4. Copilot Scraper

Scrape Microsoft Copilot responses across different modes (search, smart, chat, reasoning, study). Returns JSON object with result_text, mode, links, citations.

Command:

python3 scripts/llm_chat_scraper.py copilot --query "your prompt"

Examples:

python3 scripts/llm_chat_scraper.py copilot --query "What is machine learning?"
python3 scripts/llm_chat_scraper.py copilot --query "Explain blockchain" --mode reasoning
python3 scripts/llm_chat_scraper.py copilot --query "Best laptop 2024" --mode search

Optional: --country for location (JP and TW not supported), --mode for operation mode.


5. Google AI Mode Scraper

Scrape Google AI Mode responses. Returns JSON object with result_text, result_md, result_html, citations, raw_url.

Command:

python3 scripts/llm_chat_scraper.py aimode --query "your prompt"

Examples:

python3 scripts/llm_chat_scraper.py aimode --query "Best programming languages to learn"
python3 scripts/llm_chat_scraper.py aimode --query "Climate change solutions" --country GB

Optional: --country for location (JP and TW not supported).


6. Grok Scraper

Scrape xAI Grok responses with different modes (FAST, EXPERT, AUTO). Returns JSON object with full_response, user_model, follow_up_suggestions, web_search_results.

Command:

python3 scripts/llm_chat_scraper.py grok --query "your prompt"

Examples:

python3 scripts/llm_chat_scraper.py grok --query "Explain quantum entanglement"
python3 scripts/llm_chat_scraper.py grok --query "What's happening in AI" --mode MODEL_MODE_EXPERT
python3 scripts/llm_chat_scraper.py grok --query "Latest tech news" --mode MODEL_MODE_FAST

Optional: --country for location (JP and TW not supported), --mode for operation mode.


Summary

ActionCommandArgumentExample
ChatGPTchatgpt--querypython3 scripts/llm_chat_scraper.py chatgpt --query "AI trends"
Geminigemini--querypython3 scripts/llm_chat_scraper.py gemini --query "Best restaurants"
Perplexityperplexity--querypython3 scripts/llm_chat_scraper.py perplexity --query "Latest news"
Copilotcopilot--querypython3 scripts/llm_chat_scraper.py copilot --query "Explain ML"
Google AI Modeaimode--querypython3 scripts/llm_chat_scraper.py aimode --query "Programming"
Grokgrok--querypython3 scripts/llm_chat_scraper.py grok --query "Quantum physics"

Output: All commands return JSON objects with model-specific fields (see tool descriptions above).


Response Fields by Model

ChatGPT

  • result_text: Markdown response
  • model: Model identifier (e.g., gpt-4)
  • web_search: Boolean indicating if search ran
  • links: Array of supplementary links
  • citations: Array of content references

Gemini

  • result_text: Markdown response
  • citations: Array with favicon, highlights, snippet, title, url, website_name

Perplexity

  • result_text: Markdown response
  • related_prompt: Array of related questions
  • web_results: Array with name, url, snippet
  • media_items: Array of media references

Copilot

  • result_text: Markdown response
  • mode: Mode used (search/smart/chat/reasoning/study)
  • links: Array of outbound links
  • citations: Array with title, url

Google AI Mode

  • result_text: Answer body
  • result_md: Markdown version
  • result_html: HTML version
  • raw_url: Original URL
  • citations: Array with snippet, thumbnail, title, url, website_name, favicon

Grok

  • full_response: Response content
  • user_model: Model used
  • follow_up_suggestions: Array of suggested questions
  • web_search_results: Array with preview, title, url
  • conversation: Object with conversation metadata

Notes

⚠️ Regional Restrictions:

  • Gemini, Copilot, Google AI Mode, and Grok do not support Japan (JP) and Taiwan (TW)

⚠️ Result Expiry:

  • Task results are available for 12 hours

⚠️ Rate Limits:

  • 429 errors indicate rate limit exceeded. Reduce request frequency or upgrade plan.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.38%
按下载量换算1,442

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills