소스 정보
- 저장소
- oocx/tfplan2md-uat
- 최근 소스 활동
- 2025년 12월 26일 01:43
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/oocx/tfplan2md-uat --skill view-pr-github명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Create and (optionally) merge a GitHub pull request (prefer GitHub chat tools; gh/wrappers are fallback), following the repo policy to use rebase and merge for a linear history.
Export and analyze VS Code Copilot chat logs for retrospective metrics. Extracts model usage, tool invocations, approval patterns, and timing data.
Generate the comprehensive demo markdown artifacts from the current codebase. Use before UAT to ensure test artifacts reflect the latest code.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | view-pr-github |
| description | View GitHub PR status/details (prefer GitHub chat tools; gh is fallback). |
Read pull request status/details from GitHub.
Preferred: use GitHub chat tools (stable, structured, avoids pager/editor pitfalls).
Fallback: use non-interactive gh patterns.
Use this skill for read-only PR inspection (status, checks, reviewers, files, body). For creating/merging PRs, prefer the repo wrapper scripts (see the create-pr-github skill).
If GitHub chat tools are available in the current session, prefer them for read-only inspection to reduce terminal approvals and avoid pager issues. Typical tool coverage:
mcp_github_get_pull_requestmcp_github_get_pull_request_filesmcp_github_get_pull_request_commentsmcp_github_get_pull_request_reviewsmcp_github_get_pull_request_statusUse the gh CLI patterns below only when there is no matching chat tool (or you need gh api flexibility).
gh, use a non-interactive pager for every gh call:
GH_PAGER=cat (gh-specific, overrides gh’s internal pager logic)GH_FORCE_TTY=false to reduce TTY-driven behavior--json) and keep output small with --jq when practical.gh ... without GH_PAGER=cat (it may open less and block).gh config set ...).Use chat tools for:
If a tool exists that directly answers the question, use it. If not, use the gh fallback patterns below.
Use this prefix for every command:
GH_PAGER=cat GH_FORCE_TTY=false gh ...
GH_PAGER=cat GH_FORCE_TTY=false gh pr view <pr-number> \
--json number,title,state,isDraft,url,mergeStateStatus,reviewDecision
GH_PAGER=cat GH_FORCE_TTY=false gh pr view <pr-number> \
--json statusCheckRollup \
--jq '.statusCheckRollup[] | {name, status, conclusion}'
GH_PAGER=cat GH_FORCE_TTY=false gh pr view <pr-number> \
--json latestReviews,reviewRequests \
--jq '{latestReviews: [.latestReviews[] | {author: .author.login, state, submittedAt}], reviewRequests: [.reviewRequests[].login]}'
These are the “issue comments” on the PR conversation.
GH_PAGER=cat GH_FORCE_TTY=false gh api \
--paginate \
"/repos/{owner}/{repo}/issues/<pr-number>/comments" \
--jq '.[] | {author: .user.login, createdAt: .created_at, url: .html_url, body: .body}'
These are the code-review comments attached to specific lines/paths in the diff.
GH_PAGER=cat GH_FORCE_TTY=false gh api \
--paginate \
"/repos/{owner}/{repo}/pulls/<pr-number>/comments" \
--jq '.[] | {author: .user.login, createdAt: .created_at, url: .html_url, path: .path, line: .line, side: .side, body: .body}'
GH_PAGER=cat GH_FORCE_TTY=false gh pr view <pr-number> --json files \
--jq '.files[].path'
GH_PAGER=cat GH_FORCE_TTY=false gh pr view <pr-number> --json body --jq '.body'
scripts/pr-github.sh create / scripts/pr-github.sh create-and-merge.gh patterns.gh CLI vs GitHub Chat Toolsgh CLI whengh api flexibility).gh.Rule of thumb: if a GitHub chat tool can fetch the data you need, use it; otherwise use GH_PAGER=cat GH_FORCE_TTY=false gh ... (or gh api) from this skill.