用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/microsoft/webui --skill quality-gate命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Bump WebUI to an input release version, run the full gate, and prepare a release PR with bucketed changes since the previous v-prefixed tag.
Authoritative WebUI framework reference for generating correct application code - template-first authoring rules, template syntax, styling, interactivity, routing, state JSON, and anti-patterns.
Speed and memory performance rules for Rust crates, the Node addon, webui-framework, and webui-router.
基于 SOC 职业分类
正在显示 SKILL.md
| name | quality-gate |
| description | Run before every commit or push: formatting, linting, tests, dependency audits, builds, and docs. |
Run this before every commit. Work is not done until it passes.
cargo xtask check
This runs, in order: license-headers -> fmt -> clippy -> deny -> test -> build.
Missing Rust tools (clippy, rustfmt, cargo-deny, wasm-pack, wasm32-unknown-unknown target) are auto-installed on first run.
When iterating locally, use targeted crate checks for faster feedback:
cargo test -p microsoft-webui-handler # test one crate
cargo xtask check # then full gate before commit
If the change touches user-visible behavior, also run:
cd docs && pnpm build
This catches broken links, VitePress syntax errors, and missing pages. See the docs-sync skill for which docs files to update based on what changed.
The gate catches formatting, lint, and test failures. For deeper code quality checks (correctness, performance, concurrency, API design, architecture), apply the code-review skill.