Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计异常

gh-issue-triagegh 问题分类

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

4

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/poindexter12/waypoint --skill gh-issue-triage

简介

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。

  • 适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。
  • 可结合来源仓库和原始 README 继续核验具体用法。

SKILL.md

Issue Triage

Rules and workflows for categorizing, labeling, and prioritizing GitHub issues.

Quick Reference

Label TypePurposeMutually Exclusive?
TypeWhat kind of issueYes
PriorityHow urgentYes
StatusCurrent stateYes
AreaWhich componentNo

Label Taxonomy

Type Labels (mutually exclusive)

LabelDescriptionColor
bugSomething is broken#d73a4a (red)
featureNew functionality#a2eeef (cyan)
enhancementImprovement to existing feature#84b6eb (blue)
docsDocumentation only#0075ca (dark blue)
choreMaintenance, deps, infra#fef2c0 (yellow)

Priority Labels (mutually exclusive)

LabelDescriptionResponse
priority: criticalDrop everything, fix nowImmediate
priority: highNext up after current workThis sprint
priority: mediumNormal backlogScheduled
priority: lowNice to have, somedayBacklog

Status Labels (mutually exclusive)

LabelDescription
needs-triageNew, not yet categorized
needs-infoWaiting for reporter clarification
acceptedTriaged and in backlog
in-progressSomeone is working on it
blockedCan't proceed, waiting on something

Area Labels (project-specific, not exclusive)

Define based on your project structure:

  • area: api
  • area: cli
  • area: docs
  • area: ui
  • area: auth

Triage Workflow

Step 1: New Issues

Every new issue gets needs-triage label automatically (via GitHub Actions or manually).

Step 2: Initial Review

Is this a duplicate?
  YES → Close with "Duplicate of #N", link original
  NO  → Continue

Is this spam/invalid?
  YES → Close without label
  NO  → Continue

Is the issue clear enough to act on?
  YES → Continue to Step 3
  NO  → Add `needs-info`, comment asking for clarification

Step 3: Categorization

Apply type label:
  - Broken functionality → `bug`
  - New capability → `feature`
  - Improve existing → `enhancement`
  - Documentation → `docs`
  - Maintenance → `chore`

Apply area label(s):
  - Based on affected component
  - Can have multiple areas

Step 4: Prioritization

Apply priority:
  - Production down / security issue → `priority: critical`
  - Major impact, many users → `priority: high`
  - Normal request → `priority: medium`
  - Nice to have → `priority: low`

Step 5: Finalize

1. Remove `needs-triage`
2. Add `accepted`
3. Assign to milestone (if applicable)
4. Suggest assignee (if known)

Priority Guidelines

Critical

  • Production is down
  • Security vulnerability
  • Data loss occurring
  • Blocks all users

High

  • Major feature broken
  • Significant user impact
  • Blocks important workflow
  • Time-sensitive deadline

Medium

  • Normal bug reports
  • Feature requests
  • Improvements
  • Most issues land here

Low

  • Minor cosmetic issues
  • Edge case bugs
  • Nice-to-have features
  • "Someday" items

Common Patterns

Insufficient Information

Issue: "It doesn't work"
Action:
1. Add `needs-info`
2. Comment: "Can you provide steps to reproduce and your environment?"
3. Wait for response

Duplicate Detection

Issue: Similar to existing #123
Action:
1. Close issue
2. Comment: "Duplicate of #123"
3. Add any new context to #123

Critical Security Issue

Issue: Security vulnerability
Action:
1. Add `priority: critical`, `bug`
2. Assign immediately
3. Consider private discussion

Feature Without Acceptance Criteria

Issue: "Add dark mode"
Action:
1. Add `feature`, `needs-info`
2. Comment: "Great idea! Can you describe acceptance criteria?"

Reference Files

See references/ for:

  • label-taxonomy.md - Complete label reference with colors

Integration with Other Components

Typical Triage Workflow

  1. Issue created using gh-issue-templates (gets needs-triage label)
  2. Use gh-issue-triage (this skill) to determine type and priority
  3. Apply labels using gh-wrangler agent
  4. Track state changes using gh-issue-lifecycle

Label Setup

Use references/label-taxonomy.md to:

  • Create labels with correct colors: gh label create "bug" --color "d73a4a"
  • Maintain consistent taxonomy across repositories
  • Setup new repositories with standard labels

Priority Assignment

Consult "Priority Guidelines" section in this skill:

  • Critical: Production down, security, data loss
  • High: Major features broken, significant impact
  • Medium: Normal bugs and features (most issues)
  • Low: Nice-to-have, cosmetic, edge cases

Related

  • Skill: gh-issue-templates - Creating well-formatted issues
  • Skill: gh-issue-lifecycle - State transitions and linking
  • Agent: gh-wrangler - Interactive triage workflow

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.89%
按下载量换算25

Claude

27.95%
按下载量换算20

Cursor

20.93%
按下载量换算15

Gemini CLI

10.31%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills