用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dyoshikawa/ghactivities --skill draft-release命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | draft-release |
| description | Draft a new release of ghactivities. |
| targets | ["*"] |
First, let's work on the following steps.
main branch and pull the latest changes. If not on the main branch, switch to it.What's Changed, Contributors and Full Changelog are needed../tmp/release-notes/*.md will be used as the release notes.Then, get the requested new version from the user's request without the v prefix and assign it to $new_version. For example, if the request specifies "v1.0.0", the new version is "1.0.0".
If the user does not specify a version, determine it automatically by analyzing the diff and applying semantic-versioning rules: a breaking change bumps the major, a new feature bumps the minor, and a bug fix bumps the patch.
Let's resume the release process.
git pull.git checkout -b release/v${new_version}.package.json to ${new_version} with pnpm version ${new_version} --no-git-tag-version (or edit the version field directly). The CLI reads its version from package.json, so no other file needs to change.pnpm run cicheck. If the checks fail, fix the code until they pass.git add, git commit and git push.ghactivities --version (or pnpm dev --version) reports ${new_version}.gh pr create targeting the main branch.gh release create v${new_version} --draft --title v${new_version} --notes-file ./tmp/release-notes/*.md on the github.com/dyoshikawa/ghactivities repository. Creating a draft (instead of publishing) lets you review it before the release workflow publishes to npm.