Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/cwilliams5/Alt-Tabby --skill release명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Audit all lint-ignore suppressions for appropriateness and overuse
SOC 직업 분류 기준
SKILL.md 표시 중
| name | release |
| description | Build and publish a GitHub release |
| user-invocable | true |
| disable-model-invocation | true |
Create a GitHub release for Alt-Tabby. The user may provide additional context (version bump amount, release note focus area, etc.) — incorporate it into the steps below.
Verify clean state: git status must show a clean working tree. If not, stop and report.
Run full test suite: .\tests\test.ps1 --live. If any tests fail, stop and report. Do not release with failing tests.
Determine version: Read the current VERSION file. If the user specified a version bump (e.g., "+0.1", "bump minor"), apply it. Otherwise ask what the new version should be.
Update VERSION file: Write the new version string to VERSION.
Compile: Run .\compile.bat. Verify release/AltTabby.exe was produced.
Build release notes:
git log --oneline vOLD..HEAD (where vOLD is the previous version tag) to get the commit history since last release.https://github.com/cwilliams5/Alt-Tabby/compare/vOLD...vNEWCommit version bump: Commit the VERSION file change with message Bump version to vX.Y.Z.
Create tag: git tag vX.Y.Z
Push: git push origin main --tags
Create GitHub release:
gh release create vX.Y.Z release/AltTabby.exe --title "vX.Y.Z" --notes "RELEASE_NOTES_HERE"
AltTabby.exe (auto-update depends on this exact name)release/AltTabby.exe directly — no zip, no config.ini, no blacklist.txt, no stats.iniReport: Show the release URL and a summary of what was published.