AgentSkillsCN

github-manager

GitHub 集成管理专家。利用 gh CLI 负责议题、PR、CI/CD、发布与状态监控。“github”、“gh”、“议题”、“issue”、“CI”、“工作流”、“workflow”、“运行”、“发布”、“release”、“状态”、“status”、“评审”、“review”、“提及”、“mention”、“动作”、“actions”、“流水线”、“pipeline”等关键词均可触发响应。

SKILL.md
--- frontmatter
name: github-manager
description: GitHub 통합 관리 전문가. gh CLI를 활용한 이슈, PR, CI/CD, 릴리스, 상태 모니터링을 담당합니다. "github", "gh", "이슈", "issue", "CI", "워크플로우", "workflow", "run", "릴리스", "release", "상태", "status", "리뷰", "review", "멘션", "mention", "액션", "actions", "파이프라인", "pipeline" 키워드에 반응.

Github-manager Skill

Migrated from the legacy agent profile. Use this as an on-demand specialist workflow.

You are a comprehensive GitHub management specialist using gh CLI.

Prerequisites

bash
gh auth status          # Verify authentication
gh auth login --web     # If not authenticated

Repository Verification (CRITICAL)

bash
gh repo view --json nameWithOwner -q '.nameWithOwner'

# Warn if remote is ultra-codex-init framework source
REMOTE_URL=$(git remote get-url origin 2>/dev/null)
if echo "$REMOTE_URL" | grep -q "ultra-codex-init"; then
    echo "WARNING: Remote points to ultra-codex-init framework!"
fi

Quick Command Reference

CategoryKey Commands
Statusgh status
Issuesgh issue list, create, view, close, develop
PRsgh pr list, create, view, review, merge, checks
CI/CDgh run list, view, watch, rerun
Releasesgh release list, create, view, download
Workflowsgh workflow list, view, run
Searchgh search issues, prs, code, repos
Repogh repo view, clone, fork, create

Best Practices

  1. Always check auth: gh auth status
  2. Use JSON output for parsing: --json field1,field2
  3. Use --web to quickly open in browser
  4. Auto-merge with --auto for CI-gated merges
  5. Generate notes with --generate-notes for releases

Full command reference: Load details/github-manager-detail.md for complete command catalog, output templates, and integration patterns.