triage-issue

仓库创建 2026年1月12日最近提交 2 个月前SkillHot 收录 22 天前
▸ 精选理由

为维护者自动核实并回复/关闭无效 issue,显著节省审查时间。

▸ 风险提示

需要 GitHub 访问权限和写权限令牌,自动关闭操作需谨慎配置。

这个 Skill 做什么

自动分析 GitHub issue、核实代码并关闭无效问题并附技术回复。

把 GitHub issue 拉下来逐条核验:查看 issue 内容、比对代码、尝试复现或跑测试,然后给出技术回复或直接关闭不成立的问题。适合在需要批量分流新 issue、快速验证并向用户回馈可执行结论时使用。特点是结合仓库上下文和 CLI(如 gh)操作,能产出专业、可复用的技术回复模板和复现步骤。

开发编程GitHub问题分流自动化通用
1.1w
Stars
5.7k
Forks
18
仓库内 Skill
+143
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/aden-hive/hive/main/.claude/skills/triage-issue/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/aden-hive/hive/main/.claude/skills/triage-issue/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Triage Issue Skill

Analyze a GitHub issue, verify claims against the codebase, and close invalid issues with a technical response.

## Trigger

User provides a GitHub issue URL or number, e.g.:
- `/triage-issue 1970`
- `/triage-issue https://github.com/adenhq/hive/issues/1970`

## Workflow

### Step 1: Fetch Issue Details

```bash
gh issue view <number> --repo adenhq/hive --json title,body,state,labels,author
```

Extract:
- Title
- Body (the claim/bug report)
- Current state
- Labels
- Author

If issue is already closed, inform user and stop.

### Step 2: Analyze the Claim

Read the issue body and identify:
1. **The core claim** - What is the user asserting?
2. **Technical specifics** - 
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有