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-form-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-form-skill)<a href="https://agentmods.dev/skills/jiushiwon/wg-skills/vue-form-skill"><img src="https://agentmods.dev/badge/skills/jiushiwon/wg-skills/vue-form-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-form-skill"><img src="https://agentmods.dev/badge/skills/jiushiwon/wg-skills/vue-form-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.00177 | $0.05487 |
| Opus 5 | $0.00088 | $0.02743 |
| Sonnet 5 | $0.00035 | $0.01097 |
| Haiku 4.5 | $0.00018 | $0.00549 |
Grade A, and why
vue-form-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 2d 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 — 535 lines — stays where its author put it; the contents beside it link to each section on GitHub.
vue-form-skill
Vue 表单体系技能。Vue3 + TypeScript 泛型组件,10 个核心组件(9 基础 + 1 契约渲染器),覆盖 99% 业务表单场景。零第三方组件库。
容器原则:所有表单必须嵌入
<base-card>。无例外。契约驱动:
base-form-render根据 FormSchema(字段 + 类型 + 必填)自动生成表单,一份契约同时驱动前端渲染与后端入参校验。零 HTML5 标签原则:表单组件是重灾区(
<input><select><textarea><form><label>),.md文档里严禁出现这些原生标签,必须用<div><span>+ ARIA + contenteditable + 键盘事件实现。表单组件若混入原生标签,整套规范直接破功。本技能严格镜像 vue-base-skill 规范体系,所有组件遵守父技能的 4 条铁律(容器原则 + Token 驱动 + 零第三方 + TypeScript 泛型)。
核心组件
| 组件 | 说明 | 定位 |
|---|---|---|
| base-form | 表单容器 | 数据管理、校验引擎、布局控制 |
| base-form-item | 表单项 | 标签、校验提示、必填标记 |
| base-input | 输入框 | 文本、密码、搜索、文本域 |
| base-select | 选择器 | 单选、多选、搜索过滤 |
| base-checkbox | 复选框 | 单个、复选组 |
| base-radio | 单选框 | 单选组 |
| base-switch | 开关 | 开/关切换 |
| base-datepicker | 日期选择器 | 日期、日期范围 |
| base-upload | 上传 | 图片墙、附件、进度、删除 |
| base-form-render | 万能表单渲染器 | 契约驱动,自动生成表单 |
命名对齐矩阵(与 uniapp-form-skill 完全对齐)
vue-form-skill ← uniapp-form-skill
base-form ← base-form
base-form-item ← base-form-item
base-input ← base-input
base-select ← base-select
base-checkbox ← base-checkbox
base-radio ← base-radio
base-switch ← base-switch
base-datepicker ← base-datepicker
base-upload ← base-upload
base-form-render ← base-form-render
跨技能命名严格保持一致:组件、Token、文件结构、容器原则。
🚫 零 HTML5 标签铁律(.md 文档约束)
所有
.md文档中的实现代码(<template>/<script>/<style>/ 代码片段)必须使用<div><span>等基础标签 + ARIA + contenteditable + 键盘事件实现。
严禁使用(表单组件重灾区)
| HTML5 标签 | 必须替换为 |
|---|---|
<input type="text/password/checkbox/radio"> |
<div contenteditable role="textbox"> 或 <div role="checkbox/radio"> |
<textarea> |
<div contenteditable="true" role="textbox"> |
<select> / <option> |
<div> + 自定义面板 + <div> 选项 |
<form> |
<div role="form"> + @keydown.enter.prevent |
<label> |
<div role="label"> 或 <div> + 文本 |
<fieldset> / <legend> |
<div class="xxx__group"> + <div class="xxx__legend"> |
<button type="submit/reset"> |
<base-button> + @click 触发自定义方法 |
What ships with it
18 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-checkbox.md 6.0 KB
- base-datepicker.md 14 KB
- base-form-item.md 6.5 KB
- base-form-render.md 11 KB
- base-form.md 6.1 KB
- base-input.md 9.3 KB
- base-radio.md 5.0 KB
- base-select.md 12 KB
- base-switch.md 3.9 KB
- base-upload.md 12 KB
- demo-components/base-form/html/00-showcase.html 62 KB
- demo-components/base-form/README.md 938 B
- demo-components/shared/demo.css 59 KB
- demo-components/shared/tokens.css 2.6 KB
- README.md 6.4 KB
- references/form-contract.md 11 KB
- references/mock-contract-product.md 6.1 KB
- references/validation-rules.md 5.9 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.
- 2d ago Changed · +117 lines · +54 tokens per session 993169b2c321
- 6d ago Changed · +397 lines · +82 tokens per session c0796efa31b9
- 9d ago First seen · 21 lines · 41 tokens per session scan A 9c4628e1db0e
vue-form-skill is a skill published in the GitHub repository jiushiwon/wg-skills (100 stars, last pushed 2d ago), licensed Apache-2.0. It adds 177 tokens to every session and 5,487 once invoked, about $0.0009 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
shadcn-svelte
Pre-built shadcn-svelte components for json-render Svelte apps. Use when working with @json-render/shadcn-svelte, adding standard UI components to a Svelte catalog, or building Svelte web UIs with shadcn-svelte + Tailwind CSS components.
create-site
Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…
v3-create-crud
A page generator for standard create, read, update, and delete screens, commonly called CRUD screens. It uses Element Plus, a Vue user-interface library, to build tables, searches, pagination, forms, and delete confirmations.
v3-use-composables
Documentation for reusable Vue functions in a project, covering device detection, asynchronous dropdown data, loading screens, pagination, routing, themes, page titles, and watermarks.
moai-domain-uiux
UI/UX design systems specialist covering accessibility, icons, theming, design tokens, and user experience patterns. Use when working on design systems, WCAG compliance, ARIA patterns, or dark mode theming.
moai-domain-frontend
Frontend development specialist covering React 19, Next.js 16, Vue 3.5, and modern UI/UX patterns with component architecture. Use when building web UIs, implementing components, optimizing frontend performance, or integrating state management.