소스 정보
- 저장소
- ruby/rdoc
- 최근 소스 활동
- 2026년 2월 21일 15:56
- 감지된 SKILL.md 언어
- 영어
- 스타
- 930
- 포크
- 464
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ruby/rdoc --skill release-check명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | release-check |
| description | Audit PRs since a release tag, verify labels, and recommend a version bump |
Audit PRs merged since a given version tag, verify labels, and recommend a version bump.
Detect the repo and latest release tag automatically. If the user provides a specific tag or compare URL, use that instead.
# Get repo from git remote (e.g. "ruby/rdoc")
gh repo view --json nameWithOwner --jq '.nameWithOwner'
# Get latest release tag
gh release list --limit 1 --json tagName --jq '.[0].tagName'
# Get the release date
gh api repos/{repo}/releases/tags/{tag} --jq '.published_at'
If the user provides a specific tag or compare URL, use that instead.
gh pr list --repo {repo} --state merged --base master \
--search "merged:>={release_date}" \
--json number,title,body,labels,mergedAt,url --limit 100
Filter out the version-bump commit for the tag itself (e.g., "Bump version to v7.1.0").
Read .github/release.yml to find which labels map to changelog categories (currently breaking-change, bug, enhancement, documentation). PRs outside these categories appear under "Other Changes" and do not need labels.
List PRs that look like they should have a release-relevant label but don't. Use the PR title and description to judge:
breaking-change (note: dropping Ruby version support is not a breaking change, just a minor bump)bugenhancementdocumentationPRs that are clearly CI, dependency bumps, refactors, or test-only changes do not need these labels.
Format each PR as a clickable URL (not just a number), followed by its title and current labels:
### PRs that may need labels
- https://github.com/ruby/rdoc/pull/1547 — Expand GitHub style references in ChangeLog to URL
Suggested: `enhancement`
### PRs without release-relevant labels (OK)
- https://github.com/ruby/rdoc/pull/1577 — Fix a test that uses invalid syntax
- https://github.com/ruby/rdoc/pull/1586 — Removed truffleruby from CI
Show all PRs grouped by their release-relevant label, with URLs:
### Breaking Changes
- https://github.com/ruby/rdoc/pull/1616 — Remove deprecated CLI options and directives
### Enhancements
- https://github.com/ruby/rdoc/pull/1544 — Highlight bash commands
### Bug Fixes
- https://github.com/ruby/rdoc/pull/1559 — Replace attribute_manager with new parser
...
### Documentation
...
### Other Changes
- (dependency bumps, CI, refactors, test fixes)
Apply semver reasoning:
breaking-change label)If any PR has the breaking-change label, recommend a major version bump.
Explain the reasoning, highlighting the most impactful changes by URL.