원클릭으로
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