github-project-management

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

集中化的项目管理操作集,适合由 agent 协调发行与冲刺计划。

▸ 风险提示

需要 gh CLI 授权并授予 project/repo 等权限以执行写操作

这个 Skill 做什么

通过 gh CLI 与 GraphQL 操作 Projects v2、里程碑、标签与议程关系的管理工具集。

用 gh CLI + GraphQL 管理 GitHub Projects v2、milestones、标签、议题关系和冲刺规划,适合项目经理或自动化 agent 协调工作时使用。Projects v2 需要通过 gh api graphql 调用,操作包括看板、里程碑和 issue 关联状态更新。需要 gh 登录并赋予 project/repo 权限,常用于同步状态和生成状态报表。

▸ 展开 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.

Skill 开发管理GitHub 管理gh CLIGraphQL通用
0
Stars
0
Forks
35
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/dustinkeeton/wafflestack/main/stacks/github-workflow/skills/github-project-management/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/dustinkeeton/wafflestack/main/stacks/github-workflow/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 公开信息 · 原文版权归作者所有