Ghostfetch

v1.1.0

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 r...

1· 401·0 current·0 all-time
byNeo The Lobster@neothelobster

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for neothelobster/ghostfetch.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Ghostfetch" (neothelobster/ghostfetch) from ClawHub.
Skill page: https://clawhub.ai/neothelobster/ghostfetch
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: ghostfetch
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install ghostfetch

ClawHub CLI

Package manager switcher

npx clawhub@latest install ghostfetch
Security Scan
VirusTotalVirusTotal
Benign
View report →

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

👻 Clawdis
Binsghostfetch
fetchvk97anmtn63bb9bvcp3gd7yz6w981w8zglatestvk97anmtn63bb9bvcp3gd7yz6w981w8zgscrapingvk97anmtn63bb9bvcp3gd7yz6w981w8zgsearchvk97anmtn63bb9bvcp3gd7yz6w981w8zgwebvk97anmtn63bb9bvcp3gd7yz6w981w8zg
401downloads
1stars
3versions
Updated 2mo ago
v1.1.0
MIT-0

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

Comments

Loading comments...