honey-px

Featured

Read huge, dense, read-only text as rendered PNG pages instead of raw text — image tokens scale with pixels, not characters, so token-dense bulk (big files, vendored code, diffs, logs) costs ~60–75% less as an image. Use when you must skim or reason over thousands of lines you will NOT edit or byte-copy. Lossy on exact strings: never for files you'll Edit, secrets, hashes, or byte-exact values. Fable-class readers only.

AI & Automation 295 stars 17 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 91/100

Stars 20%
82
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Honey PX An image's token cost is fixed by its pixel area, not its character count. Dense text packs ~3 chars per image-token vs ~1 as text, so a 90k-char file read as PNG pages costs a fraction of the text read. `pxpipe export` (teamchong/pxpipe) does the rendering; the agent `Read`s the pages. **Lossy by design** — misreads of exact strings are *silent confabulations*, not errors. The export writes a `factsheet.txt` carrying the verbatim precision tokens (paths, SHAs, ids, numbers) as text alongside the images; always read it too. ## When to use - Bulk is **read-only reference**: skimming a big vendored file, a large diff for review context, docs, generated code — content you reason over, not byte-copy. - **Dense** (code, JSON, logs) and **big** — worth it above ~6k chars; the export prints `% saved`, skip if it's low. Sparse prose loses money. - The reader is **Fable-class**. Opus misreads ~7% of renders; other models degrade — read as text there. ## Don't use - Files you will **Edit** — `old_string` must be byte-exact; imaged reads aren't. Read the real file (with `offset`/`limit`) before any edit. - **Secrets, hashes, ids, numeric values you'll act on** — treat anything exact recalled from an image as unverified; re-`Grep` the source first. - Anything the user asked to see verbatim, or that gets written back. - Small or sparse content — the fixed pixel cost loses. ## How ```sh npx pxpipe-proxy export --json --out <scratchpad> <file-or-dir> # or --...

Details

Author
Green-PT
Repository
Green-PT/honey-for-devs
Created
2 months ago
Last Updated
4 days ago
Language
JavaScript
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

visual-read

Render a web page or document to images (tiled JPEGs) so Claude can SEE layout that text extraction loses — charts, infographics, scanned forms, complex tables, visual diffs. Triggers on: 'look at this chart/figure', 'what does this dashboard show', 'read this scanned form', 'the layout matters', or when read-router / web-scrape / doc-extract flag that the meaning is visual. Local (pixelrag pixelshot), no backend. EXPENSIVE in tokens — use only when layout IS the information, not as a default reader.

0 Updated 3 days ago
juliuswiener
Web & Frontend Featured

honey-design

Same pixels, fewer tokens — for user-facing deliverables where visual polish is the spec. Use when building or editing a landing page, marketing site, hero, pricing/feature section, dashboard, or any HTML/CSS UI component. Keeps the full rendered design (layout depth, hierarchy, motion, responsive richness, a11y) and cuts tokens by expressing that design densely — CSS custom properties, shared classes, shorthand, fluid units — instead of by cutting the design. The honey core trims code and prose; this trims how the design is *written*, never how it looks. Reach for it whenever output is user-facing markup, even if the user never says "minimal".

295 Updated 4 days ago
Green-PT
AI & Automation Featured

honey-compress

Rewrite a memory or context file (CLAUDE.md, AGENTS.md, a todo or notes file) into Honey-terse form so it costs fewer input tokens every session, without losing meaning. Backs up the original first. Use when asked to shrink or compress context files, trim CLAUDE.md, or cut per-session input cost. Prose only — never code, config, or data.

295 Updated 4 days ago
Green-PT