用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/microsoft/GHCP-Lab --skill review-checklist命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Generates randomized alert test data for the alert management system. Use this when asked to create sample alerts, mock data, or populate the system with test events for development and testing.
<TODO: Describe what this skill does and when to use it.>
Triages a batch of alerts by severity and urgency, producing a prioritized action plan.
基于 SOC 职业分类
正在显示 SKILL.md
| name | review-checklist |
| description | Generates a language-specific code review checklist tailored to the files being changed. |
| argument-hint | [language-or-file] |
This skill generates targeted code review checklists customized for the specific programming language or files in your change.
Each checklist includes checks for:
Checklists are formatted as markdown with categories as sections, each containing checkboxes:
## [Language] Code Review Checklist
### Type Safety
- [ ] All variables have explicit types
- [ ] No unnecessary type assertions
- ...
### Error Handling
- [ ] Exception handling is explicit
- [ ] Error messages are helpful
- ...
### Testing & Coverage
- [ ] New code has unit tests
- [ ] Edge cases are covered
- ...
### Security
- [ ] Input validation present
- [ ] No credential leaks
- ...
### Documentation
- [ ] Public APIs are documented
- [ ] Complex logic is explained
- ...
/review-checklist TypeScript
/review-checklist C#
/review-checklist for src/auth.ts
/review-checklist Python
The skill automatically detects the language from file extensions when provided, or uses the language name directly to generate the appropriate checklist.