用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/r-lib/vctrs --skill categorize-revdep-issues命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | categorize-revdep-issues |
| description | Write revdep/issue.md to group packages by common error categories |
Write revdep/issue.md to group packages by common error categories based on the error output in revdep/problems.md and revdep/failures.md.
This skill analyzes reverse dependency check results and writes out an issue tracking file to group packages by their error types, making it easier to:
Input files:
revdep/README.md - The New problems section lists the packages to grouprevdep/problems.md - Detailed error output for packages with test/check issuesrevdep/failures.md - Installation failures and error messagesOutput file:
revdep/issue.md - File to write packages grouped by error category to, may need to be createdRead all input files in parallel to understand the complete error landscape.
Group packages by their primary error cause. Common categories include:
Issues related to changes in our package:
Issues unrelated to changes we have made:
purrr::at_depth)For each category:
Format requirements:
## Category Name
Brief description of the issue and solution approach.
* [ ] [package1](url1)
* [ ] [package2](url2)
...
If you must include package specific comments, do so like:
## Category Name
Brief description of the issue and solution approach.
* [ ] [package1](url1)
* Comments about package1.
* [ ] [package2](url2)
...
Do not include package specific comments in the Brief description section.
Critical constraints:
README.md's New problems section* [ ] [package](url)After completing the rewrite, verify:
README.md's New problems section## Missing export: `dplyr::id`
Packages using `dplyr::id` which is not exported. These packages get "no visible binding for global variable 'id'" errors.
* [ ] [packageA](https://github.com/userA/packageA)
* [ ] [packageB](https://github.com/userB/packageB)