uniapp-page-components-skill

uniapp-page-components-skill is a skill for Claude Code, Codex from jiushiwon/wg-skills. It costs 250 tokens per session (7,609 once invoked), scanned A, original, Apache-2.0.

A uni-app skill for building reusable page components from 22 common mobile-page patterns. uni-app is a framework for creating apps and mini-programs from a shared codebase; slots are places where a component accepts custom content.

In plain words
What is it for?
Use it to add reusable cards, lists, profiles, menus, forms, and other frequently used page layouts to a uni-app project.
Why use it?
It avoids rebuilding common page layouts from scratch while leaving room to replace the displayed content. Its components are intended to follow related uni-app naming, styling, theme, and communication rules.

Skill for Claude CodeCodex

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

Good fit Use it to add reusable cards, lists, profiles, menus, forms, and other frequently used page layouts to a uni-app project.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/jiushiwon/wg-skills/uniapp-page-components-skill"><img src="https://agentmods.dev/badge/skills/jiushiwon/wg-skills/uniapp-page-components-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 250 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,609 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.00250 $0.07609
Opus 5 $0.00125 $0.03805
Sonnet 5 $0.00050 $0.01522
Haiku 4.5 $0.00025 $0.00761

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

Security

Grade A, and why

uniapp-page-components-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-page-components-skill/SKILL.md · 325 lines

How it starts

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

uniapp 常用组件化页面 Skill

定位

本 skill 是独立的 uniapp 组件化页面技能,覆盖 22 个高频组件——把最高频、结构最固定的页面抽象成可复用组件,复制进项目、往 slot 填内容即可用,自由化高、无需重写布局。

与相关 skill 的定位边界

Skill 职责 与本 skill 的关系
uniapp-standard-skill uniapp 开发通用规范:20 条红线 + 目录结构 + 接口/命名/组件通信规范 前置规范。组件遵循其红线(R15 SCSS 用 Token、R05 长列表分页等)与目录/命名规范(小写 kebab-case、easycom)
uniapp-theme-skill 主题系统引擎:CSS 变量(色阶/尺寸/圆角)运行时换肤 前置依赖。所有组件样式一律使用 var(--xxx) 引用其主题变量,禁止写死。项目无主题系统时先调用它或按 fallback 表硬编码
uniapp-style-skill 设计系统与组件规范(Design Tokens / 排版 / 间距 / 红线 D01-D32) 必循规范。组件遵循其红线(scoped、TS Props、rpx、图片兜底、可点击区 ≥ 88rpx 等)
uniapp-app-generate-skill uni-app 项目骨架生成 + 共享组件体系(AppButton/AppTab/AppCard...) 上游。新项目先生成骨架,再调用本 skill 填充页面组件;组件内基础 UI 可用其共享组件替换(见协作要点)
uniapp-request-skill 统一请求封装(Token/防抖/Mock/SSE) 数据层。组件只接收数据、emit 事件,获取逻辑走 request 封装
uniapp-code-audit-skill uniapp 全维度代码审计(报告-only) 后置体检。组件上线前可交付审计
uniapp-components-skill 登录鉴权与安全规范 无交集

组合工作流(与其它 uniapp 技能配合)

本 skill 位于 uniapp 技能链路的「页面组件层」,完整组合链路:

阶段 技能 作用
1. 骨架 uniapp-app-generate-skill 从零生成项目骨架(已有项目可跳过)
2. 规范 uniapp-standard-skill 通用红线、目录结构、接口/命名/组件通信规范
3. 主题 uniapp-theme-skill CSS 变量主题系统(本 skill 组件换肤前提)
4. 视觉 uniapp-style-skill Design Tokens + 组件规范 D01-D32
5. 页面 本 skill 生成页面组件,往 slot 填内容
6. 数据 uniapp-request-skill 数据经统一 request 封装获取,组件只展示 + emit
7. 审计 uniapp-code-audit-skill 上线前全维度体检

协作要点

  1. 层级定位uniapp-app-generate-skill 提供原子组件(AppButton / AppTab / AppInput / AppPopup / AppNavbar),本 skill 提供页面骨架组件。组件内部的基础 UI 是"默认实现",若项目已有共享组件体系,优先用本 skill 暴露的 slot(#tab / #footer / #navbar / #plus-panel / #header 等)注入共享组件,避免重复造轮子。
  2. 样式三源合一:主题变量(theme-skill CSS 变量,运行时换肤)+ SCSS token(style-skill,编译期注入)可共存;本 skill 组件只依赖前者,保证"复制即用"。桥接细节见 references/theme-integration.md §5。
  3. 数据只做展示:组件的 list / messages / feedList / groups / resultList 等只接收数据;分页、加载、发送、搜索、提交、登录等副作用一律由页面层调用 request-skill 封装处理,组件只 emit 事件。
  4. 命名与目录对齐:组件目录小写 kebab-case、components/<name>/<name>.vue,遵循 standard-skill 命名规范与 easycom 默认规则。

Read the full file on GitHub · 325 lines

Files

What ships with it

30 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 · 325 lines · 250 tokens per session scan A 8abc77c6c27a

Subscribe to this mod's changes

uniapp-page-components-skill is a skill published in the GitHub repository jiushiwon/wg-skills (99 stars, last pushed yesterday), licensed Apache-2.0. It adds 250 tokens to every session and 7,609 once invoked, about $0.0013 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

animate-expo

Build animations in React Native and Expo, making the decisions in the order that determines whether they feel right — should it animate, which thread it runs on, which properties, spring or timing, how the gesture hands off, how it degrades. Writes the implementation with Reanimated, Gesture Handler, Expo Router and…

emilkowalski/skills · 112 tokens

leanback-to-compose-tv-migration

Provides instructions and architectural patterns for migrating Android TV applications from legacy Leanback UI Toolkit, Android Views, or Support Fragments to Jetpack Compose for TV (androidx.tv). Use this skill for Leanback to Compose migrations, including browse screen, settings screen, authentication screen, login…

android/skills · 151 tokens

maui-data-binding

Guidance for .NET MAUI XAML and C# data bindings — compiled bindings, INotifyPropertyChanged / ObservableObject, value converters, binding modes, multi-binding, relative bindings, fallbacks, and MVVM best practices. USE FOR: setting up compiled bindings with x:DataType, implementing INotifyPropertyChanged or…

dotnet/skills · 180 tokens

expo-brownfield

Framework (OSS). Integrate Expo and React Native into an existing native iOS or Android app. Use for brownfield, embedding a React Native screen in SwiftUI/UIKit or Kotlin, or AAR/XCFramework packaging. Covers isolated and integrated approaches. For building or distributing a purely native app with EAS, use…

expo/skills · 74 tokens

migrate-xml-views-to-jetpack-compose

Provides a structured workflow for migrating an Android XML View to Jetpack Compose. This skill details the step-by-step process, from planning and dependency setup, to theming and layout migration, validation and XML cleanup. Use this skill when you need to migrate an XML View to Jetpack Compose in an Android…

android/skills · 98 tokens

web-haptics

Add haptic feedback to web apps using the web-haptics library. Use when building mobile-facing UIs that need tactile feedback on buttons, toggles, forms, pickers, and other interactive elements.

lochie/web-haptics · 47 tokens