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