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.
git clone --depth 1 https://github.com/jiushiwon/wg-skillsnpx agentmods add skills/jiushiwon/wg-skills/vue-base-skillWrote 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/jiushiwon/wg-skills/vue-base-skill)<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.
<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>- NVIDIA SkillSpector pass
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.00108 | $0.02727 |
| Opus 5 | $0.00054 | $0.01363 |
| Sonnet 5 | $0.00022 | $0.00545 |
| Haiku 4.5 | $0.00011 | $0.00273 |
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.
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 — 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 |
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.
- base-card.md 441 B
- README.md 2.9 KB
- references/skill-matrix.md 6.2 KB
- vue-button-skill/base-button.md 6.7 KB
- vue-button-skill/demo-components/base-button/html/01-types.html 1.2 KB
- vue-button-skill/demo-components/base-button/html/02-variants.html 1.5 KB
- vue-button-skill/demo-components/base-button/html/03-sizes.html 833 B
- vue-button-skill/demo-components/base-button/README.md 1.1 KB
- vue-button-skill/README.md 1.6 KB
- vue-button-skill/SKILL.md 2.4 KB
- vue-card-skill/base-wg-card.md 26 KB
- vue-card-skill/demo-components/base-card/html/00-showcase.html 19 KB
- vue-card-skill/demo-components/base-card/html/01-base-card.html 19 KB
- vue-card-skill/demo-components/base-card/html/02-layout-cards.html 30 KB
- vue-card-skill/demo-components/base-card/html/03-flow-cards.html 30 KB
- vue-card-skill/demo-components/shared/demo.css 21 KB
- vue-card-skill/demo-components/shared/icons.css 22 KB
- vue-card-skill/demo-components/shared/tokens.css 1.8 KB
- vue-card-skill/README.md 1.8 KB
- vue-card-skill/SKILL.md 11 KB
- vue-dropdown-skill/base-dropdown.md 31 KB
- vue-dropdown-skill/demo-components/base-dropdown/html/00-showcase.html 62 KB
- vue-dropdown-skill/demo-components/shared/demo.css 8.0 KB
- vue-dropdown-skill/demo-components/shared/dropdown.css 13 KB
- vue-dropdown-skill/demo-components/shared/icons.css 13 KB
- vue-dropdown-skill/demo-components/shared/tokens.css 1.9 KB
- vue-dropdown-skill/README.md 1.8 KB
- vue-dropdown-skill/SKILL.md 11 KB
- vue-form-skill/base-checkbox.md 6.0 KB
- vue-form-skill/base-datepicker.md 14 KB
- vue-form-skill/base-form-item.md 6.5 KB
- vue-form-skill/base-form-render.md 11 KB
- vue-form-skill/base-form.md 6.1 KB
- vue-form-skill/base-input.md 9.3 KB
- vue-form-skill/base-radio.md 5.0 KB
- vue-form-skill/base-select.md 12 KB
- vue-form-skill/base-switch.md 3.9 KB
- vue-form-skill/base-upload.md 12 KB
- vue-form-skill/demo-components/base-form/html/00-showcase.html 62 KB
- vue-form-skill/demo-components/base-form/README.md 938 B
- vue-form-skill/demo-components/shared/demo.css 59 KB
- vue-form-skill/demo-components/shared/tokens.css 2.6 KB
- vue-form-skill/README.md 6.4 KB
- vue-form-skill/references/form-contract.md 11 KB
- vue-form-skill/references/mock-contract-product.md 6.1 KB
- vue-form-skill/references/validation-rules.md 5.9 KB
- vue-form-skill/SKILL.md 20 KB
- vue-status-skill/base-status.md 15 KB
- vue-status-skill/demo-components/base-status/html/base-status.html 4.1 KB
- vue-status-skill/demo-components/base-status/html/status.css 8.5 KB
- vue-status-skill/demo-components/base-status/html/status.js 5.7 KB runs code
- vue-status-skill/README.md 2.2 KB
- vue-status-skill/SKILL.md 2.2 KB
- vue-table-skill/base-loading.md 24 KB
- vue-table-skill/base-paginated.md 33 KB
- vue-table-skill/base-table.md 60 KB
- vue-table-skill/demo-components/base-table/html/base-loading.html 8.4 KB
- vue-table-skill/demo-components/base-table/html/base-paginated.html 5.1 KB
- vue-table-skill/demo-components/base-table/html/base-table.html 26 KB
- vue-table-skill/demo-components/base-table/html/demo.css 30 KB
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.
- 5d ago Changed · +115 lines · +49 tokens per session f2dedc0fe8d9
- 8d ago First seen · 114 lines · 59 tokens per session scan A 672f108b17ed
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.
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"…
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…
pandacss-styling
Use when panda CSS zero-runtime styling — token system, patterns, recipes, conditions, JSX styles. Use when working with pandacss styling.
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…
od-vue-export
Use this plugin when the user wants to hand an accepted Open Design artifact to a Vue 3 project.
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.