release
Release a new version of adversarial-review (bumps version, tags git, pushes, triggers npm publish)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Release a new version of adversarial-review (bumps version, tags git, pushes, triggers npm publish)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | release |
| description | Release a new version of adversarial-review (bumps version, tags git, pushes, triggers npm publish) |
| license | Apache-2.0 |
| user-invocable | true |
| metadata | {"version":"1.0.0","internal":true} |
Use this command to release a new version of adversarial-review.
Determine the new version. Read the current version from package.json. Apply the requested semver bump (default "minor") to compute the new version number.
Verify preconditions:
git status --porcelain is empty)main branchgit pull --dry-run shows no changes)npm test)Bump version:
"version" field in package.jsonmetadata.version in skills/adversarial-review/SKILL.md frontmatter to match the new versionCommit the version bump:
git commit -am "chore: bump version to X.Y.Z"
Create the version tag: vX.Y.Z
Push commit and tag:
git push origin main
git push origin vX.Y.Z
Confirm completion. Print a summary of:
.github/workflows/publish.yml, triggered on v* tags) will handle the npmjs release automatically.