Agent skill · Content & Marketing

triage-issues

Triage open GitHub issues by reviewing unlabeled ones and applying the most appropriate labels based on their content

dyoshikawa1,265★ · +16/wk · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add dyoshikawa/rulesync --skill triage-issues --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Path: .rulesync/skills/triage-issues/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,285 · +20 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Triage Open Issues Review all open GitHub issues that currently have no labels and apply the most appropriate labels based on their content. ## Step 1: List Available Labels Fetch the full list of labels defined in this repository so the triage stays within the known label set: ```bash gh label list --limit 100 ``` Treat this list as the authoritative vocabulary. Do not invent new labels. ## Step 2: Find Unlabeled Open Issues Fetch all open issues that have no labels attached: ```bash gh issue list --state open --search "no:label" --limit 100 --json number,title,author,url ``` If the result is empty, report that nothing needs triage and stop. ## Step 3: Gather Context per Issue For each unlabeled issue, read the description and the discussion so the label choice is grounded in the actual content: ```bash gh issue view <issue_number> gh issue view <issue_number> --comments ``` Run these in parallel across issues where practical. ## Step 4: Decide the Labels For each issue, pick the labels that best describe it. Typical signals: - `bug` — something is broken or behaves incorrectly. - `enhancement` — a new feature, new tool/feature support, or a capability request. - `documentation`

What's inside
Steps it walks through
  1. Step 1: List Available Labels
  2. Step 2: Find Unlabeled Open Issues
  3. Step 3: Gather Context per Issue
  4. Step 4: Decide the Labels
  5. Step 5: Apply the Labels
  6. Step 6: Report
Commands it runs
gh label list --limit 100
gh issue list --state open --search "no:label" --limit 100 --json number,title,author,url
gh issue view <issue_number>
gh issue view <issue_number> --comments
gh issue edit <issue_number> --add-label "bug" --add-label "good first issue"
More from rulesync
All skills →
About this skill
What does the triage-issues skill do?

Triage open GitHub issues by reviewing unlabeled ones and applying the most appropriate labels based on their content

How do I install it?

Run `npx skills add dyoshikawa/rulesync --skill triage-issues --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From dyoshikawa/rulesync, a repository with 1,285 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going