用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/PrimeIntellect-ai/verifiers --skill release命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | release |
| description | Release a stable verifiers version from main to PyPI and GitHub. |
Use the next minor version by default. Use a different vX.Y.Z version when the
user specifies one. Complete only the release steps that the user authorizes.
Run the release from the main repository:
git switch main
git pull --ff-only origin main
git status --short --branch
VERSION=vX.Y.Z
Require a clean worktree. Confirm that $VERSION is absent from GitHub and
PyPI. Review pyproject.toml and require published stable dependency versions.
For example, replace any .dev, alpha, beta, or release-candidate version and
update uv.lock. Land dependency changes through the normal PR process. Pull
main again and require a clean worktree before tagging.
git tag "$VERSION"
git push origin "refs/tags/$VERSION"
Confirm that the remote tag points to the current main commit.
Manually dispatch the stable release workflow:
gh workflow run publish-verifiers.yml \
--repo PrimeIntellect-ai/verifiers \
--ref main \
-f tag="$VERSION"
Monitor the new run through completion with gh run watch <run-id> --exit-status.
After the workflow creates the public GitHub Release, read the previous stable release and use the same release-note format. Describe the changes since that release, then update the new release:
gh release edit "$VERSION" \
--repo PrimeIntellect-ai/verifiers \
--notes-file <release-notes.md>
Confirm that:
${VERSION#v} with a wheel and source archive.