ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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.