github-project-management

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

为自动化项目协调提供完整的 GitHub 操作集合,适合规模化管理需求。

▸ 风险提示

依赖 gh CLI 并需授权(project/repo 范围),会进行写操作。

这个 Skill 做什么

通过 gh CLI 和 GraphQL 管理 Projects v2、milestones、标签与 issue 关系。

用 gh CLI 和 GraphQL 操作 GitHub Projects v2、milestones、labels、issue 关系和冲刺计划,负责把看板、里程碑和 issue 状态同步起来。常用于项目经理代理在仓库里编排冲刺和协调工作时。因为 Projects v2 的 REST 支持有限,会用 gh api graphql,所以需要提前把 gh 授权好并有相应权限。

▸ 展开 SKILL.md 英文原文

GitHub project management operations using gh CLI and GraphQL. Covers Projects v2 boards, milestones, issue relationships, labels, status reporting, and sprint planning. Used by the project-manager agent to coordinate work.

开发编程GitHubgh-cli项目管理通用
0
Stars
0
Forks
35
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/dustinkeeton/wafflestack/main/.claude/skills/github-project-management/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/dustinkeeton/wafflestack/main/.claude/skills/github-project-management/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# GitHub Project Management

Operations for managing GitHub Projects v2, milestones, labels, issue relationships, and sprint planning using the `gh` CLI. Projects v2 requires GraphQL via `gh api graphql` since the REST API has limited support.

## Prerequisites

- `gh` CLI authenticated with appropriate scopes (`project`, `repo`)
- Repository owner and name available via `gh repo view --json owner,name`

## Projects v2 Operations

### Discover the project

Find the project ID (required for all subsequent operations):

```bash
# List projects for the repo owner
gh api graphql -f query='
  query($owner: String!) {
    user(login: $owner) {
      projectsV2(first: 20) {
        nodes { id numbe
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有