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.
npx skills add jiushiwon/wg-skills --skill uniapp-base-skillgit 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/skills/jiushiwon/wg-skills/uniapp-base-skill)<a href="https://agentmods.dev/skills/jiushiwon/wg-skills/uniapp-base-skill"><img src="https://agentmods.dev/badge/skills/jiushiwon/wg-skills/uniapp-base-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.
<a href="https://agentmods.dev/skills/jiushiwon/wg-skills/uniapp-base-skill"><img src="https://agentmods.dev/badge/skills/jiushiwon/wg-skills/uniapp-base-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00029 | $0.01635 |
| Opus 5 | $0.00015 | $0.00817 |
| Sonnet 5 | $0.00006 | $0.00327 |
| Haiku 4.5 | $0.00003 | $0.00163 |
Grade A, and why
uniapp-base-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 12d 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 — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.
uniapp-base-skill
uni-app 页面组件技能套件。
本技能包含三个子技能:
子技能
| 子技能 | 说明 | 入口 |
|---|---|---|
| uniapp-card-skill | 卡片组件(base-card、按钮、卡片布局) | SKILL.md |
| uniapp-form-skill | 表单组件(input/switch/radio/select/popup) | SKILL.md |
| uniapp-page-skill | 页面模板(列表页、详情页、登录页、TabBar) | SKILL.md |
使用方式
# 使用子技能
/uniapp-card-skill 做一个卡片
/uniapp-form-skill 做一个输入框
/uniapp-page-skill 做一个商品详情页
文件结构
uniapp-base-skill/ # 父技能入口
├── SKILL.md # 本文件
├── README.md # 用户文档
├── base-card.md # 根容器:基础卡片(所有组件的基石)
├── base-input.md # 根容器:通用输入框(表单基础组件)
├── base-popup.md # 根容器:弹窗/抽屉(内置 base-card)
├── demo-components/ # 根级组件的 demo
│ ├── shared/base-preview.css # 共享预览样式(手机壳容器)
│ └── base-popup/html/ # 4 方向弹窗 demo
├── uniapp-card-skill/ # 子技能:卡片组件
├── uniapp-form-skill/ # 子技能:表单组件
└── uniapp-page-skill/ # 子技能:页面模板
设计规范
组件层级
┌─────────────────────────────────────────┐
│ 根容器(最小单位) │
│ base-card / base-input / base-popup │
└─────────────────────────────────────────┘
↑ ↑ ↑
┌──────────┐ ┌──────────┐ ┌──────────┐
│ 卡片组件 │ │ 表单组件 │ │ 弹窗组件 │
│ (card) │ │ (form) │ │ (popup) │
└──────────┘ └──────────┘ └──────────┘
↑ ↑ ↑
┌─────────────────────────────────────┐
│ 页面模板 (page) │
│ 列表页 / 详情页 / 登录页 / TabBar │
└─────────────────────────────────────┘
依赖关系
| 组件类型 | 依赖 | 说明 |
|---|---|---|
| 根容器 | 无 | base-card / base-input / base-popup 为最小单位 |
| 表单组件 | 根容器 | switch/radio/select 依赖 base-input |
| 卡片组件 | 根容器 | 卡片布局依赖 base-card |
| 弹窗组件 | 根容器 | base-popup 内置 base-card(自动遵守容器原则) |
| 页面模板 | card + form + popup | 组合使用 |
组件放置规则
- 根容器 → 放在
uniapp-base-skill/根目录- base-card / base-input / base-popup
- 表单组件 (input/switch/radio/select) → 放在
uniapp-form-skill/ - 卡片组件 → 放在
uniapp-card-skill/ - 页面模板 → 放在
uniapp-page-skill/
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- base-card.md 5.5 KB
- base-input.md 12 KB
- base-popup.md 6.5 KB
- demo-components/base-popup/html/00-showcase.html 8.6 KB
- demo-components/base-popup/html/popup-bottom.html 12 KB
- demo-components/base-popup/html/popup-left.html 9.0 KB
- demo-components/base-popup/html/popup-right.html 13 KB
- demo-components/base-popup/html/popup-top.html 11 KB
- demo-components/base-popup/README.md 2.3 KB
- demo-components/shared/base-preview.css 4.4 KB
- demo-components/shared/icons/arrow-right.svg 223 B
- demo-components/shared/icons/bell.svg 354 B
- demo-components/shared/icons/check.svg 216 B
- demo-components/shared/icons/chevron-down.svg 213 B
- demo-components/shared/icons/chevron-right.svg 214 B
- demo-components/shared/icons/dot.svg 142 B
- demo-components/shared/icons/edit.svg 338 B
- demo-components/shared/icons/filter.svg 224 B
- demo-components/shared/icons/folder.svg 321 B
- demo-components/shared/icons/home.svg 352 B
- demo-components/shared/icons/icons-sprite.svg 5.3 KB
- demo-components/shared/icons/message-circle.svg 231 B
- demo-components/shared/icons/minus.svg 209 B
- demo-components/shared/icons/plus.svg 217 B
- demo-components/shared/icons/search.svg 254 B
- demo-components/shared/icons/settings.svg 566 B
- demo-components/shared/icons/share-2.svg 342 B
- demo-components/shared/icons/star.svg 565 B
- demo-components/shared/icons/triangle-alert.svg 289 B
- demo-components/shared/icons/user.svg 279 B
- demo-components/shared/icons/x.svg 221 B
- README.md 2.5 KB
- references/skill-matrix.md 1.1 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-html/card-basic.html 3.3 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-html/card-button.html 7.9 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-html/card-friend.html 3.4 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-html/card-grid.html 8.3 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-html/card-info.html 3.7 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-html/card-menu.html 4.5 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-html/card-product.html 3.6 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-html/card-profile.html 4.8 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-html/card-set.html 3.7 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-html/card-vip.html 6.4 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-md/card-basic.md 1.5 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-md/card-button.md 3.2 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-md/card-friend.md 1.2 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-md/card-grid.md 2.7 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-md/card-info.md 1.7 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-md/card-menu.md 1008 B
- uniapp-card-skill/demo-components/base-card-layout/card-1-md/card-product.md 1.3 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-md/card-profile.md 1.8 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-md/card-set.md 1.1 KB
- uniapp-card-skill/demo-components/base-card-layout/card-1-md/card-vip.md 1.5 KB
- uniapp-card-skill/demo-components/base-card-layout/card-2-html/card-article.html 6.7 KB
- uniapp-card-skill/demo-components/base-card-layout/card-2-html/card-article.png 691 KB
- uniapp-card-skill/demo-components/base-card-layout/card-2-html/card-comment.html 4.1 KB
- uniapp-card-skill/demo-components/base-card-layout/card-2-html/card-comment.png 85 KB
- uniapp-card-skill/demo-components/base-card-layout/card-2-html/card-coupon.html 7.8 KB
- uniapp-card-skill/demo-components/base-card-layout/card-2-html/card-coupon.png 538 KB
- uniapp-card-skill/demo-components/base-card-layout/card-2-html/card-news.html 7.2 KB
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.
- 12d ago First seen · 150 lines · 29 tokens per session scan A a6cbf173013c
uniapp-base-skill is a skill published in the GitHub repository jiushiwon/wg-skills (99 stars, last pushed yesterday), licensed Apache-2.0. It adds 29 tokens to every session and 1,635 once invoked, about $0.0001 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-08-30.
Other skills, from other repositories
orca-emulator-android
Android device and emulator control from inside Orca over adb, with the live device view in Orca's emulator pane. Use when driving an adb-connected emulator or phone on Windows, Linux, or macOS: booting AVDs, taps, swipes, typing, hardware buttons, rotation, app install and launch, runtime permissions, the…
android-tombstone-symbolication
Symbolicate the .NET runtime frames in an Android tombstone file. Extracts BuildIds and PC offsets from the native backtrace, downloads debug symbols from the Microsoft symbol server, and runs llvm-symbolizer to produce function names with source file and line numbers. USE FOR triaging a .NET MAUI or Mono Android app…
dogfood
Systematically explore and test a mobile app on iOS/Android with agent-device to find bugs, UX issues, and other problems. Use when asked to dogfood, QA, exploratory test, find issues, bug hunt, or test this app on mobile.
winapp-maui
Package and sign .NET MAUI Windows apps with winapp, resolving the resizetizer manifest dependency. Use when packaging or signing a .NET MAUI Windows app, building a MAUI MSIX or signed unpackaged build in CI, or fixing 'manifest contains unresolved placeholders ($placeholder$)' errors from winapp package.
react-native-ease-refactor
Scan for Animated/Reanimated code and migrate to EaseView.
apple-search-ads
When the user wants to set up, optimize, or scale Apple Search Ads (ASA) campaigns — including keyword bidding, match types, campaign structure, Creative Product Sets, CPP routing, and ROAS optimization. Use when the user mentions "Apple Search Ads", "ASA", "Search Ads", "Search tab ads", "Today tab ads", "CPT"…