release-check
星标13
分支1
更新时间2026年4月9日 01:28
Run the full pre-release checklist — version, changelog, tests, types, build, size
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run the full pre-release checklist — version, changelog, tests, types, build, size
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Debug a failing test by loading full context — test file, source file, error output
Show all public exports from the vlist package to catch accidental API changes
Generate a changelog entry from recent commits since a given ref or tag
Find untested code paths and report coverage gaps in the vlist project
| name | release-check |
| description | Run the full pre-release checklist — version, changelog, tests, types, build, size |
| argument-hint | ["version"] |
| allowed-tools | Bash(bun *) Bash(git *) Bash(cat *) Read Glob Grep |
Run all checks needed before publishing a new vlist release.
node -p "require('./package.json').version"git describe --tags --abbrev=0 2>/dev/null || echo "none"git log $(git describe --tags --abbrev=0 2>/dev/null || echo "HEAD~10")..HEAD --oneline --no-merges 2>/dev/null | head -20Run each check and report results. Do NOT fix issues — just report them.
$ARGUMENTS provides a target version, check that package.json matchesbun run typecheckbun testbun run buildbun run size## Release Checklist: vX.Y.Z
| Check | Status | Notes |
|-------|--------|-------|
| Version | ✅/❌ | ... |
| Changelog | ✅/❌ | ... |
| Typecheck | ✅/❌ | ... |
| Tests | ✅/❌ | N passed |
| Build | ✅/❌ | ... |
| Size | ✅/❌ | core: X.XKB |
| Git state | ✅/❌ | ... |
**Ready to publish** / **Blocked — N issues to resolve**