ワンクリックで
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