The pixelbrowse skill ships with PixelRAG and gives Claude Code the ability to screenshot pages and read them visually — seeing charts, diagrams, tables, and layout the way a person does. Instead of fetching raw HTML that strips away visual structure, Claude usesDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/StarTrail-org/PixelRAG/llms.txt
Use this file to discover all available pages before exploring further.
pixelshot (Playwright/CDP) to capture a page as screenshot tiles and then reads the images directly. No MCP server and no backend are required: everything runs on your local machine.
Installation
Install pixelshot so it's on PATH
Use
uv tool or pipx so pixelshot is available globally and Claude can find it:A plain
pip install into a project virtual environment may leave pixelshot off PATH, which means Claude won’t be able to find it. Use uv tool or pipx to keep it isolated yet always available to Claude.Usage
Once installed, you can ask Claude to look at any page — no extra configuration needed. Non-interactive (CLI flag):pixelshot (Playwright/CDP) on your machine — no MCP server, no backend.
How it works
Instead of fetching raw HTML, Claude runspixelshot to capture a page as screenshot tiles. Claude then reads the images directly — seeing the rendered layout, charts, tables, and diagrams just as a person would, rather than a stripped-down text representation.
The pixelrag.md skill file defines exactly when to trigger the tool (on phrases like “screenshot this URL”, “capture this page”, “search Wikipedia visually”, etc.) and which tools are available:
| Tool | What it does |
|---|---|
| render | Capture a URL or local file to tiled JPEG screenshots |
| search | Query a running PixelRAG search API |
| build index | Create a searchable visual index from documents |
Visual search with pre-built indexes
If you have a PixelRAG search API running locally, Claude can query it directly. Send a search request against the running API:| Endpoint | Index type |
|---|---|
:30001 | Wikipedia text chunks (15.7M vectors) |
:30002 | Wikipedia pixel screenshots (28M vectors) |
:30003 | Wikipedia LoRA+ViT pixel (28M vectors) |
Build a local index for Claude
You can build a visual index from any local document collection and serve it so Claude can search it. Create a config file, build the index, then start the search API:pixelrag serve is running, Claude will automatically use it when you ask questions about your documents.