From ecc
GitHub 저장소 운영, 자동화, 관리 스킬입니다. 이슈 triage, PR 관리, CI/CD 운영, 릴리스 관리, 보안 모니터링을 `gh` CLI로 처리합니다. 단순 git 명령을 넘는 GitHub 운영 작업에 사용합니다.
npx claudepluginhub sam42-lab/everything-claude-code-krThis skill uses the workspace's default tool permissions.
커뮤니티 건강, CI 신뢰성, 기여자 경험을 중심으로 GitHub 저장소를 운영합니다.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
커뮤니티 건강, CI 신뢰성, 기여자 경험을 중심으로 GitHub 저장소를 운영합니다.
gh auth login으로 저장소 접근 설정각 이슈를 유형과 우선순위로 분류합니다.
유형: bug, feature-request, question, documentation, enhancement, duplicate, invalid, good-first-issue
우선순위: critical, high, medium, low
gh issue edit --add-label로 적절한 라벨 부여good-first-issue 라벨 추가duplicate 라벨 추가gh issue list --search "keyword" --state all --limit 20
gh issue edit <number> --add-label "bug,high-priority"
gh issue comment <number> --body "Thanks for reporting. Could you share reproduction steps?"
gh pr checks <number>gh pr view <number> --json mergeablestale 라벨과 업데이트 요청 코멘트gh issue list --label "stale" --state open
gh pr list --json number,title,updatedAt --jq '.[] | select(.updatedAt < "2026-03-01")'
CI가 실패하면:
gh run view <run-id> --log-failed로 워크플로 런 확인gh run list --status failure --limit 10
gh run view <run-id> --log-failed
gh run rerun <run-id> --failed
릴리스 준비 시:
gh release creategh pr list --state merged --base main --search "merged:>2026-03-01"
gh release create v1.2.0 --title "v1.2.0" --generate-notes
gh release create v1.3.0-rc1 --prerelease --title "v1.3.0 Release Candidate 1"
gh api repos/{owner}/{repo}/dependabot/alerts --jq '.[].security_advisory.summary'
gh api repos/{owner}/{repo}/secret-scanning/alerts --jq '.[].state'
gh pr list --label "dependencies" --json number,title
GitHub 운영 작업을 마치기 전에: