ワンクリックで
ghostfetch
Stealthy web fetching for AI agents. Bypasses blocks on X.com and other sites to return clean Markdown.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Stealthy web fetching for AI agents. Bypasses blocks on X.com and other sites to return clean Markdown.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | ghostfetch |
| description | Stealthy web fetching for AI agents. Bypasses blocks on X.com and other sites to return clean Markdown. |
| homepage | https://github.com/iArsalanshah/GhostFetch |
| metadata | {"openclaw":{"emoji":"👻","requires":{"bins":["python3"]}}} |
GhostFetch is a stealthy headless browser service designed specifically for AI agents. It bypasses anti-bot protections (like those on X/Twitter) and returns clean, LLM-friendly Markdown.
GhostFetch is already in your workspace at the repo root. To use it as a skill, ensure the Python environment is set up from the repo directory:
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
playwright install chromium
You can use GhostFetch in two ways:
Use the scraper module directly to get Markdown from a URL.
python3 -m src.core.scraper "https://x.com/user/status/123"
Start the FastAPI server to handle concurrent jobs and webhooks.
# Start server
python3 main.py
# Fetch via API
curl -X POST "http://localhost:8000/fetch" \
-H "Content-Type: application/json" \
-d '{"url": "https://x.com/user/status/123"}'
Created by Syed Arsalan Shah (@iArsalanshah)