vue-base-skill

vue-base-skill is a skill for Claude Code, Codex from jiushiwon/wg-skills. It costs 108 tokens per session (2,727 once invoked), scanned A, original, Apache-2.0.

A parent guide for building Vue interface components with shared rules for cards, buttons, labels, and tables. It requires these components to sit inside a base card and use shared CSS design values.

In plain words
What is it for?
Use it as the foundation for Vue component work involving cards, buttons, tags, tables, forms, and other business-interface sections.
Why use it?
It gives related components one structure for containers, spacing, colours, sizing, and layout boundaries. This reduces inconsistent styling and disconnected page sections.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is 本技能严格镜像 [uniapp-base-skill](../../uniapp/uniapp-base-skill/) 结构:父技能(规范层)+ 4 个业务化子技能。.

Good fit Use it as the foundation for Vue component work involving cards, buttons, tags, tables, forms, and other business-interface sections.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/jiushiwon/wg-skills
agentmods
npx agentmods add skills/jiushiwon/wg-skills/vue-base-skill

Made for: Claude Code, Codex.

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 vue-base-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/jiushiwon/wg-skills/vue-base-skill/github.svg)](https://agentmods.dev/skills/jiushiwon/wg-skills/vue-base-skill)
Your own site
<a href="https://agentmods.dev/skills/jiushiwon/wg-skills/vue-base-skill"><img src="https://agentmods.dev/badge/skills/jiushiwon/wg-skills/vue-base-skill/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 vue-base-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/jiushiwon/wg-skills/vue-base-skill"><img src="https://agentmods.dev/badge/skills/jiushiwon/wg-skills/vue-base-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 108 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,727 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00108 $0.02727
Opus 5 $0.00054 $0.01363
Sonnet 5 $0.00022 $0.00545
Haiku 4.5 $0.00011 $0.00273

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

Security

Grade A, and why

vue-base-skill 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 5d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (vue-status-skill/demo-components/base-status/html/status.js), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

vibeCoding/frontend/vue/vue-base-skill/SKILL.md · 229 lines

How it starts

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

vue-base-skill(Vue 基础组件父技能)

容器原则:所有组件、表单、表格都必须嵌入 <base-card>。base-card 是根容器,无例外。

零 HTML5 标签原则:所有 .md 文档中的实现代码,必须使用 <div> <span> <p> 等基础标签 + CSS3 样式实现,严禁使用 <button> <table> <input> <select> <textarea> <checkbox> <radio> <form> <option> <tr> <td> <th> 等 HTML5 原生标签。按钮用 <base-button>、标签用 <base-status>、选择器/输入框/复选框/单选框等全部用 <div> + CSS3 模拟。

本技能严格镜像 uniapp-base-skill 结构:父技能(规范层)+ 4 个业务化子技能。

子技能地图

子技能 职责 入口
vue-card-skill base-card 根容器 SKILL.md
vue-button-skill base-button 按钮组件 SKILL.md
vue-tag-skill base-tag 标签组件 SKILL.md
vue-table-skill base-table 表格组件(23 形态) SKILL.md
vue-form-skill base-form 表单体系(8 组件:form / form-item / input / select / checkbox / radio / switch / datepicker) SKILL.md

设计 Token

所有子技能统一引用 vue-theme-skill 提供的 CSS 变量:

类别 命名规范 示例
颜色 --color-{name} / --color-{name}-{50~950} --color-primary-500
间距 --space-{n} --space-4(16px)
字号 --font-{size} --font-base(14px)
行高 --height-{comp}-{size} --height-button-md(36px)
圆角 --radius-{size} --radius-lg(8px)

禁止硬编码任何颜色 / 间距 / 字号 / 行高 / 圆角值。

🚫 零 HTML5 标签铁律(.md 文档约束)

所有 .md 文档中的实现代码(<template> / <script> / <style> / 代码片段)必须使用 <div> <span> <p> 等基础标签 + CSS3 样式实现。

严禁使用

HTML5 标签 必须替换为
<button> <base-button> 组件
<input> <div contenteditable> + CSS3 自定义输入框
<select> / <option> <div> + CSS3 自定义下拉
<textarea> <div contenteditable> + CSS3 自定义
<table> / <tr> / <td> / <th> <div> + display:flex/grid 自定义表格
<checkbox> / <radio> <div> + CSS3 自定义复选/单选
<form> <div> + @submit.prevent 自定义表单
<a> <div role="link"><router-link>
<img> <div> + background-image

Read the full file on GitHub · 229 lines

Files

What ships with it

60 files 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. 5d ago Changed · +115 lines · +49 tokens per session f2dedc0fe8d9
  2. 8d ago First seen · 114 lines · 59 tokens per session scan A 672f108b17ed

Subscribe to this mod's changes

vue-base-skill is a skill published in the GitHub repository jiushiwon/wg-skills (100 stars, last pushed yesterday), licensed Apache-2.0. It adds 108 tokens to every session and 2,727 once invoked, about $0.0005 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-03.

Related

Other skills, from other repositories

ui-ux-design

Generate design systems and implement UX/UI for software products using Astro, Svelte, Tailwind CSS, Material Design 3, and OKLCH color system. Covers style selection, color palettes, typography, layout patterns, accessibility, and frontend code generation. Triggers on "design system", "UI design", "color palette"…

nexus-substrate/nexus-agents · 99 tokens

shadcn-sveltekit-design

Use when building, redesigning, beautifying, or refactoring SvelteKit pages and reusable components with shadcn-svelte, Bits UI, or the shadcn-svelte MCP. Trigger on landing pages, dashboards, marketing sites, app shells, forms, navbars, tables, dialogs, responsive layouts, theming, icon selection, and requests to…

Michael-Obele/shadcn-svelte-mcp · 99 tokens

pandacss-styling

Use when panda CSS zero-runtime styling — token system, patterns, recipes, conditions, JSX styles. Use when working with pandacss styling.

oyi77/1ai-skills · 36 tokens

atai-design-system

Build the front-end for a Newton demo with the Archetype AI Design System — the published, versioned packages (@archetypeai/ds-lib-tokens, @archetypeai/ds-ui-svelte-console, @archetypeai/ds-ui-svelte-labs) and the ds scaffolding CLI (@archetypeai/ds-cli) — instead of hand-rolling tokens, components, fonts, or brand…

archetypeai/agent-skills · 259 tokens

od-vue-export

Use this plugin when the user wants to hand an accepted Open Design artifact to a Vue 3 project.

wolfenazz/YzPzCode · 0 tokens

tavern-ui

A front-end development guide for building interfaces shown inside SillyTavern chat messages, using HTML, CSS, JavaScript, or Vue 3. It also covers message placeholders, MVU variable access, packaging, deployment, and local previews.

ai4rpg/tavern-cards · 114 tokens