소스 정보
- 저장소
- buildkite/buildkite-agent-metrics
- 최근 소스 활동
- 2026년 6월 1일 02:02
- 감지된 SKILL.md 언어
- 영어
- 스타
- 77
- 포크
- 64
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/buildkite/buildkite-agent-metrics --skill buildkite-agent-metrics-release명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | buildkite-agent-metrics-release |
| description | Prepare a release for buildkite-agent-metrics. |
Use this skill when you need to cut a new release of buildkite-agent-metrics.
maingit fetch origin
git switch main
git pull --ff-only
Find the latest release:
gh release view --repo buildkite/buildkite-agent-metrics --json tagName,publishedAt
Ask the user whether this is a major, minor, or patch bump. Use the bare semver (e.g. 5.13.0), not a v-prefixed tag.
Edit version/version.go and set const Version = "X.Y.Z" to the new version.
This is a read-only API call — it does not create a release or tag. GitHub auto-detects the previous release and applies categorisation from .github/release.yml.
notes_file=$(mktemp)
gh api -X POST repos/buildkite/buildkite-agent-metrics/releases/generate-notes \
-f tag_name=vX.Y.Z \
-f target_commitish=main \
--jq .body > "$notes_file"
cat "$notes_file"
Inspect the output. If any PRs are mis-categorised (e.g. landed under 🏠 Internal because they had no category label), fix the labels on those PRs via gh pr edit <num> --add-label feature and re-run the command. The notes are regenerated at release time from current labels.
git switch -c release/vX.Y.Z.version/version.go change with message release: vX.Y.Z.release label is required: it satisfies the PR-labels workflow and excludes this PR from its own auto-generated notes (configured in .github/release.yml).
gh pr create \
--title "release: vX.Y.Z" \
--body-file "$notes_file" \
--label release
The PR body is for human review. The actual release notes are regenerated by gh release create --generate-notes in .buildkite/steps/release-github.sh when the release pipeline runs, so they will reflect any label fixes made between PR creation and release.
Wait for CI to pass, then merge via the GitHub UI or gh pr merge --squash.
That's it. The main pipeline build that runs against the merge commit detects the version bump in version/version.go, triggers the release pipeline, and gh release create creates the tag and publishes the release with auto-generated notes.
Spot-check the published release on the Releases page when it appears.
SOC 직업 분류 기준