ワンクリックで
release-helper
Automates release note generation and social media announcements. Handles version incrementing (minor vs major).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Automates release note generation and social media announcements. Handles version incrementing (minor vs major).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Comprehensive code review covering Functionality, Security (OWASP), Performance, and Maintainability. Includes good/bad examples.
Generates robust, cross-platform launcher scripts (Windows .bat, Unix .sh, Mac .sh) with dependency checking, .env handling, and graceful shutdown logic.
Automates the creation of professional-grade Antigravity skills. Incorporates best practices for progressive disclosure, resource organization, and automatic agent registration.
Scans the current conversation thread and updates a project work log. Useful for tracking progress and generating release notes.
A strict, scientific debugging protocol (The "Iron Law"). No fixes allowed without root cause investigation.
Generates standardized API documentation (OpenAPI/Markdown) for backend endpoints.
| name | release_helper |
| description | Automates release note generation and social media announcements. Handles version incrementing (minor vs major). |
This skill helps you package up a release by generating release notes and social media content.
read_file to read RELEASE_NOTES.md and SOCIAL_MEDIA.md.run_command (e.g., git describe --tags --abbrev=0 and git log <last_release>..HEAD) to fetch the latest git version, the last git release, and everything that changed from the last release till the latest git commit. Use this as the context to create content.replace_file_content to prepend new entries to the VERY TOP, ensuring all previous history is completely untouched (DO NOT replace or modify old entries).RELEASE_NOTES.md.
v1.0.1 -> v1.0.2) for standard updates.v1.0.1 -> v1.1.0).RELEASE_NOTES.mdCreate this file if it doesn't exist. If it exists, ALWAYS prepend new entries to the top to maintain a complete historical log. The old release information MUST remain untouched.
## [Version] - [Date]### 🚀 New Features### ⚡ Improvements### 🐛 Bug Fixes### 📚 Documentation### 🏗️ Infrastructure & MaintenanceSOCIAL_MEDIA.mdGenerate engaging posts for the new release. Create this file if it doesn't exist. If it exists, ALWAYS prepend new posts to the top to maintain a record of past announcements. The old social media posts MUST remain untouched.
RELEASE_NOTES.md and SOCIAL_MEDIA.md.