원클릭으로
release
发版流程。当用户说"发版"、"release"、"bump version"、"新版本"时触发。自动创建双语 release notes 并更新版本号。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
发版流程。当用户说"发版"、"release"、"bump version"、"新版本"时触发。自动创建双语 release notes 并更新版本号。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Use when building App Store screenshot pages, generating exportable marketing screenshots for iOS apps, or creating programmatic screenshot generators with Next.js. Triggers on app store, screenshots, marketing assets, html-to-image, phone mockup.
Use when working on a caterpi11ar or affiliated project and need brand assets such as logos, contact information, or copyright notices. Use when adding branding, an about page, footer, or any visual identity element to a project under the caterpi11ar or locusify brand.
SOC 직업 분류 기준
| name | release |
| description | 发版流程。当用户说"发版"、"release"、"bump version"、"新版本"时触发。自动创建双语 release notes 并更新版本号。 |
Automate the release process: bump version, generate bilingual release notes, and write files.
Read package.json and extract the current version field.
Use AskUserQuestion to let the user pick the next version. Calculate patch / minor / major bumps from the current version and present them as options. Example for current 1.1.0:
| Option | Version |
|---|---|
| Patch | 1.1.1 |
| Minor | 1.2.0 |
| Major | 2.0.0 |
Ask the user what changed in this release. Offer two approaches:
git log since the last version tag or recent commits.Create two Markdown files following this exact template format:
English (en.md):
# v{VERSION}
> {YYYY-MM-DD}
## Features
### {Feature Title}
- {Description}
## Bug Fixes
- {Description}
## Refactor
- {Description}
Chinese (zh-CN.md):
Same structure, with content translated to Chinese. Section headers stay in English (## Features, ## Bug Fixes, ## Refactor). Only include sections that have content.
public/releases/v{newVersion}/public/releases/v{newVersion}/en.mdpublic/releases/v{newVersion}/zh-CN.mdUpdate the version field in package.json to the new version number. Do not modify any other fields.
en.md and zh-CN.md exist under public/releases/v{newVersion}/package.json version matches the new versionAfter all files are committed, create an annotated git tag and push it to trigger the Android build workflow:
git tag -a v{newVersion} -m "Release v{newVersion}"
git push origin v{newVersion}
This will automatically trigger the GitHub Actions workflow to build and publish the signed Android APK to GitHub Releases.
Below is an example from v1.1.0 for tone and formatting reference:
en.md:
# v1.1.0
> 2026-02-27
## Features
### Gallery Drawer
- New photo management panel (Gallery Drawer) for browsing and managing uploaded photos
- Deep integration with the map page — click to locate the corresponding photo position
### Privacy Settings
- New privacy section in the settings panel
- Localized display of data collection and privacy policies in Chinese and English
## Refactor
- Extracted shared formatting utilities to `lib/formatters.ts`, eliminating duplicate logic
- Unified GPS type naming to `GPSCoordinates`
zh-CN.md:
# v1.1.0
> 2026-02-27
## Features
### Gallery Drawer
- 新增照片管理面板(Gallery Drawer),可浏览和管理已上传的照片
- 与地图页面深度集成,点击即可定位到对应照片位置
### Privacy Settings
- 设置面板新增隐私说明区域
- 支持中英文本地化展示数据收集与用户隐私政策
## Refactor
- 提取通用格式化工具函数至 `lib/formatters.ts`,消除重复逻辑
- 统一 GPS 类型命名为 `GPSCoordinates`