소스 정보
- 저장소
- leroyguillaume/claude
- 최근 소스 활동
- 2026년 6월 26일 09:22
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/leroyguillaume/claude --skill github-pr-conventions명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | github-pr-conventions |
| description | Conventions for opening GitHub pull requests with the `gh` CLI — |
gh CLI)Every PR you open must carry the right labels, applied at creation time. An unlabelled PR lands in the "Other Changes" bucket of the generated release notes and is invisible to anyone scanning the changelog by category. Labelling is part of opening the PR, not an afterthought.
Pass --label on gh pr create — do not open the PR first and label it
later (you usually forget). Repeat the flag per label:
gh pr create --base main --head <branch> \
--title "…" --body "…" \
--label feature --label rust
If you genuinely opened a PR without labels, fix it immediately with
gh pr edit <number> --add-label <name> [--add-label <name>].
Read the repo's actual labels — never invent or guess names. List them first and use the names that exist verbatim:
gh label list --limit 100
A label name that isn't in the list silently fails to apply. Creating new
labels is a separate, deliberate act (see github-repo-settings); do not
conjure one mid-PR.
Apply at least one changelog-category label. When .github/release.yaml
exists, its changelog.categories define which labels sort a PR into a
release-notes section — read it and pick the matching one. The common mapping:
| Change | Category label(s) |
|---|---|
| New capability / feature | feature (or enhancement if extending existing behaviour) |
| Bug fix | fix (or bug) |
| Refactor, CI, docs, build, housekeeping | chore |
| Dependency bump | dependencies |
Add the area / technology labels that apply on top of the category label.
E.g. a PR touching Rust code gets rust as well as feature/fix/…; a
dependency PR may carry both dependencies and the relevant tech label. A PR
typically ends up with two-ish labels: one category + one or more area.
Look at the diff, not the branch name:
feature. One that improves or
extends something already shipped → enhancement. When the repo has both and
they map to the same release-notes category, prefer the one that best
describes the change; don't apply both.fix/bug.chore.dependencies.Don't silently pick a wrong-but-present label to move on. If the repo lacks a
label the change clearly needs, say so and either (a) use the closest existing
category label and flag the gap, or (b) if the user wants the label created,
that's github-repo-settings work — labels should also stay in sync with
.github/release.yaml. Keep the * catch-all category as the fallback only;
never aim a PR at it on purpose.