# Send Ghostfetch to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ghostfetch",
    "name": "Ghostfetch",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/neothelobster/ghostfetch",
    "canonicalUrl": "https://clawhub.ai/neothelobster/ghostfetch",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ghostfetch",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ghostfetch",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "setup.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ghostfetch",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T15:20:52.852Z",
      "expiresAt": "2026-05-10T15:20:52.852Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ghostfetch",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ghostfetch",
        "contentDisposition": "attachment; filename=\"ghostfetch-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ghostfetch"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ghostfetch"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ghostfetch",
    "downloadUrl": "https://openagent3.xyz/downloads/ghostfetch",
    "agentUrl": "https://openagent3.xyz/skills/ghostfetch/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ghostfetch/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ghostfetch/agent.md"
  }
}
```
## Documentation

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

### 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 thisSearch the webghostfetch "query"Search with specific engineghostfetch "query" -e braveRead a web pageghostfetch fetch <url> -mRead multiple pages at onceghostfetch fetch url1 url2 url3 -m -p 3Find links on a pageghostfetch links <url>Find specific linksghostfetch links <url> -f "pattern"Get structured dataghostfetch fetch <url> --json

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: neothelobster
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T15:20:52.852Z
- Expires at: 2026-05-10T15:20:52.852Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ghostfetch)
- [Send to Agent page](https://openagent3.xyz/skills/ghostfetch/agent)
- [JSON manifest](https://openagent3.xyz/skills/ghostfetch/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ghostfetch/agent.md)
- [Download page](https://openagent3.xyz/downloads/ghostfetch)