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-standardization-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-standardization-skill)<a href="https://agentmods.dev/skills/jiushiwon/wg-skills/uniapp-standardization-skill"><img src="https://agentmods.dev/badge/skills/jiushiwon/wg-skills/uniapp-standardization-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-standardization-skill"><img src="https://agentmods.dev/badge/skills/jiushiwon/wg-skills/uniapp-standardization-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Privilege Escalation · line 118 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
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.00058 | $0.02329 |
| Opus 5 | $0.00029 | $0.01164 |
| Sonnet 5 | $0.00012 | $0.00466 |
| Haiku 4.5 | $0.00006 | $0.00233 |
Grade A, and why
uniapp-standardization-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 9d 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 — 296 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UniApp Standardization Skill
Overview
诊断现有 uniapp 项目与标准骨架的差距,出具规范化诊断报告和重构计划,指导按优先级逐步调整项目结构。
When to Use
触发此 skill 时使用:
- "项目规范化"
- "帮我看看项目结构有什么问题"
- "这个 uniapp 项目很乱"
- "需要重构 uniapp 项目"
- "代码规范调整"
Workflow
Phase 1: 项目结构扫描
→ 检测当前目录结构
→ 对比标准骨架(api/stores/components/pages/styles 等)
→ 识别缺失的目录和文件
Phase 2: 代码规范检测
→ API 层:是否统一封装、是否有重复请求逻辑
→ 状态管理:是否使用 Pinia/Vuex,store 是否规范
→ 组件:是否有统一的组件规范,重复组件是否抽离
→ 样式:是否有全局变量、样式是否分散
Phase 3: 生成诊断报告
→ 结构层面:缺失目录/文件清单
→ 代码层面:规范违背项及修复优先级
→ 行动建议:按优先级排序的调整清单
Phase 4: 执行规范化(可选)
→ 按报告逐步调整
→ 每次调整后生成新的 CLAUDE.md
Phase Details
Phase 1: 项目结构扫描
检测当前目录结构
# 查看项目根目录结构
ls -la
# 查看 src 目录结构
find src -type d
标准骨架参考
uniapp-vue3-project/
├── src/
│ ├── api/ # API 层
│ │ ├── modules/ # 按业务模块拆分
│ │ │ ├── user.ts
│ │ │ ├── order.ts
│ │ │ └── index.ts # 统一导出
│ │ ├── types/ # API 相关类型
│ │ └── index.ts # API 入口
│ ├── components/ # 公共组件
│ │ ├── AppButton/
│ │ ├── AppCard/
│ │ ├── AppEmpty/
│ │ ├── AppLoading/
│ │ ├── AppNavbar/
│ │ └── index.ts # 统一导出
│ ├── constants/ # 常量
│ │ ├── colors.ts
│ │ └── index.ts
│ ├── pages/ # 页面
│ │ ├── index/
│ │ │ └── index.vue
│ │ ├── profile/
│ │ └── ...
│ ├── static/ # 静态资源
│ │ ├── icons/
│ │ ├── images/
│ │ └── tab-bar/
│ ├── stores/ # 状态管理
│ │ ├── index.ts # store 入口
│ │ └── modules/
│ │ ├── user.ts
│ │ └── app.ts
│ ├── styles/ # 样式系统
│ │ ├── config/
│ │ ├── tokens/
│ │ │ ├── _colors.scss
│ │ │ ├── _spacing.scss
│ │ │ └── _index.scss
│ │ ├── _functions.scss
│ │ ├── _mixins.scss
│ │ ├── global.scss
│ │ └── variables.scss
│ ├── types/ # 全局类型
│ │ └── index.d.ts
│ ├── utils/ # 工具函数
│ │ ├── request.ts
│ │ ├── storage.ts
│ │ ├── platform.ts
│ │ └── index.ts
│ ├── App.vue
│ ├── main.ts
│ ├── pages.json
│ ├── manifest.json
│ └── uni.scss
├── .env
├── .env.example
├── .gitignore
├── package.json
├── tsconfig.json
├── vite.config.ts
└── README.md
What ships with it
5 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.
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.
- 9d ago First seen · 296 lines · 58 tokens per session scan A 9485ca3dc338
uniapp-standardization-skill is a skill published in the GitHub repository jiushiwon/wg-skills (100 stars, last pushed 2d ago), licensed Apache-2.0. It adds 58 tokens to every session and 2,329 once invoked, about $0.0003 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-09-03.
Other skills, from other repositories
visual-ralph
Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ultragoal with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.
debug-optimize-lcp
Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…
repro-admin
Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.
create-site
Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…
prototype-web
A clickable, high-fidelity web product prototype with navigation, a hero section, feature cards, steps, social proof, and optional pricing. It is designed to resemble a finished landing page while remaining a prototype.
menu-transitions-rtl
Animate react-horizontal-scrolling-menu scrolling and build right-to-left menus: noPolyfill defaults to true since v8, so transitionDuration (default 500), a custom-easing-function transitionBehavior, and per-call ScrollOptions { duration, boundary } on scrollToItem/scrollNext/scrollPrev are silently ignored unless…