AgentSkillsCN

triage-issues

分析并优先处理一组问题、缺陷或任务。当用户有多个问题需要梳理、需要决定接下来要处理什么,或希望评估待办事项的整体状态时使用。

SKILL.md
--- frontmatter
name: triage-issues
description: >
  Analyze and prioritize a set of issues, bugs, or tasks. Use when the user has
  multiple issues to sort through, needs to decide what to work on next, or wants
  to assess the overall state of their backlog.
argument-hint: "[path to issues directory or GitHub issues URL]"

Triage Issues

When to Use

Activate when the user wants to:

  • Prioritize a backlog of issues
  • Decide what to work on next
  • Assess the state of open issues and plans
  • Sort issues by impact, effort, or urgency

Steps

1. Gather Issues

Scan for open issues from available sources:

  • docs/plans/*.md files with status: open or status: planned
  • GitHub issues (if URL or repo context provided)
  • User-provided list of tasks

2. Analyze Each Issue

For each issue, assess:

  • Impact: How many users affected? How severe? Business value?
  • Effort: How many files changed? How complex? Dependencies?
  • Urgency: Deadline? Blocking other work? Customer-facing?
  • Risk: What happens if we don't do this? What could go wrong?

3. Categorize

Place each issue in one of four quadrants:

Low EffortHigh Effort
High ImpactDo firstPlan carefully
Low ImpactQuick winsDefer or drop

4. Recommend Priority Order

markdown
## Triage Results

### Recommended Order
1. **[Issue title]** — [Impact/Effort/Why first]
2. **[Issue title]** — [Impact/Effort/Why second]
3. ...

### Quick Wins (do anytime)
- [Issue] — [Why it's quick and valuable]

### Defer
- [Issue] — [Why it can wait]

### Drop Candidates
- [Issue] — [Why it may not be worth doing]

### Summary
- Open: [count] | Planned: [count] | In Progress: [count]
- Recommended next: [top issue]

Guardrails

  • Read-only. Do not modify issue files or change priorities without user approval.
  • Be honest about effort — don't underestimate to make the backlog look manageable.
  • Consider dependencies — an issue that unblocks three others should rank higher.