combo

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

A collection of reusable interface patterns that combine icons with labels, badges, and buttons. It documents variants such as status-colored tags and different button styles.

In plain words
What is it for?
Use it to create icon labels, status badges, notification markers, primary or secondary buttons, outline buttons, and icon-only buttons.
Why use it?
It reduces repeated work when building familiar interface controls and keeps their appearance consistent.

Command for Claude Code

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

Good fit Use it to create icon labels, status badges, notification markers, primary or secondary buttons, outline buttons, and icon-only buttons.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/jiushiwon/wg-skills/combo"><img src="https://agentmods.dev/badge/commands/jiushiwon/wg-skills/combo.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 827 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.00827
Opus 5 $0.00000 $0.00413
Sonnet 5 $0.00000 $0.00165
Haiku 4.5 $0.00000 $0.00083

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

Security

Grade A, and why

combo 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/combo.md · 144 lines

How it starts

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

组合指令详解

指令列表

icon-tag

触发关键词:图标标签、icon+文字、图标+文字、带图标的标签

样式

  • 显示:inline-flex
  • 对齐:center
  • 间距:4px
  • 内边距:4px 8px
  • 背景:var(--bg-secondary)
  • 字号:14px

变体

  • icon-tag--primary:主色背景
  • icon-tag--success:成功色
  • icon-tag--warning:警告色
  • icon-tag--error:错误色

使用示例

<!-- 基础 -->
<view class="icon-tag">
  <text class="iconfont icon-fire"></text>
  <text>热门</text>
</view>

<!-- 主色 -->
<view class="icon-tag icon-tag--primary">
  <text class="iconfont icon-star"></text>
  <text>精选</text>
</view>

<!-- 成功色 -->
<view class="icon-tag icon-tag--success">
  <text class="iconfont icon-check"></text>
  <text>已完成</text>
</view>

<!-- 警告色 -->
<view class="icon-tag icon-tag--warning">
  <text class="iconfont icon-warning"></text>
  <text>注意</text>
</view>

<!-- 错误色 -->
<view class="icon-tag icon-tag--error">
  <text class="iconfont icon-error"></text>
  <text>失败</text>
</view>

badge

触发关键词:徽章、角标、小红点、badge

样式

  • 最小宽度:18px
  • 高度:18px
  • 内边距:0 5px
  • 背景:var(--error)
  • 文字色:var(--text-inverse)
  • 字号:10px
  • 圆角:9999px(圆形)

尺寸变体

  • badge--small:14x14px,字号8px
  • badge--large:22x22px,字号12px

使用示例

<!-- 带数字的徽章 -->
<view class="badge">3</view>

<!-- 小号徽章 -->
<view class="badge badge--small">1</view>

<!-- 大号徽章 -->
<view class="badge badge--large">99+</view>

<!-- 配合其他组件使用 -->
<view class="relative">
  <text>消息</text>
  <view class="badge">5</view>
</view>

icon-btn

触发关键词:图标按钮、带图标的按钮

样式:同 btn-icon,但支持内部放图标组件

使用示例

<!-- uniapp -->
<button class="icon-btn">
  <text class="iconfont icon-search"></text>
</button>

<!-- 或者带文字 -->
<view class="icon-btn">
  <text class="iconfont icon-search"></text>
  <text>搜索</text>
</view>

常用组合示例

列表项标签

<view class="list-item">
  <text class="title">项目名称</text>
  <view class="icon-tag icon-tag--success">
    <text class="iconfont icon-check"></text>
    <text>已完成</text>
  </view>
</view>

消息提示

<view class="message">
  <view class="icon-tag icon-tag--primary">
    <text class="iconfont icon-info"></text>
    <text>提示信息</text>
  </view>
</view>

Read the full file on GitHub · 144 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 · 144 lines · 0 tokens per session scan A c3e1ac672d82

Subscribe to this mod's changes

combo 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 827 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.