form

form is a command for Claude Code from jiushiwon/wg-skills. It costs 0 tokens per session (991 once invoked), scanned A, original, Apache-2.0.

A collection of form components for search boxes, labelled text fields, pickers, and date pickers. Pickers let users choose a value from a set of options or dates.

In plain words
What is it for?
Use it to build search forms, login fields, required inputs, dropdown selections, and date selection controls.
Why use it?
It provides the common input controls needed to collect and validate user information without defining each one from scratch.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md).

Good fit Use it to build search forms, login fields, required inputs, dropdown selections, and date selection controls.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/jiushiwon/wg-skills/form
Install

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.

Clone the repo
git clone --depth 1 https://github.com/jiushiwon/wg-skills

Made for: Claude Code.

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 form

README.md
[![agentmods](https://agentmods.dev/badge/commands/jiushiwon/wg-skills/form.svg)](https://agentmods.dev/commands/jiushiwon/wg-skills/form)
Your own site
<a href="https://agentmods.dev/commands/jiushiwon/wg-skills/form"><img src="https://agentmods.dev/badge/commands/jiushiwon/wg-skills/form.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 991 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.
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.00000 $0.00991
Opus 5 $0.00000 $0.00495
Sonnet 5 $0.00000 $0.00198
Haiku 4.5 $0.00000 $0.00099

Measured 4d ago against content hash 19e9142bde17, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

form 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 4d 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/uniapp/uniapp-ui-component-commands-skill/commands/form.md · 159 lines

How it starts

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

表单类组件

说明:搜索输入框

别名:搜索框、搜索输入

属性

名称 类型 默认值 说明
value string '' 输入值
placeholder string '搜索' 占位符
clearable boolean true 显示清除按钮
focus boolean false 自动聚焦

事件

  • search:回车搜索
  • clear:清除内容
  • input:输入变化

用法

<search-bar v-model="keyword" placeholder="请输入搜索内容" @search="onSearch" />

input-field 表单项

说明:带标签的输入框

别名:输入框、表单项

属性

名称 类型 默认值 说明
label string '' 标签
value string ''
type string 'text' 类型(text/password/number)
placeholder string '' 占位符
error string '' 错误信息
required boolean false 必填标记

用法

<input-field label="用户名" v-model="form.username" placeholder="请输入用户名" required />
<input-field label="密码" type="password" v-model="form.password" error="密码错误" />

picker 选择器

说明:下拉选择器

别名:下拉选择

属性

名称 类型 默认值 说明
value string/number '' 选中值
options array [] 选项 [{label, value}]
placeholder string '请选择' 占位符

事件

  • change:选择变化

用法

<picker
  v-model="selected"
  :options="[{label: '选项1', value: 1}, {label: '选项2', value: 2}]"
  @change="onChange"
/>

date-picker 日期选择器

说明:日期选择

别名:日期选择

属性

名称 类型 默认值 说明
value string '' 日期值
mode string 'date' 模式(date/time/datetime)
start string '' 开始日期
end string '' 结束日期

用法

<date-picker v-model="date" mode="date" start="2020-01-01" end="2030-12-31" />

switch 开关

说明:切换开关

别名:切换开关

属性

名称 类型 默认值 说明
value boolean false 开关状态
disabled boolean false 禁用
color string primary 开启颜色

事件

  • change:状态变化

用法

<switch v-model="enabled" @change="onChange" />

checkbox-group 多选组

Read the full file on GitHub · 159 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. 4d ago First seen · 159 lines · 0 tokens per session scan A 19e9142bde17

Subscribe to this mod's changes

form is a command published in the GitHub repository jiushiwon/wg-skills (92 stars, last pushed yesterday), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 991 tokens. 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.