uniapp-base-skill

uniapp-base-skill is a skill for Claude Code, Codex from jiushiwon/wg-skills. It costs 29 tokens per session (1,635 once invoked), scanned A, original, Apache-2.0.

A collection of uni-app building blocks for mobile-style pages, including cards, form controls, popups, lists, detail pages, login pages, and tab navigation. uni-app is a framework for building applications from shared web-style code.

In plain words
What is it for?
It helps create uni-app cards, inputs, switches, radio buttons, selects, popups, drawers, list pages, product details, login screens, and TabBar layouts.
Why use it?
It groups related page and component guidance so developers can use a suitable sub-skill for a specific interface need. The included demos show how the base components are arranged and styled.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps create uni-app cards, inputs, switches, radio buttons, selects, popups, drawers, list pages, product details, login screens, and TabBar layouts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jiushiwon/wg-skills/uniapp-base-skill
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.

Any agent
npx skills add jiushiwon/wg-skills --skill uniapp-base-skill
Clone the repo
git clone --depth 1 https://github.com/jiushiwon/wg-skills

Made for: Claude Code, Codex.

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 uniapp-base-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/jiushiwon/wg-skills/uniapp-base-skill/github.svg)](https://agentmods.dev/skills/jiushiwon/wg-skills/uniapp-base-skill)
Your own site
<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.

agentmods 80×15 button for uniapp-base-skill

Your own site · 80×15
<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>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,635 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00029 $0.01635
Opus 5 $0.00015 $0.00817
Sonnet 5 $0.00006 $0.00327
Haiku 4.5 $0.00003 $0.00163

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

Security

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.

vibeCoding/frontend/uniapp/uniapp-base-skill/SKILL.md · 150 lines

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 组合使用

组件放置规则

  1. 根容器 → 放在 uniapp-base-skill/ 根目录
    • base-card / base-input / base-popup
  2. 表单组件 (input/switch/radio/select) → 放在 uniapp-form-skill/
  3. 卡片组件 → 放在 uniapp-card-skill/
  4. 页面模板 → 放在 uniapp-page-skill/

Read the full file on GitHub · 150 lines

Files

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.

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. 12d ago First seen · 150 lines · 29 tokens per session scan A a6cbf173013c

Subscribe to this mod's changes

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.

Related

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…

stablyai/orca · 102 tokens

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…

dotnet/skills · 176 tokens

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.

callstack/agent-device · 55 tokens

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.

microsoft/winappCli · 71 tokens

react-native-ease-refactor

Scan for Animated/Reanimated code and migrate to EaseView.

appandflow/react-native-ease · 18 tokens

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"…

Eronred/aso-skills · 127 tokens