en un clic
categorize-revdep-issues
// Write revdep/issue.md to group packages by common error categories
// Write revdep/issue.md to group packages by common error categories
| 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)