ワンクリックで
gh
GitHub CLI 통합 스킬. 이슈, PR, CI/CD, 릴리스, 상태 관리. "gh", "github", "이슈", "issue", "CI", "workflow", "release", "상태" 키워드에 반응.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
GitHub CLI 통합 스킬. 이슈, PR, CI/CD, 릴리스, 상태 관리. "gh", "github", "이슈", "issue", "CI", "workflow", "release", "상태" 키워드에 반응.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Orchestrates a dual-AI engineering loop where Claude CLI runs with `--dangerously-skip-permissions` for planning/implementation and Codex validates/reviews outputs. Use when users ask for Claude+Codex collaboration, cross-review, dual AI loop, or explicit Claude CLI execution with skip-permission mode ("claude", "dangerously-skip-permission", "dangerously-skip-permissions", "codex claude", "dual AI", "교차 검증", "claude 협업").
Codex Agent 작성 전문가. Frontmatter 검증, 트리거 키워드 제안, 구조 템플릿 제공, 테스트 시나리오 작성을 지원합니다.
Synchronize all agile development artifacts in one command. Updates CHANGELOG, README stats, progress tracking, and validates documentation completeness.
Agent/Skill 사용 통계 및 성과 리포트 생성 전문가. CLI 차트로 시각화하고 인사이트를 제공합니다. "통계", "사용량", "analytics", "성과", "리포트", "메트릭", "분석", "usage", "metrics", "statistics", "report" 키워드에 반응.
Tool/Agent 사용 통계를 CLI 차트로 시각화. "통계", "사용량", "analytics", "metrics", "리포트" 키워드에 반응.
Use when creating or developing, before writing code or implementation plans - refines rough ideas into fully-formed designs through collaborative questioning, alternative exploration, and incremental validation. Don't use during clear 'mechanical' processes
| name | gh |
| description | GitHub CLI 통합 스킬. 이슈, PR, CI/CD, 릴리스, 상태 관리. "gh", "github", "이슈", "issue", "CI", "workflow", "release", "상태" 키워드에 반응. |
gh CLI를 활용한 GitHub 통합 관리 스킬입니다.
All gh commands use the current directory's git remote (origin).
Ensure it points to YOUR project repository, not the ultra-codex-init framework source.
# Verify current repo context
gh repo view --json nameWithOwner -q '.nameWithOwner'
/gh <command> [subcommand] [options]
| Command | Description |
|---|---|
/gh status | GitHub 상태 대시보드 (이슈, PR, 리뷰 요청, 멘션) |
/gh dashboard | 현재 repo 전체 현황 |
| Command | Description |
|---|---|
/gh issue list | 이슈 목록 |
/gh issue create | 새 이슈 생성 |
/gh issue view <n> | 이슈 상세 보기 |
/gh issue close <n> | 이슈 닫기 |
/gh issue develop <n> | 이슈에서 브랜치 생성 |
| Command | Description |
|---|---|
/gh pr list | PR 목록 |
/gh pr create | PR 생성 |
/gh pr view <n> | PR 상세 |
/gh pr checks <n> | PR CI 상태 |
/gh pr merge <n> | PR 머지 |
/gh pr review <n> | PR 리뷰 |
| Command | Description |
|---|---|
/gh ci status | 최근 CI 실행 상태 |
/gh ci watch | 현재 실행 모니터링 |
/gh ci logs <id> | 실행 로그 보기 |
/gh ci rerun <id> | 실패한 실행 재시도 |
/gh workflow list | 워크플로우 목록 |
/gh workflow run <name> | 워크플로우 트리거 |
| Command | Description |
|---|---|
/gh release list | 릴리스 목록 |
/gh release create <tag> | 릴리스 생성 |
/gh release view <tag> | 릴리스 상세 |
| Command | Description |
|---|---|
/gh search issues <query> | 이슈 검색 |
/gh search prs <query> | PR 검색 |
/gh search code <query> | 코드 검색 |
/gh status
Output:
## GitHub Status Dashboard
### Assigned to You
- #123 Fix login bug (myorg/app)
- #456 Add dark mode (myorg/app)
### Review Requests
- PR #789 feat: add auth (waiting for your review)
### Recent CI
- ✅ CI passed (3m ago)
- ✅ Deploy completed (10m ago)
/gh issue develop 123
Actions:
feature/123-fix-login-bug 브랜치 생성/gh pr create
/gh pr checks --watch
Actions:
/gh ci logs --failed
Output:
## CI Failure Analysis
**Job**: test
**Error**:
FAIL src/auth.test.ts ✕ should authenticate user (15ms) Expected: 200 Received: 401
**Suggestion**: Check mock authentication setup
/gh release create v1.2.0
Actions:
/gh issue create --from-sprint
Sprint TASKS에서 이슈 자동 생성:
sprint:N/gh milestone create --from-phase
Phase를 GitHub Milestone으로 변환
/gh issue create --from-todo
코드의 TODO 주석을 이슈로 변환
/gh release create --with-changelog
.codex/settings.json:
{
"github": {
"default_base_branch": "main",
"pr_template": ".github/PULL_REQUEST_TEMPLATE.md",
"auto_assign_reviewers": true,
"ci_watch_timeout": 600,
"release_generate_notes": true
}
}
gh --version
gh auth status
gh auth login --web
# 목록
gh issue list [--state open|closed|all] [--label <label>] [--assignee @me]
# 생성
gh issue create --title "Title" --body "Body" [--label bug] [--assignee @me]
# 보기
gh issue view <number> [--web] [--json fields]
# 브랜치 생성
gh issue develop <number> [--checkout] [--name <branch-name>]
# 닫기
gh issue close <number> [--reason completed|"not planned"]
# 코멘트
gh issue comment <number> --body "Comment"
# 목록
gh pr list [--state open|closed|merged|all] [--author @me]
# 생성
gh pr create --title "Title" --body "Body" [--draft] [--reviewer user1]
# 보기
gh pr view <number> [--web] [--json fields]
# CI 상태
gh pr checks <number> [--watch]
# 리뷰
gh pr review <number> --approve|--request-changes|--comment [--body "Comment"]
# 머지
gh pr merge <number> [--squash|--rebase] [--auto] [--delete-branch]
# 실행 목록
gh run list [--workflow <name>] [--branch <branch>] [--status failure]
# 실행 보기
gh run view <run-id> [--log] [--log-failed] [--web]
# 실시간 모니터링
gh run watch [<run-id>]
# 재실행
gh run rerun <run-id> [--failed]
# 워크플로우 트리거
gh workflow run <workflow> [--ref <branch>] [-f key=value]
# 목록
gh release list [--limit N]
# 생성
gh release create <tag> [files...] --title "Title" --notes "Notes" [--draft] [--prerelease] [--generate-notes]
# 보기
gh release view <tag> [--web]
# 다운로드
gh release download <tag> [--pattern "*.zip"]
github-manager - 상세 GitHub 작업pr-creator - PR 생성 전문branch-manager - 브랜치 관리/release - 릴리스 워크플로우