一键导入
new-release
Creates a GitHub pre-release for Oinkoin with a tag, release name, and a one-line changelog summary. Use when the user wants to ship a new version.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Creates a GitHub pre-release for Oinkoin with a tag, release name, and a one-line changelog summary. Use when the user wants to ship a new version.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | new-release |
| description | Creates a GitHub pre-release for Oinkoin with a tag, release name, and a one-line changelog summary. Use when the user wants to ship a new version. |
| argument-hint | <version> |
Create a pre-release on GitHub for the given version.
/new-release 1.9.0
The version comes from the skill argument (e.g. 1.9.0). If the user didn't provide one, ask for it before continuing.
gh release list --limit 10
Identify the most recent non-draft, non-pre-release tag to use as the comparison base.
git log <previous-tag>..HEAD --oneline
From the commit list, propose a single-line summary of the user-facing changes. Rules:
(#123))Once the user approves the changelog:
# Create and push the tag
git tag <version>
git push origin <version>
# Create the pre-release
gh release create <version> \
--title "<version>" \
--notes "<approved bullet points>" \
--prerelease
Print the release URL returned by gh release create so the user can review it on GitHub.
Creates or updates blog articles for the Oinkoin website. Use when the user wants to write a blog post, publish a release article, or add content to the website blog.
Translates untranslated strings in a locale JSON file for the Oinkoin app. Use when the user wants to localise or update translations for a specific language, or says "translate <locale>".