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-page-components-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-page-components-skill)<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.
<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>- 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.00250 | $0.07609 |
| Opus 5 | $0.00125 | $0.03805 |
| Sonnet 5 | $0.00050 | $0.01522 |
| Haiku 4.5 | $0.00025 | $0.00761 |
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.
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 | 上线前全维度体检 |
协作要点:
- 层级定位:
uniapp-app-generate-skill提供原子组件(AppButton / AppTab / AppInput / AppPopup / AppNavbar),本 skill 提供页面骨架组件。组件内部的基础 UI 是"默认实现",若项目已有共享组件体系,优先用本 skill 暴露的 slot(#tab/#footer/#navbar/#plus-panel/#header等)注入共享组件,避免重复造轮子。 - 样式三源合一:主题变量(theme-skill CSS 变量,运行时换肤)+ SCSS token(style-skill,编译期注入)可共存;本 skill 组件只依赖前者,保证"复制即用"。桥接细节见
references/theme-integration.md§5。 - 数据只做展示:组件的
list/messages/feedList/groups/resultList等只接收数据;分页、加载、发送、搜索、提交、登录等副作用一律由页面层调用 request-skill 封装处理,组件只emit事件。 - 命名与目录对齐:组件目录小写 kebab-case、
components/<name>/<name>.vue,遵循 standard-skill 命名规范与 easycom 默认规则。
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.
- components/base-avatar/base-avatar.vue 2.0 KB
- components/base-button/base-button.vue 3.5 KB
- components/base-card/base-card.vue 3.0 KB
- components/base-form-item/base-form-item.vue 2.3 KB
- components/base-navbar/base-navbar.vue 4.3 KB
- components/base-tabbar/base-tabbar.vue 3.8 KB
- components/chat-page/chat-page.vue 10 KB
- components/comment-item/comment-item.vue 4.0 KB
- components/custom-tabbar/custom-tabbar.vue 1.6 KB
- components/empty/empty.vue 2.3 KB
- components/form-page/form-page.vue 2.6 KB
- components/home-page/home-page.vue 4.0 KB
- components/image-card/image-card.vue 4.2 KB
- components/login-page/login-page.vue 7.1 KB
- components/moments-page/moments-page.vue 11 KB
- components/notice-bar/notice-bar.vue 2.4 KB
- components/product-detail-page/product-detail-page.vue 6.7 KB
- components/profile-page/profile-page.vue 7.2 KB
- components/result-page/result-page.vue 3.2 KB
- components/search-page/search-page.vue 8.8 KB
- components/setting-item/setting-item.vue 4.1 KB
- components/tab-list-page/tab-list-page.vue 6.0 KB
- components/user-card/user-card.vue 2.8 KB
- README.md 9.4 KB
- references/21-components-preview.html 38 KB
- references/business-scenarios.md 6.4 KB
- references/page-specs.md 37 KB
- references/platform-app.md 4.7 KB
- references/theme-detect.md 6.7 KB
- references/theme-integration.md 10 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 · 325 lines · 250 tokens per session scan A 8abc77c6c27a
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.
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…
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…
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…
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…
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…
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.