asset-audit

asset-audit is a skill for Claude Code from cenconq25/claude-code-app-studio. It costs 53 tokens per session (1,871 once invoked), scanned A, original, MIT.

A review process for checking an app’s image and icon files against naming, size, format, and platform requirements.

In plain words
What is it for?
Use it to inspect asset folders, compare files with code references, and check App Store and Google Play image packs.
Why use it?
It finds oversized, incorrectly named, unused, or missing assets before they cause build or store-submission problems.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; names the AskUserQuestion tool.

Good fit Use it to inspect asset folders, compare files with code references, and check App Store and Google Play image packs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cenconq25/claude-code-app-studio/asset-audit
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 cenconq25/claude-code-app-studio --skill asset-audit
Clone the repo
git clone --depth 1 https://github.com/cenconq25/claude-code-app-studio

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-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/cenconq25/claude-code-app-studio/asset-audit.svg)](https://agentmods.dev/skills/cenconq25/claude-code-app-studio/asset-audit)
Your own site
<a href="https://agentmods.dev/skills/cenconq25/claude-code-app-studio/asset-audit"><img src="https://agentmods.dev/badge/skills/cenconq25/claude-code-app-studio/asset-audit.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,871 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.00053 $0.01871
Opus 5 $0.00026 $0.00936
Sonnet 5 $0.00011 $0.00374
Haiku 4.5 $0.00005 $0.00187

Measured 8d ago against content hash 4e15924501b7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

asset-audit 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 8d 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/asset-audit/SKILL.md · 249 lines

How it starts

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

Asset Audit

Find every asset that violates naming, size, or format rules; flag orphans and missing references; and confirm the store-listing pack is complete and correctly sized for both App Store and Play Console.


Phase 1: Read Standards

Read .claude/docs/technical-preferences.md and any assets/asset-standards.md. Capture:

  • Image formats allowed (default: PNG, WebP, SVG; JPG only for photos).
  • Max bytes per category (icons, screen backgrounds, illustrations, store screenshots).
  • Naming convention (kebab-case, snake_case, scoped by feature).
  • Density / scale variants required.
  • Vector vs raster policy.

Defaults if unconfigured:

  • Raster max 200 KB; over 200 KB requires explanation.
  • Naming: snake_case scoped by feature: [email protected].
  • iOS: provide @1x, @2x, @3x.
  • Android: provide hdpi, xhdpi, xxhdpi, xxxhdpi (or vector + density- specific only when needed).

Phase 2: Inventory Assets on Disk

Glob asset roots:

  • assets/, src/assets/ — cross-platform.
  • iOS: *.xcassets/ Contents.json + image bundles.
  • Android: res/drawable*, res/mipmap*.
  • Flutter: paths declared in pubspec.yaml flutter.assets.

Capture per file: path, size, format, last-modified date, density (if applicable).


Phase 3: Inventory References in Code

Grep for asset references:

  • RN: require('./icon.png'), import icon from './icon.png', Image source={{ uri }}.
  • Flutter: AssetImage('...'), Image.asset('...'), SvgPicture.asset('...').
  • iOS: UIImage(named:), SwiftUI Image("name").
  • Android: R.drawable.*, painterResource(R.drawable.*), Glide/Coil/Picasso load calls.

Map each reference to a path on disk.


Phase 4: Find Orphans and Missing

  • Orphans — files on disk with no reference in code or configuration (icons declared in xcassets and Info.plist count as references). Candidates for deletion.
  • Missing — references in code that resolve to no file on disk. Build will break or runtime will crash.

Read the full file on GitHub · 249 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. 8d ago First seen · 249 lines · 53 tokens per session scan A 4e15924501b7

Subscribe to this mod's changes

asset-audit is a skill published in the GitHub repository cenconq25/claude-code-app-studio (40 stars, last pushed 4mo ago), licensed MIT. It adds 53 tokens to every session and 1,871 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-30.

Related

Other skills, from other repositories

expo-design-system

Framework (OSS). Build and maintain a design system inside an Expo app - a reusable theme of design tokens (color, spacing, typography, radius, shadow, motion), reusable component structure with variant/size/state prop conventions, and rules for when to extract a repeated view into a shared component. Use when…

expo/skills · 181 tokens

display-glasses-with-jetpack-compose-glimmer

Provides guidelines for developing projected Android XR apps for display glasses using the Jetpack Compose Glimmer UI toolkit. This skill covers foundational Glimmer design principles, workflows for implementing Jetpack Compose Glimmer, and interaction models for the glasses form factor. Use this skill to build an…

android/skills · 91 tokens

flutter-build-responsive-layout

Use LayoutBuilder, MediaQuery, or Expanded/Flexible to create a layout that adapts to different screen sizes. Use when you need the UI to look good on both mobile and tablet/desktop form factors.

flutter/agent-plugins · 51 tokens

omh-apple-design

This is a Hermes-native apple-design workflow skill.

rlaope/oh-my-hermes · 73 tokens

axiom-audit-liquid-glass

Use when the user mentions Liquid Glass review, iOS 26 UI updates, toolbar improvements, or visual effect migration.

CharlesWiltgen/Axiom · 32 tokens

axiom-audit-ux-flow

Use when the user mentions UX flow issues, dead-end views, dismiss traps, missing empty states, broken user journeys, or wants a UX audit of their iOS app.

CharlesWiltgen/Axiom · 43 tokens