一键导入
release
Create a new GitHub release by tagging and pushing a version tag. Triggers the CI release workflow that builds binaries for all platforms.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a new GitHub release by tagging and pushing a version tag. Triggers the CI release workflow that builds binaries for all platforms.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | release |
| description | Create a new GitHub release by tagging and pushing a version tag. Triggers the CI release workflow that builds binaries for all platforms. |
| disable-model-invocation | true |
| user-invocable | true |
| argument-hint | ["version"] |
Create a new release for this project.
Get the latest version tag by running git tag -l 'v*' --sort=-v:refname | head -1 to find the current latest version.
Determine the target version:
$ARGUMENTS), use that as the target version. Ensure it starts with v (prepend if missing).$ARGUMENTS is empty), parse the latest tag into major, minor, and patch components, then ask the user which bump they want using AskUserQuestion with these options:
Validate that the chosen version tag does not already exist (git tag -l <version>). If it does, tell the user and stop.
Confirm with the user before proceeding: show the version that will be tagged, the commit it points to (git log --oneline -1), and ask for confirmation.
Create and push the tag:
git tag <version>
git push origin <version>
Report success with a link to the GitHub Actions workflow run. Use gh run list --workflow=release.yml --limit=1 to find it.