brand-assets-setup

brand-assets-setup is a skill for Claude Code from JohnWayneeee/ai-agent-skills. It costs 41 tokens per session (3,210 once invoked), scanned A, original, MIT.

A workflow for creating and connecting brand image files in a Next.js web application. It inspects the project, checks existing icons and social-sharing images, identifies brand colours, and wires the required assets into the app.

In plain words
What is it for?
Use it to prepare favicons, app icons, Apple touch icons, web app manifest assets, Open Graph images, and Twitter card images for a Next.js App Router project.
Why use it?
It prevents missing or incorrectly placed files from causing incomplete browser icons, mobile icons, or link previews. It also provides a checklist so the project’s brand assets can be checked systematically.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to prepare favicons, app icons, Apple touch icons, web app manifest assets, Open Graph images, and Twitter card images for a Next.js App Router project.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/johnwayneeee/ai-agent-skills/brand-assets-setup
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 JohnWayneeee/ai-agent-skills --skill brand-assets-setup
Clone the repo
git clone --depth 1 https://github.com/JohnWayneeee/ai-agent-skills

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 brand-assets-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/johnwayneeee/ai-agent-skills/brand-assets-setup/github.svg)](https://agentmods.dev/skills/johnwayneeee/ai-agent-skills/brand-assets-setup)
Your own site
<a href="https://agentmods.dev/skills/johnwayneeee/ai-agent-skills/brand-assets-setup"><img src="https://agentmods.dev/badge/skills/johnwayneeee/ai-agent-skills/brand-assets-setup/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 brand-assets-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/johnwayneeee/ai-agent-skills/brand-assets-setup"><img src="https://agentmods.dev/badge/skills/johnwayneeee/ai-agent-skills/brand-assets-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,210 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.00041 $0.03210
Opus 5 $0.00020 $0.01605
Sonnet 5 $0.00008 $0.00642
Haiku 4.5 $0.00004 $0.00321

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

Security

Grade A, and why

brand-assets-setup 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.

skills/brand-assets-setup/SKILL.md · 291 lines

How it starts

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

Brand Assets Setup — Implementation Guide

PHASE 1 — Discovery

Scan the project to understand its current state before printing anything.

  1. Find the Next.js frontend root — look for app/layout.tsx or src/app/layout.tsx.
  2. Check existing assets:
    • List files in app/ (or src/app/) matching: favicon.ico, icon.png, apple-icon.png, opengraph-image.png, twitter-image.png
    • List files in public/ matching: favicon-*.png, icon-*.png, maskable-*.png, manifest.json
    • Check for brand SVGs in shared/assets/, src/assets/, or similar
  3. Read app/layout.tsx (or src/app/layout.tsx) — note the existing metadata structure and brand colors mentioned.
  4. Detect brand colors — check app/globals.css, src/app/globals.css, or tailwind.config.* for background and accent colors.

PHASE 2 — Checklist

Print a comprehensive checklist showing the status of all 12 brand asset files.

Mark with:

  • ✅ — file exists and appears correct
  • ❌ — file is missing or needs regeneration

Use the detected brand colors in notes (e.g. "use background color #f7f9fb").

Asset Checklist Template

File Size Background Location Purpose Status
favicon.ico 16×16 + 32×32 + 48×48 SOLID app/favicon.ico Browser tab icon (multi-size)
favicon-16x16.png 16×16 SOLID public/favicon-16x16.png Fallback for legacy browsers
favicon-32x32.png 32×32 SOLID public/favicon-32x32.png Fallback for legacy browsers
icon.png 32×32 TRANSPARENT app/icon.png OS adds background and rounding
apple-icon.png 180×180 SOLID app/apple-icon.png iOS home screen (needs opaque background)
icon-192.png 192×192 TRANSPARENT public/icon-192.png Android PWA (OS adds background)
icon-512.png 512×512 TRANSPARENT public/icon-512.png Android PWA (OS adds background)
maskable-icon-512.png 512×512 SOLID public/maskable-icon-512.png Adaptive icons (logo in center 80%)
opengraph-image.png 1200×630 SOLID app/opengraph-image.png Facebook, Telegram, LinkedIn cards
twitter-image.png 1200×630 SOLID app/twitter-image.png Twitter/X cards
logo.svg vector TRANSPARENT shared/assets/logo.svg (or src/assets/logo.svg) Light background usage
logo-dark.svg vector TRANSPARENT shared/assets/logo-dark.svg (or src/assets/logo-dark.svg) Dark background usage

Read the full file on GitHub · 291 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 291 lines · 41 tokens per session scan A cb8d7d4bb6be

Subscribe to this mod's changes

brand-assets-setup is a skill published in the GitHub repository JohnWayneeee/ai-agent-skills (1 stars, last pushed 3mo ago), licensed MIT. It adds 41 tokens to every session and 3,210 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-08-31.

Related

Other skills, from other repositories

frontend-design

Design and build production-ready frontend interfaces with design systems, responsive layouts, accessible components, and dark mode support. Use when the user requests frontend design or provides relevant inputs for this workflow.

seb1n/awesome-ai-agent-skills · 40 tokens

web-design-guidelines

Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".

agustinusnathaniel/nextarter-tailwind · 44 tokens

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI).…

agustinusnathaniel/nextarter-tailwind · 77 tokens

framer-motion

Creates smooth animations and micro-interactions using Framer Motion including page transitions, gestures, scroll-based animations, and orchestrated sequences. Use when users request "add animation", "framer motion", "page transition", "animate component", or "micro-interactions".

FilippoDeSilva/skills · 57 tokens

3d-web-experience

Expert in building 3D experiences for the web - Three.js, React Three Fiber, Spline, WebGL, and interactive 3D scenes. Covers product configurators, 3D portfolios, immersive websites, and bringing depth to web experiences.

sickn33/agentic-awesome-skills · 57 tokens

anti-ui-slop

Stop coding agents from shipping generic UI. Extend the product's design system, use UIZZE evidence only when useful, cover required states, and inspect the rendered result.

sickn33/agentic-awesome-skills · 39 tokens