一键导入
create-release
Create a draft GitHub release with proper versioning and release notes
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a draft GitHub release with proper versioning and release notes
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Create a pull request from dev to main with proper formatting and draft release
Create a pull request from dev to main with proper formatting and draft release
Create a well-structured task with smart field suggestions; GitHub Issues by default, Linear only for retained internal categories
Create a well-structured task with smart field suggestions; GitHub Issues by default, Linear only for retained internal categories
Start an iOS/macOS Apple app development or web-parity audit session — loads design rules, maps web sources to native code, supports Linux static audits, and verifies with Xcode when available
Convert repeated Playwright wait/stabilize/lookup/assertion fixes into shared deterministic helpers. Use when the same spec or flow fails repeatedly, commits say wait/stabilize/lookup/assertion, or an E2E fix looks like a one-off timing patch.
基于 SOC 职业分类
| name | create-release |
| description | Create a draft GitHub release with proper versioning and release notes |
| user-invocable | true |
| disable-model-invocation | true |
| argument-hint | [tag] |
!gh release list --limit 5 2>/dev/null || echo "gh not available"
!gh pr list --state open --base main --json title,number 2>/dev/null || echo "none"
IMPORTANT: Only create a release when the user explicitly asks, or as part of a PR workflow.
Current phase: Alpha. Product UI shows short product lines such as v0.14; release tags and package/image artifacts use exact patch versions such as v0.14.0, v0.14.1, and v0.14.2. Check the latest tag:
gh release list --limit 3
Version bump decision:
| Change type | Bump | Example |
|---|---|---|
| New features | Minor product line | v0.13 → v0.14 |
| Bug fixes / repeated main publishes | Patch artifact | v0.14.0 → v0.14.1 |
| Breaking changes | Major | v0.14 → v1.0 |
Write human-readable notes aimed at users and contributors (not a commit dump):
## Overview
<1-3 sentence overview>
## New Features
- <feature descriptions>
## Bug Fixes
- <fix descriptions>
## Improvements
- <notable internal improvements affecting UX>
gh release create <tag> \
--target main \
--title "<tag>: <short description>" \
--notes "$(cat <<'EOF'
<release notes>
EOF
)" \
--draft \
--prerelease
Tell the user:
maingh release edit <tag> --draft=false