Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

issueissue 开发

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

8

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/phrazzld/claude-config --skill issue

简介

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

  • 适合查询项目状态、整理变更、辅助创建或检查协作事项。
  • 可将仓库信息转化为可执行的下一步操作。
  • 涉及写入操作时需确认 token 权限和用户授权。
  • issue 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/issue

Issue quality tooling. Three subcommands for different needs.

Subcommands

/issue lint [#N|--all]

Score issues against org-standards readiness rubric.

Process

  1. Load groom/references/org-standards.md for scoring rubric
  2. Fetch issue(s): gh issue view N --json title,body,labels,milestone
  3. Score each section per rubric (0-100 total)
  4. Classify findings as errors (blocking) or warnings (informational)
  5. Report score and findings

Scoring Rubric

SectionPointsCriteria
Acceptance Criteria2525: Given/When/Then with 2+ criteria. 15: checkboxes without GWT. 5: vague. 0: missing.
Problem2020: specific with evidence. 10: clear but no evidence. 0: vague/missing.
Affected Files1515: paths with descriptions. 8: paths only. 0: missing.
Verification1515: executable commands. 8: described not executable. 0: missing.
Labels102 per required label (priority, type, horizon, effort, domain).
Effort55: effort label present. 0: missing.
Diagram55: appropriate. 3: wrong type. 0: missing (unless chore/dep bump).
Milestone55: assigned. 0: missing.

Error Classification

Errors (block agent execution):

  • Missing priority label
  • No acceptance criteria (score 0)
  • No problem statement (score 0)
  • Missing affected files for code-change issues

Warnings (flag, don't block):

  • No diagram (unless exempt)
  • No effort label
  • No verification commands
  • No boundaries section
  • Missing milestone

Output

ISSUE LINT: #42 "Add session token refresh"
Score: 78/100 (Good — ready for execution)

  Acceptance Criteria:  25/25 ✓
  Problem:              20/20 ✓
  Affected Files:       15/15 ✓
  Verification:          8/15 ⚠ described but not executable
  Labels:                6/10 ⚠ missing effort label
  Effort:                0/5  ⚠ no effort label
  Diagram:               0/5  ⚠ no diagram
  Milestone:             5/5  ✓

Errors: 0
Warnings: 3
  - verification: Add executable commands (pnpm test -- --grep "session")
  - labels: Add effort/s|m|l|xl label
  - diagram: Add flowchart for token refresh flow

--all mode

Lint all open issues. Output summary table:

BACKLOG LINT SUMMARY

Score | Status    | Issue
------|-----------|------
  92  | Excellent | #42 Add session token refresh
  78  | Good      | #38 Fix webhook retry logic
  45  | Needs work| #35 Improve error handling
  23  | Incomplete| #31 Make things better

Ready: 2 | Needs enrichment: 1 | Incomplete: 1

--fix mode

After linting, run /issue enrich on issues scoring < 70.


/issue enrich [#N]

Fill missing issue sections using sub-agent research.

Process

  1. Fetch issue: gh issue view N --json title,body,labels,milestone
  2. Run /issue lint N to identify gaps
  3. For each missing section, spawn appropriate sub-agent:
Missing SectionAgentPrompt
Affected FilesCodebase explorer"Find files related to [issue topic]. Check.glance.md and CODEBASE_MAP.md."
VerificationCodebase explorer"Find test commands and verification steps for [affected area]."
Acceptance CriteriaGeneral-purpose"Write Given/When/Then acceptance criteria for: [problem statement]"
ApproachWeb researcher + codebase explorer"Research best practices for [topic]. Find existing patterns in codebase."
ContextGeneral-purpose"Read project.md and summarize relevant vision/domain context for [issue]."
DiagramGeneral-purpose"Generate appropriate Mermaid diagram for [issue type]: [summary]"
  1. Rewrite issue body with all sections populated
  2. Apply missing labels
  3. Re-run /issue lint N to confirm score >= 70

Issue Update

gh issue edit N --body "$(cat <<'EOF'
[enriched issue body]
EOF
)"

Add labels:

gh issue edit N --add-label "effort/m"

Output

ISSUE ENRICH: #35 "Improve error handling"
Before: 45/100 (Needs work)
After:  82/100 (Good)

Added:
  + Acceptance Criteria (Given/When/Then)
  + Affected Files (5 files identified)
  + Verification commands
  + Approach with code examples
  + Boundaries
  + effort/m label

/issue decompose [#N]

Split oversized issues into atomic sub-issues.

When to Decompose

  • Issue has effort/xl label
  • Issue touches 5+ files across 3+ directories
  • Issue has 5+ acceptance criteria spanning different concerns
  • Issue mixes feature work with refactoring

Process

  1. Fetch issue: gh issue view N --comments
  2. Analyze scope: file count, directory spread, acceptance criteria clusters
  3. Identify natural boundaries (by module, by concern, by dependency)
  4. Create child issues, each:

- References parent: "Part of #N" - Has own acceptance criteria (subset of parent) - Has own affected files (subset) - Has dependency links where order matters - Inherits parent's priority and domain labels - Gets appropriate effort label (should be s or m)

  1. Update parent issue:

- Convert to epic type - Add epic label - Add checklist linking child issues - Remove effort/xl (children have own estimates)

Dependency Links

When child issues have ordering dependencies:

## Dependencies
- Blocked by: #N1 (API must exist before UI can call it)

Output

ISSUE DECOMPOSE: #28 "Implement payment retry system"
Original: effort/xl, 8 acceptance criteria, 12 files

Created 4 sub-issues:
  #45 [P1] Add retry queue schema (effort/s, blocked by: none)
  #46 [P1] Implement retry worker (effort/m, blocked by: #45)
  #47 [P1] Add webhook retry handler (effort/m, blocked by: #45)
  #48 [P1] Add retry monitoring dashboard (effort/s, blocked by: #46, #47)

Parent #28 converted to epic with sub-issue checklist.

Related

  • groom/references/org-standards.md — Scoring rubric and issue format
  • /groom — Phase 5 uses /issue lint as quality gate
  • /autopilot — Runs /issue lint before starting work
  • /tidy — Runs /issue lint --all --fix

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.35%
按下载量换算24

Claude

29.07%
按下载量换算19

Cursor

20.32%
按下载量换算13

Gemini CLI

10.19%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills