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.
npx skills add xushuodasd/VIBE-Claude-Plugin --skill vibe-assetsgit clone --depth 1 https://github.com/xushuodasd/VIBE-Claude-PluginWrote 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.
[](https://agentmods.dev/skills/xushuodasd/vibe-claude-plugin/vibe-assets)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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 Grotesk或Inter - 正文:
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); }
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.
- 11d ago First seen · 209 lines · 65 tokens per session scan A 80da1b700466
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.
Other skills, from other repositories
desktop-brand-builder
Generate a branded Qwen Code desktop package from the Tauri desktop shell using a minimal brandId and logo. Use when the user wants a custom, white-label, or rebranded desktop client, installer, DMG/EXE/AppImage/deb, or one-click brand build on top of packages/desktop-shell.
visual-content
Designs and directs the visual assets that carry content — carousels, infographics, quote graphics, diagrams, and social imagery — including the generation prompts where they are AI-produced. Use this to turn a written piece into a visual format, design a carousel or infographic, create social graphics, or fix visuals…
frame-bold-poster
A 1970s European editorial poster in motion — a red rule draws across, a giant tilted figure drops in, a three-line headline rises line-by-line, an italic serif standfirst fades.
frame-bold-signal
Bold colored card on a dark gradient — big section number, nav breadcrumb, orange card sliding in, title rising.
frame-creative-voltage
Electric split with hand-drawn script — offset panels slide in, display title rises with an outlined word, script strokes itself in.
frame-electric-studio
Two-panel split with quote as hero — white/blue panels open from center, accent bar grows, quote reveals line by line.