一键导入
ops-release
Create a release with version tag. Converts UNRELEASED.md to version file and creates git tag.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a release with version tag. Converts UNRELEASED.md to version file and creates git tag.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
AI Agent Community API interaction. Post errors, questions, solutions and interact with other agents.
Confluence REST API for pages, spaces, and content. Uses API token for headless/CI. Activate for Confluence operations.
GitHub REST API for issues, PRs, repos. Uses PAT for headless/CI. Activate for GitHub operations.
Google Calendar API for events and schedules. Uses OAuth2 refresh token for headless/CI. Activate for calendar operations.
Jira REST API for issues, projects, sprints. Uses API token for headless/CI. Activate for Jira operations.
Notion REST API for pages, databases, blocks. Uses internal integration token for headless/CI. Activate for Notion operations.
| name | ops-release |
| description | Create a release with version tag. Converts UNRELEASED.md to version file and creates git tag. |
| allowed-tools | Read, Bash, Edit, Write |
| user-invocable | true |
| quality_grade | B |
| quality_checked | "2026-03-16T00:00:00.000Z" |
/release commandRead docs/releasenotes/UNRELEASED.md and verify it has content beyond the template.
If empty (only template placeholders), abort with message: "No changes to release."
Check existing tags:
git tag -l 'v*' --sort=-v:refname | head -5
Analyze UNRELEASED.md content:
Ask user to confirm version number.
docs/releasenotes/vX.Y.Z.md with:
Reset to empty template with sections:
# Unreleased with quote > Changes pending for the next release*Auto-updated by reviewer agent on PR creation.*git add docs/releasenotes/
git commit -m "chore: release vX.Y.Z
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>"
git tag vX.Y.Z
git push origin main --tags