소스 정보
- 저장소
- leroyguillaume/claude
- 최근 소스 활동
- 2026년 6월 26일 14:47
- 감지된 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-repo-settings명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | github-repo-settings |
| description | GitHub repository settings administered via the `gh` CLI — sync |
gh CLI)Administer GitHub repo settings from the CLI. All commands use gh, so the repo
is inferred from the current directory's origin remote unless --repo is given.
A stale GITHUB_TOKEN in the environment shadows the keyring login and fails
with HTTP 401: Bad credentials. Prefix the commands with unset GITHUB_TOKEN
(per-invocation, since shell state does not persist between tool calls) to fall
back to the keyring token. Confirm with gh auth status if a 401 appears.
.github/release.yaml.github/release.yaml only governs PR labels — the changelog generator reads
the labels on merged PRs, nothing else. So it is not the full set of labels a
repo should have. Two distinct purposes coexist:
bug, enhancement, question, help wanted, …):
classify reported problems/requests. They legitimately exist even when absent
from release.yaml. Do not delete them just because the changelog config
doesn't reference them.feature, fix, chore, dependencies, rust, …):
classify the change shipped. These are what release.yaml maps to categories.The same concept often has both: bug (issue) ↔ fix (PR), enhancement (issue)
↔ feature (PR). Inside one changelog category, listing both members of such a
pair is a duplicate — pick one (the PR-side label) and drop the other from
release.yaml; but keep the issue-side label alive on the repo.
The "*" catch-all in release.yaml is a wildcard, not a real label — never
create it.
Procedure:
.github/release.yaml, collect every concrete label it maps (drop "*").
These must all exist on the repo.gh label list --limit 100.exclude) if it's a PR label;
leave issue-triage labels out of release.yaml but keep them on the repo.release.yaml.unset GITHUB_TOKEN
# create / upsert the PR-changelog labels referenced by release.yaml (idempotent)
gh label create feature --description "New feature" --color 0e8a16 --force
gh label create fix --description "Bug fix" --color d73a4a --force
gh label create chore --description "Maintenance / housekeeping" --color fef2c0 --force
gh label create dependencies --description "Dependency updates" --color 0366d6 --force
# issue-triage labels stay even though release.yaml never maps them
gh label create bug --description "Something isn't working" --color d73a4a --force
gh label create enhancement --description "New feature or request" --color a2eeef --force
gh label list --limit 100 # verify
Notes:
gh label create --force upserts, so it is safe to re-run.release.yaml is not a reason to
delete; only do it when the user explicitly wants the label gone, and confirm
the delete list first.bug / enhancement colours and descriptions as-is
unless asked to unify them with the new labels.unset GITHUB_TOKEN
gh repo edit --enable-squash-merge --enable-merge-commit=false --enable-rebase-merge=false
gh repo view --json mergeCommitAllowed,squashMergeAllowed,rebaseMergeAllowed # verify
Expected verification output:
{"mergeCommitAllowed":false,"rebaseMergeAllowed":false,"squashMergeAllowed":true}
This greys out the "Create a merge commit" and "Rebase and merge" buttons on
PRs, leaving squash as the only option. Adjust the flags to allow other methods
(e.g. --enable-rebase-merge to add rebase back).
unset GITHUB_TOKEN
gh repo edit --delete-branch-on-merge
gh repo view --json deleteBranchOnMerge # verify -> {"deleteBranchOnMerge":true}
Once on, merging a PR deletes its head branch automatically (the branch is still
recoverable from the PR's "Restore branch" button for a while). Pass
--delete-branch-on-merge=false to turn it back off.