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

opencode-media-guard

v0.1.2

Published

OpenCode plugin that enforces Anthropic's image API limits — dimensions, byte size, count — with context usage tracking

Downloads

389

Readme

opencode-media-guard

Stop screenshots from breaking your OpenCode sessions.

The Problem

Screenshots silently destroy OpenCode sessions. A single fullPage screenshot can exceed Anthropic's 8000px limit and crash the API call. Accumulated images eat your context window — each screenshot consumes thousands of tokens, pushing out conversation history and triggering premature compaction. You lose work, and you never see it coming.

What This Fixes

Install the plugin. Take screenshots without worrying about limits.

  • Images that exceed Anthropic's limits are blocked before they enter context — saved to disk so you don't lose them
  • The model tracks your image budget and warns you before it runs out
  • When you hit the limit, the model asks before compacting — you stay in control
  • You see exactly how much of your context window images are consuming

Install

// ~/.config/opencode/opencode.jsonc
{
  "plugin": ["opencode-media-guard"]
}

Restart OpenCode. No npm install, no configuration needed.

What You'll See

Normal usage — screenshots work exactly as before. No interruption.

Approaching the limit — the model tells you:

"Heads up — 2 screenshots remain before new screenshots will be blocked. To free up capacity, I can summarize the conversation and remove old images. Your key findings are preserved, but the exact conversation history is replaced with a summary. Want to keep going or clean up now?"

At the limit — new screenshots are saved to ~/opencode-media-guard/ and the model asks:

"The image budget is full. That screenshot was saved to disk but couldn't be added to context. I can free up capacity by summarizing the conversation — this preserves key findings but replaces the full history with a shorter summary. Want me to proceed?"

After cleaning up — budget resets, screenshots work again. Key observations from earlier screenshots are preserved in the summary.

Context visibility — the model sees your usage and can report it:

Images: 5/20 (15 remaining)
Context: ~45,200/1000K tokens (4.5%) — images: ~12,800 (1.3%), text: ~32,400

What It Enforces

Every Anthropic image limit, automatically:

| Limit | Default | Blocked images are... | |-------|---------|----------------------| | Dimensions (up to 20 images) | 8000px | Saved to disk, replaced with text | | Dimensions (>20 images) | 2000px | Same — stricter limit kicks in automatically | | Per-image size | 5 MB | Saved to disk, replaced with text | | Image budget | 20 per session | Saved to disk, model asks to compact |

Blocked images are always saved to ~/opencode-media-guard/ — nothing is lost.

Configuration

All defaults match Anthropic's current API limits. Override via environment variables if needed:

| Variable | Default | What it controls | |----------|---------|-----------------| | MEDIA_GUARD_MAX_CONTEXT_IMAGES | 20 | Image budget per session | | MEDIA_GUARD_MAX_DIMENSION | 8000 | Max pixels per image dimension | | MEDIA_GUARD_MAX_IMAGE_BYTES | 5242880 | Max bytes per image (5MB) | | MEDIA_GUARD_CONTEXT_WINDOW_TOKENS | 1000000 | Context window size for % display |

| Variable | Default | Description | |----------|---------|-------------| | MEDIA_GUARD_MAX_DIMENSION | 8000 | Max px per dimension (single-image mode) | | MEDIA_GUARD_MAX_DIMENSION_MULTI | 2000 | Max px per dimension when >20 images | | MEDIA_GUARD_MULTI_THRESHOLD | 20 | Image count that triggers stricter dimension limit | | MEDIA_GUARD_MAX_IMAGE_SIZE | 5242880 | Anthropic's per-image byte limit | | MEDIA_GUARD_MAX_IMAGE_BYTES | 5242880 | Plugin's hard enforcement threshold | | MEDIA_GUARD_MAX_PAYLOAD_SIZE | 33554432 | Max total payload (32MB) | | MEDIA_GUARD_MAX_IMAGES | 100 | Max images per API request | | MEDIA_GUARD_MAX_CONTEXT_IMAGES | 20 | Image budget per session | | MEDIA_GUARD_CONTEXT_WINDOW_TOKENS | 1000000 | Context window size for % display |

Known Limitations

  • User-attached images are counted but not blocked. Images you attach via --file or drag-drop count toward the budget, but the plugin can't intercept them at entry. Budget enforcement applies to subsequent tool screenshots.
  • Token counts are approximate. Text tokens use a BPE tokenizer based on Claude's published vocabulary (2023), which may not exactly match current models. Image tokens use Anthropic's formula. No enforcement depends on token counts — they're display-only.
  • FullPage screenshots of very long pages may be saved to a temp file by Chrome DevTools before the plugin sees them.

Stability (v0.1.0)

This is a beta release. The core protection uses OpenCode's stable tool.execute.after hook. Enhanced features (budget display, token tracking, automatic compaction) use experimental hooks that may change.

If experimental hooks break, the plugin degrades gracefully — images are still blocked, but the model can't proactively warn you about the budget. You'd run /compact manually instead of the model doing it automatically.

| Dependency | Stability | If it breaks | Impact | |---|---|---|---| | tool.execute.after | Stable | All enforcement stops | Critical — lowest risk | | experimental.chat.system.transform | Undocumented | No budget display | Medium — blocking still works | | experimental.chat.messages.transform | Undocumented | No user-image counting | Low | | session.idle event | Undocumented | No auto-compaction | Low — manual /compact works | | Bun runtime | Stable | Plugin won't load | Would need build step | | Claude tokenizer vocab (2023) | Stale | Less accurate counts | Display-only, no enforcement impact | | Anthropic API limits | Current | Defaults may drift | All overridable via env vars |

License

MIT