Convert code repositories into structured PDF collections for LLM collaboration.
Project description
📖 Introduction
pixrep is a developer tool designed to bridge the gap between large code repositories and Multimodal Large Language Models.
Instead of feeding raw text that consumes massive context windows, pixrep converts your repository into a structured, hierarchical set of PDFs. This allows you to:
- Save 90% Tokens: Visual encoding is far more efficient than text tokenization.
- Test for Free: Easily share your entire codebase with premium models (like Claude Opus 4.6) on platforms like arena.ai without hitting text limits.
🚀 Why Visual Code?
Traditional text tokenization is expensive. Visual encoding compresses structure efficiently.
Comparison in Google AI Studio (Gemini 3 Pro):
| Raw Files (Text Input) | pixrep OnePDF (Visual Input) |
|---|---|
| 31,812 Tokens ❌ (Cluttered context) |
19,041 Tokens ✅ (Clean, single file) |
🎓 Academic Backing
The core philosophy of pixrep (rendering code → PDF with syntax highlighting + heatmaps) has been validated by top-tier papers from 2025–2026:
- Text or Pixels? It Takes Half (arXiv:2510.18279): Rendering text as images saves ~50% decoder tokens while maintaining or improving performance.
- DeepSeek-OCR (arXiv:2510.18234): Visual encoding achieves 10–20× compression ratios for dense, structured text.
- CodeOCR (arXiv:2602.01785, Feb 2026): A code-specific study showing that visual input with syntax highlighting improves performance even at 4× compression. In tasks like clone detection, the visual approach outperforms plain text.
Verdict: In the multimodal era, the optimal way to feed code is via "visual perception" rather than "text reading."
✨ Features
- 📉 High Efficiency: Drastically reduces context window usage for large repos.
- ⚡ Faster Scanning: Single-pass file loading (binary check + line count + optional content decode) to reduce I/O overhead.
- 🎨 Syntax Highlighting: Supports 50+ languages (Python, JS, Rust, Go, C++, etc.) with a "One Dark" inspired theme.
- 🧠 Semantic Minimap: Auto-generates per-file micro UML / call graph summaries to expose structure at a glance.
- 🔥 Linter Heatmap: Integrates
ruff/eslintfindings and marks risky lines with red/yellow visual overlays. - 🔎 Query Mode: Search by text or semantic symbols, then render only matched snippets to PDF/PNG.
- 🗂️ Hierarchical Output: Generates a clean
00_INDEX.pdfsummary and separate files for granular access. - 🌏 CJK Support: Built-in font fallback for Chinese/Japanese/Korean characters (Auto-detects OS fonts).
- 🛡️ Smart Filtering: Respects
.gitignorepatterns and supports custom ignore rules. - 📊 Insightful Stats: Calculates line counts and language distribution automatically.
- 🧾 Scan Diagnostics: Prints scan summary (
seen/loaded/ignored/binary/errors) for faster troubleshooting.
📦 Installation
pip install pixrep
For PNG output support (--format png), install optional extras:
pip install "pixrep[png]"
🛠️ Usage
Quick Start
Convert the current directory to hierarchial PDFs in ./pixrep_output/<repo_name>:
pixrep .
Or pack everything into a single, token-optimized PDF (Recommended for LLMs):
pixrep onepdf .
Common Commands
Generate PDFs for a specific repo:
pixrep generate /path/to/my-project -o ./my-project-pdfs
Pack core code into a single minimized PDF (all-in-one):
pixrep onepdf /path/to/my-project -o ./ONEPDF_CORE.pdf
Notes:
- Defaults to
git ls-files(tracked files) when available. - Defaults to "core-only" filtering (skips docs/tests); use
--no-core-onlyto include them.
Preview structure and stats (without generating PDFs):
pixrep list /path/to/my-project
list mode now uses lightweight scanning (no file content decode), so large repos respond significantly faster.
Show only top 5 languages in the summary:
pixrep list . --top-languages 5
Query and render only matching snippets:
pixrep query . -q "cache" --glob "*.py" --format png
Semantic query (Python symbols) with interactive terminal preview:
pixrep query . -q "CodeInsight" --semantic --tui
CLI Reference
| Argument | Description | Default |
|---|---|---|
repo |
Path to the code repository. | . (Current Dir) |
-o, --output |
Directory to save the generated PDFs. | ./pixrep_output/<repo> |
--max-size |
Max file size to process (in KB). Files larger than this are skipped. | 512 KB |
--ignore |
Additional glob patterns to ignore (e.g., *.json test/*). |
[] |
--index-only |
Generate only the 00_INDEX.pdf (Directory tree & stats). |
False |
--disable-semantic-minimap |
Turn off per-file semantic UML/callgraph panel. | False |
--disable-lint-heatmap |
Turn off linter-based line heatmap background. | False |
--linter-timeout |
Timeout seconds for each linter command. | 20 |
--list-only |
Print the directory tree and stats to console, then exit. | False |
-V, --version |
Show version information. | - |
⚙️ Performance Notes
pixrep now applies two execution paths:
- Light scan path (
pixrep list,pixrep generate --index-only,--list-only): only metadata and line counts are collected; file content is not loaded. - Full scan path (regular
pixrep generate): file content is decoded only when needed for PDF rendering.
This reduces memory pressure and disk I/O for repository exploration workflows.
Lint/semantic caches are now stored in user cache directories by default:
- Windows:
%LOCALAPPDATA%/pixrep/cache/<repo_name> - Linux/macOS:
$XDG_CACHE_HOME/pixrep/<repo_name>or~/.cache/pixrep/<repo_name>
You can override with PIXREP_CACHE_DIR.
📂 Output Structure
After running pixrep ., you will get a folder structure optimized for LLM upload:
pixrep_output/pixrep/
├── 00_INDEX.pdf # <--- Upload this first! Contains tree & stats
├── 001_LICENSE.pdf
├── 002_README.md.pdf
├── 003_pixrep___init__.py.pdf
├── 005_pixrep_cli.py.pdf
└── ...
🧩 Supported Languages
pixrep automatically detects and highlights syntax for:
- Core: Python, C, C++, Java, Rust, Go
- Web: HTML, CSS, JavaScript, TypeScript, Vue, Svelte
- Config: JSON, YAML, TOML, XML, Dockerfile, Ini
- Scripting: Bash, Lua, Perl, Ruby, PHP
- And more: Swift, Kotlin, Scala, Haskell, OCaml, etc.
🤝 Contributing
We welcome contributions! Please feel free to submit a Pull Request.
- Fork the repository.
- Create your feature branch (
git checkout -b feature/AmazingFeature). - Commit your changes (
git commit -m 'Add some AmazingFeature'). - Push to the branch (
git push origin feature/AmazingFeature). - Open a Pull Request.
📄 License
Distributed under the MIT License. See LICENSE for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pixrep-0.6.0.tar.gz.
File metadata
- Download URL: pixrep-0.6.0.tar.gz
- Upload date:
- Size: 57.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f01cf2596338ee7e92b2b6382cda4dcd91aee13b669fd0f7623b31d261b1d50f
|
|
| MD5 |
1a8f25bbe88870318539b6510bb6bee1
|
|
| BLAKE2b-256 |
fc85641eb9f8f74aa3d923d9433d4c5cb42ee5a606ca384d097aafa6ceb984f2
|
Provenance
The following attestation bundles were made for pixrep-0.6.0.tar.gz:
Publisher:
publish.yml on TingjiaInFuture/pixrep
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pixrep-0.6.0.tar.gz -
Subject digest:
f01cf2596338ee7e92b2b6382cda4dcd91aee13b669fd0f7623b31d261b1d50f - Sigstore transparency entry: 976377961
- Sigstore integration time:
-
Permalink:
TingjiaInFuture/pixrep@28add82470821c7b302e5f0564aff80706d2f972 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/TingjiaInFuture
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@28add82470821c7b302e5f0564aff80706d2f972 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pixrep-0.6.0-py3-none-any.whl.
File metadata
- Download URL: pixrep-0.6.0-py3-none-any.whl
- Upload date:
- Size: 56.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7bd1af02479c0978ed39f027c17b9942fbcbc4ab9ecd72e00e2e68a716951f0
|
|
| MD5 |
68a21be645c77a987d5991b9b1c87ffe
|
|
| BLAKE2b-256 |
06ad3e9b8b156ec0e2938621ddee679bf41cb95094696bd7d111a574671a667d
|
Provenance
The following attestation bundles were made for pixrep-0.6.0-py3-none-any.whl:
Publisher:
publish.yml on TingjiaInFuture/pixrep
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pixrep-0.6.0-py3-none-any.whl -
Subject digest:
d7bd1af02479c0978ed39f027c17b9942fbcbc4ab9ecd72e00e2e68a716951f0 - Sigstore transparency entry: 976377982
- Sigstore integration time:
-
Permalink:
TingjiaInFuture/pixrep@28add82470821c7b302e5f0564aff80706d2f972 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/TingjiaInFuture
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@28add82470821c7b302e5f0564aff80706d2f972 -
Trigger Event:
release
-
Statement type: