Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/TypedDevs/bashunit --skill pre-release명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | pre-release |
| description | Run comprehensive pre-release validation checklist |
| allowed-tools | Read, Bash, Grep, Glob |
Run all checks before releasing a new bashunit version.
Verify version matches across: package.json, CHANGELOG.md, src/bashunit.sh
./bashunit tests/unit/
./bashunit tests/functional/
./bashunit tests/acceptance/
./bashunit tests/
./bashunit --parallel tests/
All must pass. Run 3-5 times to catch flaky tests.
make sa # ShellCheck — zero warnings
make lint # EditorConfig — clean
# NB: no shfmt gate — it conflicts with .editorconfig here; make lint is the authority
CHANGELOG.md — version section complete with all changesREADME.md — examples current, no broken linksgrep -rn '\[\[' src/ # Should not use [[
grep -rn 'declare -A' src/ # No associative arrays
grep -rn '\${.*,,}' src/ # No case conversion
make docker/alpine
make docker/ubuntu
No hardcoded secrets, no unsafe eval, input validation present.
Review git log since last release. Breaking changes must be documented with migration guide.
gh run list --limit 5./bashunit --help
./bashunit --version
echo 'function test_smoke() { assert_equals "1" "1"; }' > /tmp/smoke_test.sh
./bashunit /tmp/smoke_test.sh
rm /tmp/smoke_test.sh
Report each check as pass/fail/warning. Only proceed to release when ALL checks pass.
git tag -a vX.Y.Z -m "Release vX.Y.Z"
git push origin vX.Y.Z