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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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**