npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@oh-my-pi/snapcompact

v16.0.6

Published

Bitmap-frame context compression for vision-capable LLMs

Readme

@oh-my-pi/snapcompact

Bitmap-frame context compression for vision-capable LLMs.

Instead of asking an LLM to summarize discarded conversation history, snapcompact serializes it and renders the text into dense PNG frames of pixel-font glyphs that vision models read back directly. The whole pass is local and deterministic — no LLM call, no API key, no latency beyond rendering. Rasterization and PNG encoding happen in native code (@oh-my-pi/pi-natives).

Built for oh-my-pi's compaction pipeline, but the rendering API works on arbitrary text.

How it works

  1. Discarded history is serialized to compact text (serializeConversation), with per-tool-result and per-argument character caps.
  2. Text is normalized for the bundled bitmap fonts (normalize): ANSI sequences stripped, whitespace collapsed, newline runs folded into a single full-block glyph so line structure survives.
  3. Pages of text are rasterized into PNG frames (render / renderMany). Frame width is fixed per shape; height hugs the rows actually printed, so a partially filled frame never bills blank pixel rows.
  4. Frames persist in the compaction entry's preserveData and are re-attached to the summary message on every context rebuild.

Frame shapes are provider-aware, chosen by SQuAD recall evals (see research/) against real provider billing:

| Reader | Default shape | Notes | | --- | --- | --- | | Anthropic | 6x12-dim | X.org 6x12 glyphs, stopwords dimmed gray; high-res Claude lines get 1932px frames | | Google | doc-8on16-sent-dim @2048 | Two newspaper columns, sentence-hue ink; Gemini bills a fixed per-image budget, so larger frames are free chars | | OpenAI | 8on16-bw | 8x13 glyphs on a patch-aligned 16px pitch, sent at detail: "original" | | Unknown | Anthropic shape | Per-provider image-count budgets guard against gateways that silently drop frames |

resolveShape({ api, id }) matches the model id, not just the wire API — a Claude routed through Vertex or OpenRouter keeps its Claude shape, priced for the gateway actually carrying the request.

Install

bun add @oh-my-pi/snapcompact

Ships TypeScript source directly (no build step); requires Bun ≥ 1.3.14.

Usage

Render arbitrary text into LLM image blocks:

import { renderMany, frames, resolveShape } from "@oh-my-pi/snapcompact";

const images = renderMany(longText, { model }); // ImageContent[], first page first
const count = frames(longText, { model });      // frame count without rendering
const shape = resolveShape(model);              // eval-optimal Shape for the reader

Run a full compaction pass over prepared messages:

import { compact } from "@oh-my-pi/snapcompact";

const result = await compact(preparation, { model, maxFrames: 8 });
// result.summary        — text summary with <files> operations block
// result.preserveData   — frame archive, re-attachable via getPreservedArchive() + images()

API surface

  • Compaction: compact, CompactionPreparation, CompactionResult, getPreservedArchive, images
  • Rendering: render, renderMany, frames, geometry
  • Shapes: SHAPES, SHAPE_VARIANTS, resolveShape, idealShapeVariant, isShape, isShapeVariantName
  • Text: serializeConversation, normalize, dimStopwords, wrap
  • Budgets: providerImageBudget, providerFrameBudget, MAX_FRAMES, FRAME_TOKEN_ESTIMATE
  • File ops: createFileOps, computeFileLists, upsertFileOperations

References