用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill update-changelog命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | update-changelog |
| description | > Use when this capability is needed. |
The make changelog target runs hack/changelog-generator/main.go, which:
gh api repos/Azure/kubelogin/releases/latest to determine the
previous release tag (when SINCE_TAG is not supplied).gh api repos/Azure/kubelogin/commits/<tag> to get the tag date.gh api --paginate repos/Azure/kubelogin/pulls?state=closed&....bug/fix; prefix fix:, bugfix:, hotfix:enhancement/feature; prefix feat:dependencies/chore; prefix bump , update documentation/docs; prefix docs:changelog-entry.md.Determine the new version number (e.g. 0.2.15) and, optionally, the
previous tag to compare from (e.g. v0.2.14).
Run make changelog to generate the changelog entry:
# SINCE_TAG is optional – omit to auto-detect the latest release tag
VERSION=0.2.15 make changelog
# or explicitly:
VERSION=0.2.15 SINCE_TAG=v0.2.14 make changelog
This writes the formatted entry to changelog-entry.md. When using the
GitHub Actions workflow,
the workflow then inserts changelog-entry.md after the header of
CHANGELOG.md and opens a pull request automatically.
When running locally, insert the content manually:
# Insert after the "# Change Log" header
{
head -n 2 CHANGELOG.md
echo ""
cat changelog-entry.md
echo ""
tail -n +3 CHANGELOG.md
} > CHANGELOG.md.new && mv CHANGELOG.md.new CHANGELOG.md
rm changelog-entry.md
Authentication is handled automatically by the gh CLI. Ensure you
are authenticated (gh auth login) or that GH_TOKEN/GITHUB_TOKEN
is set in the environment.
Review the updated CHANGELOG.md and edit entries as needed for
clarity before committing.
After the changelog is merged to the default branch, trigger the Release workflow to create the GitHub release and build binaries.
Source: Azure/kubelogin — distributed by TomeVault.