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.
git clone --depth 1 https://github.com/jiushiwon/wg-skillsWrote 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/commands/jiushiwon/wg-skills/form)<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>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.00000 | $0.00991 |
| Opus 5 | $0.00000 | $0.00495 |
| Sonnet 5 | $0.00000 | $0.00198 |
| Haiku 4.5 | $0.00000 | $0.00099 |
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.
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.
表单类组件
search-bar 搜索栏
说明:搜索输入框
别名:搜索框、搜索输入
属性:
| 名称 | 类型 | 默认值 | 说明 |
|---|---|---|---|
| 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 多选组
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.
- 4d ago First seen · 159 lines · 0 tokens per session scan A 19e9142bde17
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.
Other commands, from other repositories
ui-flow-review
Review menus, HUD, navigation, and player flow from a UX perspective.
responsive-design-specialist
Use when a layout breaks between sizes. Arbitrary breakpoints, type that does not scale, images that blow out the grid, or a desktop design retrofitted onto mobile.
design-form
Design a form with the fewest fields that works, clear labels, and errors that help.
frontend-3d
You are an expert in 3D web development using Three.js, React Three Fiber, WebGL, and WebGPU. You create immersive 3D experiences for the web.
frontend-design
Read and follow the instructions in agents/frontend-design/design-all.md. Also read all referenced files in agents/frontend-design/reference/ as needed for the task.
get-component-source
The full TSX source of a component (append " demo" for its usage example).