Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计未展示

github-issue-standardGitHub issue standard 运维

Agent Skill

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

总安装

466

周安装

20

GitHub Stars

127

下载量

163
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/anton-abyzov/specweave --skill github-issue-standard

简介

用于实施和维护 GitHub Issue 的标准操作流程。

  • 包含模板、标签、里程碑等规范化配置。
  • 支持团队协作规则的自动化执行。github-issue-standard 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。
  • 提升项目管理透明度和可追溯性。
  • 需团队协商确定统一标准后方可部署。

SKILL.md

GitHub Issue Standard - Universal Format

CRITICAL: This is the MANDATORY format for ALL GitHub issues created by SpecWeave, whether for:

  • User stories (individual us-*.md files)
  • Epics/Features (FS-* folders)
  • Increments (0001-* folders)
  • Specs (spec-*.md files)

Issue Title Format (MANDATORY)

✅ ONLY Allowed Title Formats

[FS-XXX][US-YYY] User Story Title    ← STANDARD (User Stories)
[FS-XXX] Feature Title               ← Rare (Feature-level only)

Examples:

  • [FS-059][US-003] Hook Optimization (P0)
  • [FS-054][US-001] Fix Reopen Desync Bug (P0)
  • [FS-048] Smart Pagination Feature

❌ PROHIBITED Title Formats (NEVER USE)

[BUG] Title                          ← WRONG! Bug is a LABEL, not title prefix
[HOTFIX] Title                       ← WRONG! Hotfix is a LABEL
[FEATURE] Title                      ← WRONG! Feature is a LABEL
[DOCS] Title                         ← WRONG! Docs is a LABEL
[Increment XXXX] Title               ← DEPRECATED! Old format

Why? Type-based prefixes like [BUG] break traceability:

  • Cannot link to Feature Spec (FS-XXX)
  • Cannot link to User Story (US-YYY)
  • Violates SpecWeave's data flow: Increment → Living Docs → GitHub

What to do instead?

  1. Link work to a Feature (FS-XXX) in living docs
  2. Create User Story (US-YYY) under that feature
  3. Use GitHub labels for categorization: bug, enhancement, hotfix

Validation

The GitHub client (github-client-v2.ts) enforces this:

  • Rejects titles starting with [BUG], [HOTFIX], [FEATURE], etc.
  • Rejects deprecated [Increment XXXX] format
  • Only allows [FS-XXX][US-YYY] or [FS-XXX] formats

The Standard Format

✅ Required Elements

Every GitHub issue MUST include:

  1. Checkable Acceptance Criteria

- Use GitHub task checkbox format: - [x] or - [] - Include AC ID, description, priority, and testable flag - Example: - [x] **AC-US4-01**: Description (P1, testable)

  1. Checkable Tasks

- Link to increment tasks.md with GitHub URLs (not relative paths) - Use GitHub task checkbox format - Example: - [x] [T-008: Title](https://github.com/owner/repo/tree/develop/.specweave/increments/0031/tasks.md#t-008-title)

  1. Working GitHub URLs (v5.0.0+ - NO _features folder) Note: Feature ID is DERIVED from increment (0031 → FS-031)

- Feature links: https://github.com/owner/repo/tree/develop/.specweave/docs/internal/specs/{project}/FS-031 - User story links: https://github.com/owner/repo/tree/develop/.specweave/docs/internal/specs/{project}/FS-031/us-004-*.md - Task links: https://github.com/owner/repo/tree/develop/.specweave/increments/0031/tasks.md#task-anchor - Increment links: https://github.com/owner/repo/tree/develop/.specweave/increments/0031

  1. Extracted Priority

- Extract from ACs (highest priority wins: P1 > P2 > P3) - Show ONLY if priority exists (don't show "undefined") - Example: **Priority**: P1

  1. NO Project Field

- Don't include **Project**:... - not needed for GitHub issues - Project is determined by repository context

❌ Never Use

  • ❌ Relative paths (../../{project}/FS-031)
  • ❌ Undefined values (**Priority**: undefined)
  • ❌ Project field in metadata
  • ❌ Plain bullet points for ACs (must be checkboxes)
  • ❌ Plain bullet points for tasks (must be checkboxes with links)

Implementation

UserStoryContentBuilder (✅ REFERENCE IMPLEMENTATION)

File: plugins/specweave-github/lib/user-story-content-builder.ts

This is the gold standard implementation. All other builders must follow this pattern.

Key features:

// 1. Accept GitHub repo parameter
async buildIssueBody(githubRepo?: string): Promise<string>

// 2. Auto-detect repo from git remote
private async detectGitHubRepo(): Promise<string | null>

// 3. Extract priority from ACs
private extractPriorityFromACs(criteria: AcceptanceCriterion[]): string | null

// 4. Generate GitHub URLs (not relative) - v5.0.0+: No _features folder
const featureUrl = `https://github.com/${repo}/tree/develop/.specweave/docs/internal/specs/${project}/${featureId}`;

// 5. Convert task links to GitHub URLs
if (repo && taskLink.startsWith('../../')) {
  const relativePath = taskLink.replace(/^\.\.\/\.\.\//, '.specweave/');
  taskLink = `https://github.com/${repo}/tree/develop/${relativePath}`;
}

Template

**Feature**: [FS-031](https://github.com/owner/repo/tree/develop/.specweave/docs/internal/specs/{project}/FS-031)
**Status**: complete
**Priority**: P1

---

## User Story

**As a** user
**I want** feature
**So that** benefit

📄 View full story: [`us-004-name.md`](https://github.com/owner/repo/tree/develop/.specweave/docs/internal/specs/{project}/FS-031/us-004-name.md)

---

## Acceptance Criteria

Progress: 4/6 criteria met (67%)

- [x] **AC-US4-01**: Description (P1, testable)
- [x] **AC-US4-02**: Description (P1, testable)
- [ ] **AC-US4-03**: Description (P2, testable)
- [ ] **AC-US4-04**: Description (P2, testable)

---

## Implementation Tasks

Progress: 3/6 tasks complete (50%)

**Increment**: [0031-name](https://github.com/owner/repo/tree/develop/.specweave/increments/0031-name)

- [x] [T-008: Title](https://github.com/owner/repo/tree/develop/.specweave/increments/0031/tasks.md#t-008-title)
- [x] [T-009: Title](https://github.com/owner/repo/tree/develop/.specweave/increments/0031/tasks.md#t-009-title)
- [ ] [T-010: Title](https://github.com/owner/repo/tree/develop/.specweave/increments/0031/tasks.md#t-010-title)

---

🤖 Auto-synced by SpecWeave

Implementation

Content Builders

All GitHub issue content is generated by these builders:

  1. UserStoryIssueBuilder (plugins/specweave-github/lib/user-story-issue-builder.ts)

- Creates issues from us-*.md files - Generates [FS-XXX][US-YYY] Title format - Extracts ACs and tasks as checkboxes - Uses GitHub URLs (not relative paths)

  1. GitHubFeatureSync (plugins/specweave-github/lib/github-feature-sync.ts)

- Syncs Features as GitHub Milestones - Syncs User Stories as GitHub Issues via UserStoryIssueBuilder - Universal Hierarchy: Feature → Milestone, User Story → Issue

Commands

All GitHub sync commands use the Universal Hierarchy:

  • /sw-github:sync - Sync increments via Feature/UserStory hierarchy
  • /sw-github:create-issue - Create issue using standard format
  • /sw-github:update-user-story - Update user story issue

Validation Checklist

When creating/updating a GitHub issue, verify:

  • Feature link is clickable GitHub URL (not ../../)
  • User story link is clickable GitHub URL
  • All task links are clickable GitHub URLs
  • ACs are checkable (GitHub checkboxes work in UI)
  • Tasks are checkable (GitHub checkboxes work in UI)
  • Priority shows actual value (P1/P2/P3) or is omitted
  • No "Project: undefined" field
  • Progress percentages are correct
  • Increment link is clickable GitHub URL

Benefits

  • Links work: No more broken relative paths
  • Checkable: ACs and tasks can be checked/unchecked in GitHub UI
  • Clean metadata: No undefined values cluttering the issue
  • Consistent: Same format across all issue types
  • Traceable: Direct links to source files in repository

When to Use

Always! This is the ONLY acceptable format for GitHub issues created by SpecWeave.

No exceptions. No shortcuts. Every issue follows this standard.

Related Files

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

29.03%
按下载量换算47

Antigravity

21.26%
按下载量换算35

Cursor

18.58%
按下载量换算30

Gemini CLI

10.64%
按下载量换算17

OpenCode

7.9%
按下载量换算13

Codex

2.93%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills