Sub-skill of github-modes: Automated Issue Management.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill automated-issue-management --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Automated Issue Management?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-automated-issue-management)More formats (shields.io, HTML) on the badges page.
---
name: github-modes-automated-issue-management
description: 'Sub-skill of github-modes: Automated Issue Management.'
version: 1.0.0
category: development
type: reference
scripts_exempt: true
---
# Automated Issue Management
## Automated Issue Management
```bash
# Triage unlabeled issues
gh issue list --label "" --json number,title | \
jq -r '.[] | "\(.number): \(.title)"'
# Bulk close stale issues
gh issue list --label "stale" --json number | \
jq -r '.[].number' | while read num; do
gh issue close $num --comment "Closing stale issue"
done
*See sub-skills for full details.*
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!