classify-media-relevance

classify-media-relevance is a skill for Claude Code from buildinternet/releases. It costs 57 tokens per session (1,309 once invoked), scanned A, original, Apache-2.0.

A review step that decides whether images and videos on a release page belong to the release or are merely part of the website’s decoration and interface. Release media can include screenshots, demos, diagrams, or product images.

In plain words
What is it for?
Use it while parsing release pages or linked articles to select editorial images and videos for display. It does not run on feeds that already define each entry’s media.
Why use it?
It keeps irrelevant items such as avatars, logos, tracking pixels, and decorative badges out of a release’s media list. This avoids clutter and unnecessary storage.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Part of the onboarding-parsing plugin — 4 skills shipped together

Good fit Use it while parsing release pages or linked articles to select editorial images and videos for display. It does not run on feeds that already define each entry’s media.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/buildinternet/releases/classify-media-relevance
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add buildinternet/releases --skill classify-media-relevance
Clone the repo
git clone --depth 1 https://github.com/buildinternet/releases

Made for: Claude Code.

Or install onboarding-parsing, the plugin that ships this one along with the rest of its 4 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for classify-media-relevance

README.md
[![agentmods](https://agentmods.dev/badge/skills/buildinternet/releases/classify-media-relevance/github.svg)](https://agentmods.dev/skills/buildinternet/releases/classify-media-relevance)
Your own site
<a href="https://agentmods.dev/skills/buildinternet/releases/classify-media-relevance"><img src="https://agentmods.dev/badge/skills/buildinternet/releases/classify-media-relevance/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for classify-media-relevance

Your own site · 80×15
<a href="https://agentmods.dev/skills/buildinternet/releases/classify-media-relevance"><img src="https://agentmods.dev/badge/skills/buildinternet/releases/classify-media-relevance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,309 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.01309
Opus 5 $0.00028 $0.00655
Sonnet 5 $0.00011 $0.00262
Haiku 4.5 $0.00006 $0.00131

Measured 9d ago against content hash 3e432218b34e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

classify-media-relevance scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/classify-media-relevance/SKILL.md · 91 lines

How it starts

The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Classifying Media Relevance

Release pages contain two kinds of media: editorial content that belongs in the release (screenshots of the feature, demo videos, diagrams explaining a change) and site chrome that doesn't (author avatars, nav logos, tracking pixels, decorative separators). This skill governs which items end up in a release's media[] array.

The goal is precision-over-recall: a dropped editorial image is recoverable (users click through to the source page), but a kept junk image pollutes the UI and wastes storage.

When this runs

  • During the parse pipeline, after the AI extracts release content from a fetched page.
  • During crawl-mode fetches, when the extractor reads full-page markdown from a linked article and produces a fresh media[].
  • Not during feed fetches where the feed already scoped media to per-entry content (trust the feed).

Cheap pre-checks (keep in code, don't spend AI tokens)

These checks are deterministic, free, and catch the overwhelming majority of obvious junk. Always run them before invoking this skill. If a pre-check drops an item, no AI call is needed.

  1. Tracking domains — URL host matches a known tracking/analytics domain (px.ads.linkedin.com, t.co, www.facebook.com/tr, analytics.twitter.com, bat.bing.com). Drop with reason tracking domain: <host>.
  2. Unsupported content-type — after HEAD/GET, content-type isn't in the uploadable set (image/png|jpeg|gif|webp|svg+xml|avif, video/mp4|webm). Drop with reason unsupported type.
  3. Size bounds — body < 5 KB (tracking pixels, spacers) or > 10 MB (won't upload anyway). Drop.
  4. Streaming embeds — YouTube, Vimeo, Loom URLs are kept as type: "video" references without downloading. Never route through R2 upload or this skill.
  5. ETag / content hash seen before — if the R2 key derived from content hash already exists, reuse it and skip reclassification.

Everything else — the ambiguous middle where URL patterns overlap between chrome and content — goes through the skill.

Read the full file on GitHub · 91 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 91 lines · 57 tokens per session scan A 3e432218b34e

Subscribe to this mod's changes

classify-media-relevance is a skill published in the GitHub repository buildinternet/releases (6 stars, last pushed 6d ago), licensed Apache-2.0. It adds 57 tokens to every session and 1,309 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

seedance-pipeline

This skill should be used when the user asks about Seedance 2.0 workflow operations, API planning, BytePlus ModelArk, Dreamina/Jimeng surfaces, provider/router APIs, China-facing surfaces, ComfyUI, post-production, stitching, batch workflow, or integration planning.

Emily2040/seedance-2.0 · 63 tokens

presentation

Turn a tech-spec directory into an interactive, marketing-grade web presentation — built so engineers understand the design, the reader is convinced of the why, and the result is shareable in public. Use when someone wants a spec turned into a deck.

iii-hq/iii · 51 tokens

slide-deck-generator

Generate a real PowerPoint .pptx deck from a Markdown outline. Picks slide layouts (title / content / closing) based on the outline structure, applies a brand accent color, optionally adds speaker notes. Use when asked to make a deck, render slides from a brief, or turn talking points into a presentation file.

skrun-dev/skrun · 69 tokens

avatar-multi-scene

Use when someone wants the same person hosting several clips — multi-segment UGC, comparison reels, or mixed speaking and animated scenes with continuity.

PrunaAI/pruna-skills · 35 tokens

p-image-ideogram

Use when photo generation needs more control — photoreal results, text in the image, or structured JSON with hex colors and bounding boxes. Simpler photo generation, edits, and video use other skills in the suite.

PrunaAI/pruna-skills · 50 tokens

illustrated-story-reel

Use when someone wants a slideshow story with narration or music — picture-book illustrated frames with Ken Burns or gentle p-video motion.

PrunaAI/pruna-skills · 31 tokens