vue-form-skill

vue-form-skill is a skill for Claude Code, Codex from jiushiwon/wg-skills. It costs 177 tokens per session (5,487 once invoked), scanned A, original, Apache-2.0.

A planned Vue form component guide covering form containers, validation, and form layouts. The supplied description says it is not yet implemented.

In plain words
What is it for?
It is intended for building and validating Vue forms, but the available material does not describe a usable implementation.
Why use it?
There is not enough information to claim that it currently removes a specific form-building problem.

Skill for Claude CodeCodex

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./vibeCoding/frontend/vue/vue-form-skill.

Good fit It is intended for building and validating Vue forms, but the available material does not describe a usable implementation.

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-form-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-form-skill

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

agentmods 80×15 button for vue-form-skill

Your own site · 80×15
<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>
Per session 177 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,487 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.00177 $0.05487
Opus 5 $0.00088 $0.02743
Sonnet 5 $0.00035 $0.01097
Haiku 4.5 $0.00018 $0.00549

Measured 2d ago against content hash 993169b2c321, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

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.

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

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 触发自定义方法

Read the full file on GitHub · 535 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. 2d ago Changed · +117 lines · +54 tokens per session 993169b2c321
  2. 6d ago Changed · +397 lines · +82 tokens per session c0796efa31b9
  3. 9d ago First seen · 21 lines · 41 tokens per session scan A 9c4628e1db0e

Subscribe to this mod's changes

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.

Related

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.

vercel-labs/json-render · 63 tokens

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…

microsoft/power-platform-skills · 73 tokens

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.

un-pany/v3-admin-vite · 108 tokens

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.

un-pany/v3-admin-vite · 137 tokens

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.

modu-ai/moai-adk · 49 tokens

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.

modu-ai/moai-adk · 54 tokens