Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计提醒

github-triageGitHub triage 安全

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

77,376

周安装

3,064

GitHub Stars

46,202

下载量

25,048
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:github-triage(GitHub triage 安全)
来源仓库:https://github.com/mattpocock/skills
仓库路径:skills/github-triage
安装命令:
npx skills add https://github.com/mattpocock/skills --skill github-triage
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mattpocock/skills --skill github-triage

简介

自动分类与标记 GitHub Issues,减轻维护者手动筛选负担。

  • 根据标签、标题与内容智能分派给合适负责人或团队。
  • 支持设置自动化规则,如超时提醒与新 Issue 欢迎语。
  • 需定期校准分类模型,确保准确率随项目演进持续提升。
  • github-triage 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GitHub Issue Triage

Triage issues in the current repo using a label-based state machine. Infer the repo from git remote. Use gh for all GitHub operations.

AI Disclaimer

Every comment or issue posted to GitHub during triage must include the following disclaimer at the top of the comment body, before any other content:

> *This was generated by AI during triage.*

Reference docs

Labels

LabelTypeDescription
bugCategorySomething is broken
enhancementCategoryNew feature or improvement
needs-triageStateMaintainer needs to evaluate this issue
needs-infoStateWaiting on reporter for more information
ready-for-agentStateFully specified, ready for AFK agent
ready-for-humanStateRequires human implementation
wontfixStateWill not be actioned

Every issue should have exactly one state label and one category label. If an issue has conflicting state labels (e.g. both needs-triage and ready-for-agent), flag the conflict and ask the maintainer which state is correct before doing anything else. Provide a recommendation.

State Machine

Current StateCan transition toWho triggers itWhat happens
unlabeledneeds-triageSkill (on first look)Issue needs maintainer evaluation. Skill applies label after presenting recommendation.
unlabeledready-for-agentMaintainer (via skill)Issue is already well-specified and agent-suitable. Skill writes agent brief comment, applies label.
unlabeledready-for-humanMaintainer (via skill)Issue requires human implementation. Skill writes a brief comment summarizing the task, applies label.
unlabeledwontfixMaintainer (via skill)Issue is spam, duplicate, or out of scope. Skill closes with comment (and writes .out-of-scope/ for enhancements).
needs-triageneeds-infoMaintainer (via skill)Issue is underspecified. Skill posts triage notes capturing progress so far + questions for reporter.
needs-triageready-for-agentMaintainer (via skill)Grilling session complete, agent-suitable. Skill writes agent brief comment, applies label.
needs-triageready-for-humanMaintainer (via skill)Grilling session complete, needs human. Skill writes a brief comment summarizing the task, applies label.
needs-triagewontfixMaintainer (via skill)Maintainer decides not to action. Skill closes with comment (and writes .out-of-scope/ for enhancements).
needs-infoneeds-triageSkill (detects reply)Reporter has replied. Skill surfaces to maintainer for re-evaluation.

An issue can only move along these transitions. The maintainer can override any state directly (see Quick State Override below), but the skill should flag if the transition is unusual.

Invocation

The maintainer invokes /github-triage then describes what they want in natural language. The skill interprets the request and takes the appropriate action.

Example requests:

  • "Show me anything that needs my attention"
  • "Let's look at #42"
  • "Move #42 to ready-for-agent"
  • "What's ready for agents to pick up?"
  • "Are there any unlabeled issues?"

Workflow: Show What Needs Attention

When the maintainer asks for an overview, query GitHub and present a summary grouped into three buckets:

  1. Unlabeled issues — new, no labels at all. These have never been triaged.
  2. needs-triage issues — maintainer needs to evaluate or continue evaluating.
  3. needs-info issues with new activity — the reporter has commented since the last triage notes comment. Check comment timestamps to determine this.

Display counts per group. Within each group, show issues oldest first (longest-waiting gets attention first). For each issue, show: number, title, age, and a one-line summary of the issue body.

Let the maintainer pick which issue to dive into.

Workflow: Triage a Specific Issue

Step 1: Gather context

Before presenting anything to the maintainer:

  • Read the full issue: body, all comments, all labels, who reported it, when
  • If there are prior triage notes comments (from previous sessions), parse them to understand what has already been established
  • Explore the codebase to build context — understand the domain, relevant interfaces, and existing behavior related to the issue
  • Read .out-of-scope/*.md files and check if this issue matches or is similar to a previously rejected concept

Step 2: Present a recommendation

Tell the maintainer:

  • Category recommendation: bug or enhancement, with reasoning
  • State recommendation: where this issue should go, with reasoning
  • If it matches a prior out-of-scope rejection, surface that: "This is similar to .out-of-scope/concept-name.md — we rejected this before because X. Do you still feel the same way?"
  • A brief summary of what you found in the codebase that's relevant

Then wait for the maintainer's direction. They may:

  • Agree and ask you to apply labels → do it
  • Want to flesh it out → start a /domain-model session
  • Override with a different state → apply their choice
  • Want to discuss → have a conversation

Step 3: Bug reproduction (bugs only)

If the issue is categorized as a bug, attempt to reproduce it before starting a /domain-model session. This will vary by codebase, but do your best:

  • Read the reporter's reproduction steps (if provided)
  • Explore the codebase to understand the relevant code paths
  • Try to reproduce the bug: run tests, execute commands, or trace the logic to confirm the reported behavior
  • If reproduction succeeds, report what you found to the maintainer — include the specific behavior you observed and where in the code it originates
  • If reproduction fails, report that too — the bug may be environment-specific, already fixed, or the report may be inaccurate
  • If the report lacks enough detail to attempt reproduction, note that — this is a strong signal the issue should move to needs-info

The reproduction attempt informs the /domain-model session and the agent brief. A confirmed reproduction with a known code path makes for a much stronger brief.

Step 4: /domain-model session (if needed)

If the issue needs to be fleshed out before it's ready for an agent, interview the maintainer to build a complete specification. Use the /domain-model skill.

Step 5: Apply the outcome

Depending on the outcome:

  • ready-for-agent — post an agent brief comment (see AGENT-BRIEF.md)
  • ready-for-human — post a comment summarizing the task, what was established during triage, and why it needs human implementation. Use the same structure as an agent brief but note the reason it can't be delegated to an agent (e.g. requires judgment calls, external system access, design decisions, or manual testing).
  • needs-info — post triage notes with progress so far and questions for the reporter (see Needs Info Output below)
  • wontfix (bug) — post a polite comment explaining why, then close the issue
  • wontfix (enhancement) — write to .out-of-scope/, post a comment linking to it, then close the issue (see OUT-OF-SCOPE.md)
  • needs-triage — apply the label. Optionally leave a comment if there's partial progress to capture.

Workflow: Quick State Override

When the maintainer explicitly tells you to move an issue to a specific state (e.g. "move #42 to ready-for-agent"), trust their judgment and apply the label directly.

Still show a confirmation of what you're about to do: which labels will be added/removed, and whether you'll post a comment or close the issue. But skip the /domain-model session entirely.

If moving to ready-for-agent without a /domain-model session, ask the maintainer if they want to write a brief agent brief comment or skip it.

Needs Info Output

When moving an issue to needs-info, post a comment that captures the interview progress and tells the reporter what's needed:

## Triage Notes

**What we've established so far:**

- point 1
- point 2

**What we still need from you (@reporter):**

- question 1
- question 2

Include everything resolved during the /domain-model session in "established so far" — this work should not be lost. The questions for the reporter should be specific and actionable, not vague ("please provide more info").

Resuming Previous Sessions

When triaging an issue that already has triage notes from a previous session:

  1. Read all comments to find prior triage notes
  2. Parse what was already established
  3. Check if the reporter has answered any outstanding questions
  4. Present the maintainer with an updated picture: "Here's where we left off, and here's what the reporter has said since"
  5. Continue the /domain-model session from where it stopped — do not re-ask resolved questions

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.31%
按下载量换算8,844

Claude

30.33%
按下载量换算7,597

Cursor

16.95%
按下载量换算4,246

Gemini CLI

8.97%
按下载量换算2,247

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills