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

image-context-cascade

v0.2.3

Published

Image context cascade middleware for LLM and agent message payloads.

Readme

image-context-cascade

Request-level image lifecycle middleware for AI coding agents: keep current-turn images, downgrade historical ones to stable placeholders — before they hit your token bill, your prompt cache, or a 413.

Zero runtime dependencies. Framework-agnostic. Works with Anthropic Messages, OpenAI Chat Completions, and OpenAI Responses payload shapes, plus base64 data URIs and Anthropic document (PDF) attachments.

Why

Agents keep resending pixels the model already saw. In one real UI-development session, screenshots consumed 86.3% of the context window; oversized image payloads can break /compact or 413 the whole session. After the model has acted on a screenshot, those bytes are dead weight in every subsequent request — burning tokens and destabilizing prompt caches.

Compaction can't fix this: a 413 happens before compaction runs, and images can break compaction itself. The only layer where it's fully fixable is request construction. This library fixes it there.

Quick start

npm install image-context-cascade
import { cascadeImages } from "image-context-cascade";

// Wherever your agent builds the provider request:
const { payload, mutated, telemetry } = cascadeImages(requestPayload);

// payload: historical images replaced with stable placeholders,
//          current-turn images untouched
// telemetry: counts and hashes only — never image data

The default positional strategy is stateless: images at or after the last user message are current, everything earlier is downgraded. Safe across restarts, correct for proxies. A trackerStrategy is available for hosts that know exactly which images belong to the current turn.

Measured on a real 1.3 MB PNG payload: 1,296,014 chars → 315 chars (−99.98%), with placeholders byte-identical across requests so prompt caches keep hitting.

Guarantees

  • Current-turn images are never touched (enforced by tests; fails open when no boundary is found).
  • Placeholders are byte-stable — same image, same bytes, every request.
  • Telemetry structurally cannot contain image data; only a 12-char one-way hash prefix enters the context.
  • Zero runtime dependencies; ./web subpath export for non-Node runtimes (bring your own hasher).

Ecosystem

Apache-2.0.