asset-cataloger

asset-cataloger is an agent for Claude Code from PMDevSolutions/Aurelius. It costs 36 tokens per session (957 once invoked), scanned A, original, MIT.

An agent that inventories image files and records what each one depicts and how it should be used. It creates a JSON map linking asset filenames to their meaning and checks whether components use the right images.

In plain words
What is it for?
Use it to inspect project images, classify their content and intended placement, generate an asset mapping file, and check image references in React components.
Why use it?
Hash-like filenames can make image assets difficult to identify and easy to use incorrectly. A semantic map makes those files easier to find and verify.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; names the TodoWrite tool; mentions Claude Code.

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.

agentmods
npx agentmods add agents/pmdevsolutions/aurelius/asset-cataloger
Clone the repo
git clone --depth 1 https://github.com/PMDevSolutions/Aurelius

Made for: Claude Code.

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 asset-cataloger

README.md
[![agentmods](https://agentmods.dev/badge/agents/pmdevsolutions/aurelius/asset-cataloger.svg)](https://agentmods.dev/agents/pmdevsolutions/aurelius/asset-cataloger)
Your own site
<a href="https://agentmods.dev/agents/pmdevsolutions/aurelius/asset-cataloger"><img src="https://agentmods.dev/badge/agents/pmdevsolutions/aurelius/asset-cataloger.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 957 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00036 $0.00957
Opus 5 $0.00018 $0.00478
Sonnet 5 $0.00007 $0.00191
Haiku 4.5 $0.00004 $0.00096

Measured yesterday against content hash 95a18050910d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

asset-cataloger 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 yesterday.

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/agents/asset-cataloger.md · 121 lines

How it starts

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

You are an asset cataloging specialist for React projects. You view, identify, and semantically map every image asset in a project, then validate that components reference the correct images.

Primary Responsibilities

1. Asset Discovery & Identification

Scan all image assets in common locations:

src/assets/images/
public/images/
public/
src/assets/icons/
  • Use Glob to find all image files (*.png, *.jpg, *.jpeg, *.svg, *.webp, *.gif, *.ico)
  • Use Read to VIEW each image file (Claude Code renders images visually)
  • For each image, determine:
    • Content: What the image actually shows
    • Type: Photo, illustration, icon, logo, decorative, background
    • Orientation: Landscape, portrait, square
    • Dominant colors: Primary colors visible
    • Suggested usage: Hero, card, gallery, logo, background, avatar, etc.

2. Semantic Mapping

Create asset-semantic-mapping.json in the project root:

{
  "project": "my-app",
  "generated": "2026-03-11",
  "total_assets": 12,
  "assets": [
    {
      "filename": "29ff4deba4ee.png",
      "path": "src/assets/images/29ff4deba4ee.png",
      "format": "png",
      "content": "Team photo of founding members at company retreat",
      "type": "photo",
      "orientation": "landscape",
      "dominant_colors": ["dark blue", "gold", "white"],
      "suggested_usage": ["hero", "about-page", "gallery"],
      "semantic_name": "team-retreat-photo"
    }
  ]
}

3. Component Validation

After mapping, scan all component files to verify correct image usage:

  • Read each component file (*.tsx, *.jsx)
  • Extract all <img>, <Image>, CSS background-image, and dynamic import references
  • Cross-reference with the semantic mapping
  • Flag mismatches between image content and component context

4. Duplicate Detection

Identify duplicate or near-duplicate images:

  • Same image used with different hashes/names
  • Very similar images that could be consolidated
  • Unused images (not referenced by any component or CSS)

Read the full file on GitHub · 121 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. yesterday First seen · 121 lines · 36 tokens per session scan A 95a18050910d

Subscribe to this mod's changes

asset-cataloger is an agent published in the GitHub repository PMDevSolutions/Aurelius (8 stars, last pushed 21d ago), licensed MIT. It adds 36 tokens to every session and 957 once invoked, about $0.0002 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-09-04.

Related

Other agents, from other repositories

design-explorer

Autonomous agent that explores design possibilities by generating multiple Stitch screens across different styles and layouts for a given concept.

tygwan/stitchkit · 26 tokens

design-token-extractor

Use this agent to extract design tokens from CSS, SCSS, JavaScript, or Tailwind config files. Trigger when the user wants to document their token system, migrate tokens between formats, audit token coverage, or generate a design system reference from existing code. Context: User wants to document their CSS custom…

Adityaraj0421/naksha-studio · 280 tokens

stitch-kit

Use this agent for anything Stitch-related: ideating designs through conversation, generating UI screens from text, editing/iterating designs, generating design variants, managing Stitch Design Systems, converting designs to production code, extracting design tokens, and running the full design-to-ship pipeline.…

gabelul/stitch-kit · 237 tokens

_orchestrator-protocol

Bu dosya FCM projesindeki tüm orkestratör agentların uyması zorunlu 8 maddelik protokolü tanımlar. Her agent (screen-builder, ds-auditor, token-syncer) görev başlangıcında ilk eylem olarak bu dosyayı Read ile yüklemek zorundadır. Her agent dosyasında bu 8 maddeden üretilmiş 10 satırlık kondense inline checklist ayrıca…

atezer/FMCP · 0 tokens

screen-builder

DS-compliant Figma ekran üretim agent'ı. Text / yüklenmiş görsel / Figma benchmark / "fikrim yok" girdilerinden ekran üretir. "ekran tasarla", "figma'da ekran oluştur", "alternatif üret", "bu görselden ilham al" ifadeleriyle tetiklenir. Claude Code sub-agent isolation avantajıyla ana conversation context'ini temiz…

atezer/FMCP · 91 tokens

Figma MCP Free

Implements Figma designs as code using the Figma MCP Free server. Fetches design context, screenshots, and design tokens from Figma, then translates them into your project's framework and conventions.

karthikyaddana/figma-mcp-free · 44 tokens