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

ghostfetchghostfetch 命令行

Agent Skill

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

总安装

12,460

周安装

509

GitHub Stars

1

下载量

4,031
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ghostfetch

简介

ghostfetch 是 LLM 代理的 CLI 网络搜索和页面获取工具,支持 DuckDuckGo、Brave、Bing 和 Google。

  • 适用于在 OpenClaw 中打开网页、读取内容或验证前端流程的场景。
  • 通过命令行调用,以 Markdown 格式返回搜索结果与链接,无需浏览器即可运行。
  • 安装命令为 openclaw skills install ghostfetch,需确认权限与维护状态。
  • 使用前请核实是否会触发联网、命令执行或文件读写操作。

SKILL.md

name
ghostfetch
description
CLI web search and page fetcher for LLM agents. Search DuckDuckGo/Brave/Bing/Google, fetch pages as markdown, and extract links — single binary, no browser required.
metadata
openclaw
emoji
👻
requires
bins
["ghostfetch"]

Ghostfetch

Web search and page fetcher for AI agents. Single binary, no browser needed. Fetches pages with browser-like TLS fingerprints for reliable access.

Use for: web searches, fetching page content as markdown, extracting links, and gathering information from the web.

Commands

Search the web

ghostfetch "your search query"                    # Search DuckDuckGo (default)
ghostfetch "query" -e brave                       # Search with Brave
ghostfetch "query" -e google                      # Search with Google
ghostfetch "query" -e bing                        # Search with Bing
ghostfetch "query" -n 5                           # Limit to 5 results
ghostfetch "query" --json                         # JSON output with metadata

Search engines: duckduckgo (default), brave, bing, google

Fetch pages

ghostfetch fetch https://example.com              # Fetch page (raw HTML)
ghostfetch fetch https://example.com -m           # Fetch as markdown (reader mode — preferred)
ghostfetch fetch https://example.com --markdown-full  # Full page as markdown (not just main content)
ghostfetch fetch https://example.com --json       # JSON with body, status, headers, cookies
ghostfetch fetch https://example.com --raw        # Raw HTML without processing
ghostfetch fetch url1 url2 url3 -p 3              # Fetch multiple URLs in parallel

Always use -m (markdown mode) when reading page content — it extracts the main content and converts to clean markdown, saving tokens vs raw HTML.

Extract links

ghostfetch links https://example.com              # Extract all links from page
ghostfetch links https://example.com -f "github"  # Filter links by regex pattern
ghostfetch links https://example.com --json       # JSON output

Flags Reference

FlagShortDefaultWhat it does
--engine-educkduckgoSearch engine to use
--results-n10Number of search results
--markdown-mfalseConvert to markdown (reader mode)
--markdown-fullfalseFull page markdown (not just main content)
--json-jfalseJSON output with metadata
--rawfalseRaw HTML output
--max-parallel-p5Max parallel fetches
--filter-fFilter links by regex
--timeout-t30sRequest timeout
--browser-bchromeBrowser fingerprint: chrome, firefox
--no-cookiesfalseDisable cookie persistence
--follow-LtrueFollow redirects
--verbose-vfalsePrint request/response details
--captcha-serviceCaptcha service: 2captcha, anticaptcha
--captcha-keyCaptcha service API key

Decision Guide

I want to...Use this
Search the webghostfetch "query"
Search with specific engineghostfetch "query" -e brave
Read a web pageghostfetch fetch <url> -m
Read multiple pages at onceghostfetch fetch url1 url2 url3 -m -p 3
Find links on a pageghostfetch links <url>
Find specific linksghostfetch links <url> -f "pattern"
Get structured dataghostfetch fetch <url> --json

Examples

Research a topic

ghostfetch "rust async runtime comparison 2026" -n 5
ghostfetch fetch https://tokio.rs -m

Scrape structured data

ghostfetch fetch https://api.example.com/data --json

Find all GitHub links on a page

ghostfetch links https://awesome-list.com -f "github.com"

Installation

The ghostfetch binary must be in your PATH. Build from source:

git clone https://github.com/neothelobster/ghostfetch.git
cd ghostfetch
go build -o ghostfetch .
cp ghostfetch ~/.openclaw/workspace/tools/

Or run the included setup.sh which clones at a pinned commit with verification.

Requires Go 1.21+ to build. No runtime dependencies.

Security

  • Read-only tool — output goes to stdout only, no file write capability
  • No custom headers or POST bodies — cannot leak secrets to external endpoints
  • No data is stored except optional cookie jars (disabled with --no-cookies)
  • All network requests go directly from your machine — no proxy or third-party service
  • The setup script clones from GitHub at a pinned commit with verification
  • Source code: https://github.com/neothelobster/ghostfetch

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.33%
按下载量换算3,359

安全审计

VirusTotal

通过

ClawScan

未展示

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills