원클릭으로
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)