release

GitHub

指导如何为 prime-rl 准备和发布 GitHub Release,包括版本决策、撰写发布说明、创建草稿发布及后续内核依赖更新。

skills/release/SKILL.md PrimeIntellect-ai/prime-rl

触发场景

起草版本发布说明 标记版本号 发布 GitHub Release

安装

npx skills add PrimeIntellect-ai/prime-rl --skill release -g -y
更多选项

不安装直接使用

npx skills use PrimeIntellect-ai/prime-rl@release

指定 Agent (Claude Code)

npx skills add PrimeIntellect-ai/prime-rl --skill release -a claude-code -g -y

安装 repo 全部 skill

npx skills add PrimeIntellect-ai/prime-rl --all -g -y

预览 repo 内 skill

npx skills add PrimeIntellect-ai/prime-rl --list

SKILL.md

Frontmatter
{
    "name": "release",
    "description": "How to prepare and publish GitHub releases for prime-rl. Use when drafting release notes, tagging versions, or publishing releases."
}

Releases

Releases are driven by .github/workflows/tag-and-release.yaml. The flow:

  1. You create a draft GitHub Release with the notes inline (gh release create --draft).
  2. You open a draft PR that bumps version in pyproject.toml.
  3. Maintainer merges. The workflow tags the commit, builds the prime-kernels wheels and attaches them to the draft, then promotes it.

Release notes live on the GitHub Release, not in the repo. Prime-rl is not on PyPI. .dev tags are handled separately by devx_tag.yaml; tag-and-release.yaml ignores them.

1. Decide the version

git fetch origin --tags
grep '^version' pyproject.toml
gh release list --repo PrimeIntellect-ai/prime-rl --limit 5

SemVer (MAJOR.MINOR.PATCH). Confirm with the user before continuing.

2. Draft the notes

Match the prior release's structure: numbered highlights (# 1., ...), then # Breaking Changes, # Bug Fixes, # Misc, # Contributors. Use ## subsections inside a highlight when it bundles multiple items.

PREV=$(gh release list --limit 1 --json tagName --jq '.[0].tagName')
gh release view "$PREV" --json body --jq .body          # style reference
git log "$PREV"..origin/main --oneline --no-merges      # commits since
gh pr list --base main --state merged --search \
  "merged:>=$(gh release view "$PREV" --json publishedAt --jq .publishedAt)" \
  --limit 500 --json number,title,author                # for PR links + contributors

Tips:

  • PR refs: [#1234](https://github.com/PrimeIntellect-ai/prime-rl/pull/1234).
  • Contributors: order by commit count, use the GH @username from the API (not git author names).
  • Verify any TOML field names against the actual config classes.

3. Create the draft release

NEW=v0.6.0
gh release create --draft "$NEW" --title "$NEW" --target main --notes-file /tmp/release-notes-$NEW.md
gh release view "$NEW" --json isDraft,tagName --jq '{tagName, isDraft}'   # expect isDraft: true

Iterate with gh release edit "$NEW" --notes-file /tmp/release-notes-$NEW.md.

4. Open the version-bump PR

git switch -c chore/release-$NEW
# bump `version = "..."` in pyproject.toml
git add pyproject.toml
git commit -m "chore: release $NEW"
git push -u origin "chore/release-$NEW"
gh pr create --draft --title "chore: release $NEW" --body "Bumps version to ${NEW#v}. Draft release: https://github.com/PrimeIntellect-ai/prime-rl/releases/tag/$NEW"

Stop. Do not tag, push tags, or flip the draft to published — the workflow does that on merge.

5. After it publishes: move the kernel pin

The release now carries prime_kernels-*.whl for x86_64 and aarch64. Point installs at them so nobody compiles CUDA, in a follow-up PR:

gh release view "$NEW" --json assets --jq '.assets[].name'   # exact filenames, ABI and all

Update the prime-kernels URLs under [tool.uv.sources] in pyproject.toml to $NEW, then uv sync --all-extras to relock. The pin always trails one release — $NEW's wheels do not exist until $NEW is built. See the kernels skill.

Recovery

If the workflow tagged the commit but failed to promote the draft, the next main push (or workflow_dispatch with tag: v{new}) re-promotes it. A rerun rebuilds and re-uploads the kernel wheels (--clobber), which is harmless.

版本历史

  • 95734aa 当前 2026-08-28 16:25

    新增第5步:发布后需通过PR将内核依赖指向预构建的 wheels,并支持额外安装选项。

  • 3b22dd9 2026-07-25 11:27

同 Skill 集合

skills/configs/SKILL.md
skills/dashboard/SKILL.md
skills/install/SKILL.md
skills/kernels/SKILL.md
skills/training/monitor-run/SKILL.md
skills/training/SKILL.md
skills/training/start-run/SKILL.md

元信息

文件数
0
版本
95734aa
Hash
c2915fec
收录时间
2026-07-25 11:27

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-01 02:48
浙ICP备14020137号-1 $访客地图$