基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cwilliams5/Alt-Tabby --skill release命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Audit all lint-ignore suppressions for appropriateness and overuse
Pre-flight checklist — run high-signal review skills before a release
Discover functions that block the main thread, then micro-audit each for internal optimization opportunities
| 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.