issue-triage
仓库创建 2026年1月30日最近提交 5 个月前SkillHot 收录 23 天前
▸ 精选理由
适合开源或团队定期清理积压 issue,提高维护效率。
▸ 风险提示
可能需要 GitHub 访问权限或令牌以读取/修改 issue。
这个 Skill 做什么
对 GitHub issue 进行分类、标注优先级并整理以便跟进与维护。
把 GitHub 上的 issue 分类、打标签、标优先级并整理成可跟进的待办清单,适合例行维护、处理积压工单或有人说“帮我 triage issues”时使用。它能识别类型(bug/feature/maintenance)、估算优先级并标注需要的动作,省去人工逐条判断的时间。额外好处是能和现有工作流集成,便于后续指派和追踪。
▸ 展开 SKILL.md 英文原文
Triage and categorize GitHub issues with priority labels. Use when user says "triage issues", "check issues", "review open issues", or during regular maintenance of GitHub issue backlog.
692
Stars
135
Forks
18
仓库内 Skill
+20
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/decebals/claude-code-java/main/.claude/skills/issue-triage/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/decebals/claude-code-java/main/.claude/skills/issue-triage/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Issue Triage Skill
Efficiently triage GitHub issues for Java projects with categorization and prioritization.
## When to Use
- User says "triage issues" / "check recent issues"
- Regular maintenance workflow
- After vacation/break (backlog processing)
- Weekly/monthly issue review
## Prerequisites
**Recommended**: GitHub MCP server configured for optimal token usage
```bash
claude mcp add github --transport http \
https://api.githubcopilot.com/mcp/
```
**Alternative**: Use `gh` CLI (less token-efficient)
## Workflow
### 1. Fetch Issues
**With GitHub MCP** (recommended):
```
Tool: list_issues
Parameters: {
"state": "open",
"sort": "updated",
"per_page": 10
}
```
**With gh via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有