list

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

A collection of list components for rows, product cards, article cards, and chat bubbles. The cards display information such as images, titles, prices, summaries, authors, or dates.

In plain words
What is it for?
Use it to create settings lists, product displays, article previews, and chat-style message lists.
Why use it?
It provides ready-made layouts for repeated content instead of rebuilding each list item or card.

Command for Claude Code

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

Good fit Use it to create settings lists, product displays, article previews, and chat-style message lists.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/jiushiwon/wg-skills/list
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 list

README.md
[![agentmods](https://agentmods.dev/badge/commands/jiushiwon/wg-skills/list/github.svg)](https://agentmods.dev/commands/jiushiwon/wg-skills/list)
Your own site
<a href="https://agentmods.dev/commands/jiushiwon/wg-skills/list"><img src="https://agentmods.dev/badge/commands/jiushiwon/wg-skills/list/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 list

Your own site · 80×15
<a href="https://agentmods.dev/commands/jiushiwon/wg-skills/list"><img src="https://agentmods.dev/badge/commands/jiushiwon/wg-skills/list.svg" alt="Reviewed on agentmods" width="80" 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 840 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.00840
Opus 5 $0.00000 $0.00420
Sonnet 5 $0.00000 $0.00168
Haiku 4.5 $0.00000 $0.00084

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

Security

Grade A, and why

list 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.

vibeCoding/frontend/uniapp/uniapp-ui-component-commands-skill/commands/list.md · 130 lines

How it starts

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

列表类组件

list-item 列表项

说明:通用列表项,支持图标、箭头、开关

别名:列表项、单元格

属性

名称 类型 默认值 说明
title string '' 标题
label string '' 副标题
icon string '' 左侧图标
arrow boolean false 显示右侧箭头
clickable boolean false 可点击态

用法

<list-item title="设置" icon="setting" arrow clickable @click="goSetting" />
<list-item title="头像" label="点击更换">
  <template #right>
    <image src="/avatar.png" />
  </template>
</list-item>

product-card 商品卡片

说明:商品展示卡片

别名:商品、商品块

属性

名称 类型 默认值 说明
image string '' 商品图片
title string '' 商品标题
price string '' 价格
originPrice string '' 原价
sales string '' 销量
tag string '' 标签

用法

<product-card
  image="/product.jpg"
  title="商品名称"
  price="99.00"
  originPrice="199.00"
  sales="1000+"
  tag="热卖"
/>

article-card 文章卡片

说明:文章/内容卡片

别名:文章、文章块

属性

名称 类型 默认值 说明
image string '' 封面图
title string '' 标题
summary string '' 摘要
author string '' 作者
date string '' 日期
readCount string '' 阅读量

用法

<article-card
  title="文章标题"
  summary="文章摘要..."
  image="/cover.jpg"
  author="作者"
  date="2024-01-01"
/>

chat-bubble 聊天气泡

说明:对话消息气泡

别名:消息气泡、对话气泡

属性

名称 类型 默认值 说明
content string '' 消息内容
type string 'text' 内容类型(text/image/voice)
position string 'left' 位置(left/right)
avatar string '' 头像

用法

<chat-bubble content="你好" position="left" avatar="/avatar1.png" />
<chat-bubble content="有什么可以帮助?" position="right" avatar="/avatar2.png" />

timeline 时间线

说明:时间轴组件

别名:时间轴

属性

名称 类型 默认值 说明
items array [] 时间线数据

用法

<timeline :items="[
  { time: '2024-01-01', title: '开始', content: '项目启动' },
  { time: '2024-02-01', title: '进行中', content: '开发中' },
  { time: '2024-03-01', title: '完成', content: '项目上线' }
]" />

Read the full file on GitHub · 130 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. 5d ago First seen · 130 lines · 0 tokens per session scan A 8d2178b8d5bd

Subscribe to this mod's changes

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