closing-obsolete-issues
Installation
SKILL.md
Closing Obsolete Issues
Use this skill to find old, outdated issues in the dart-lang/ai repository that can be closed because they have been fixed, are stale, obsolete, or not reproducible.
Instructions
- Identify Target Issues:
- Use the GitHub CLI (
gh) to search for the oldest open issues. - Use any label that the user gives you, or none if the user does not specify any issue labels.
- Sort by creation date (
created-asc) or last update (updated-asc) to find the most likely candidates for being outdated. - Fetch at least 10-20 candidates.
- Example command (with label):
gh issue list --repo dart-lang/ai --search "label:bug is:open sort:created-asc" --limit 20 | cat - Example command (without label):
gh issue list --repo dart-lang/ai --search "is:open sort:created-asc" --limit 20 | cat
- Use the GitHub CLI (
Related skills