Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/cwilliams5/Alt-Tabby --skill releaseコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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.