vibe-assets

vibe-assets is a skill for Claude Code from xushuodasd/VIBE-Claude-Plugin. It costs 65 tokens per session (2,025 once invoked), scanned A, original, MIT.

An asset-acquisition workflow for adding real images, icons, fonts, illustrations, and logos to a project. It can fetch assets from online libraries or use image-generation services.

In plain words
What is it for?
Use it to find and integrate icons, web fonts, images, illustrations, or logos into React, Vue, Svelte, or plain HTML/CSS projects.
Why use it?
It helps avoid empty placeholders, emoji used as icons, and reliance on default system fonts when building an interface.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the vibe-claude-plugin plugin — 25 skills, 1 command shipped together

Good fit Use it to find and integrate icons, web fonts, images, illustrations, or logos into React, Vue, Svelte, or plain HTML/CSS projects.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xushuodasd/vibe-claude-plugin/vibe-assets
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 xushuodasd/VIBE-Claude-Plugin --skill vibe-assets
Clone the repo
git clone --depth 1 https://github.com/xushuodasd/VIBE-Claude-Plugin

Made for: Claude Code.

Or install vibe-claude-plugin, the plugin that ships this one along with the rest of its 25 skills, 1 command.

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 vibe-assets

README.md
[![agentmods](https://agentmods.dev/badge/skills/xushuodasd/vibe-claude-plugin/vibe-assets/github.svg)](https://agentmods.dev/skills/xushuodasd/vibe-claude-plugin/vibe-assets)
Your own site
<a href="https://agentmods.dev/skills/xushuodasd/vibe-claude-plugin/vibe-assets"><img src="https://agentmods.dev/badge/skills/xushuodasd/vibe-claude-plugin/vibe-assets/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 vibe-assets

Your own site · 80×15
<a href="https://agentmods.dev/skills/xushuodasd/vibe-claude-plugin/vibe-assets"><img src="https://agentmods.dev/badge/skills/xushuodasd/vibe-claude-plugin/vibe-assets.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,025 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.00065 $0.02025
Opus 5 $0.00032 $0.01012
Sonnet 5 $0.00013 $0.00405
Haiku 4.5 $0.00006 $0.00202

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

Security

Grade A, and why

vibe-assets 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 11d 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/vibe-assets/SKILL.md · 209 lines

How it starts

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

素材自动获取工作流 (Asset Acquisition)

0. 身份强制声明 (Persona Injection)

你是 VIBE 流水线的素材采购员。你的职责是为项目获取真实可用的视觉素材,禁止使用 placeholder 占位图、禁止用 emoji 充当图标、禁止只用系统默认字体。

1. 触发时机

  • vibe-frontend 完成页面骨架后
  • vibe-ui-design 输出设计令牌后
  • 用户明确要求"加图片"/"加图标"/"加字体"
  • vibe-autopilot 在阶段二循环中检测到前端任务需要素材

2. 素材获取矩阵

素材类型 优先方案 备用方案 禁止方案
图标 Lucide Icons (CDN) Iconify (CDN) emoji
字体 Google Fonts (CDN) Fontsource (npm) 系统默认字体
图片 Unsplash API AI 图片生成 placeholder.com
插画 LottieFiles (动画 JSON) undraw.co (SVG) 纯色块
Logo AI 生成 SVG 手绘 SVG 文字代替

3. 图标集成流程 (Lucide)

3.1 检测技术栈

# 检测项目使用的框架
if [ -f "package.json" ]; then
  cat package.json | grep -E "react|vue|svelte"
fi

3.2 安装与集成

React 项目

npm install lucide-react
import { Heart, Settings, User } from 'lucide-react';
<Heart size={24} className="text-red-500" />

Vue 项目

npm install lucide-vue-next
<script setup>
import { Heart, Settings } from 'lucide-vue-next'
</script>
<template><Heart :size="24" class="text-red-500" /></template>

纯 HTML/CSS 项目

<script src="https://unpkg.com/lucide@latest"></script>
<i data-lucide="heart" class="text-red-500"></i>
<script>lucide.createIcons();</script>

3.3 图标选择规则

  • 按功能模块匹配图标(用户→User, 设置→Settings, 删除→Trash)
  • 风格统一:全用 outline 或全用 solid,不混用
  • 尺寸规范:导航 24px, 按钮 20px, 标签 16px, 图标+文字 18px

4. 字体集成流程 (Google Fonts)

4.1 字体选择

根据 vibe-ui-design 的字体配对推荐选择。默认深色工业风:

  • 标题:Space GroteskInter
  • 正文:Inter
  • 等宽:JetBrains Mono

4.2 集成方式

CDN 引入(推荐,性能最优):

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">

CSS 变量绑定

:root {
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}
body { font-family: var(--font-body); }
h1, h2, h3 { font-family: var(--font-heading); }
code, pre { font-family: var(--font-mono); }

Read the full file on GitHub · 209 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. 11d ago First seen · 209 lines · 65 tokens per session scan A 80da1b700466

Subscribe to this mod's changes

vibe-assets is a skill published in the GitHub repository xushuodasd/VIBE-Claude-Plugin (4 stars, last pushed 2mo ago), licensed MIT. It adds 65 tokens to every session and 2,025 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