基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cwilliams5/Alt-Tabby --skill review-professionalism命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | review-professionalism |
| description | Review app polish — native feel, user-facing text, UX quality, and professional presentation |
| user-invocable | true |
| disable-model-invocation | true |
Enter planning mode. Deep-review all user-facing aspects of the app for professionalism and polish. Use maximum parallelism — spawn explore agents for independent areas.
Making an AHK app feel native and professional on Windows is hard. Past reviews have surfaced valuable improvements — consistent theming, proper DPI handling, polished message boxes, etc. This review checks whether the app still feels professional as features have been added.
theme.ahk — the theme system exists, but is it applied everywhere?)gui_antiflash.ahk)ThemeMsgBox() (the project's themed replacement)Split by user-facing surface:
src/gui/gui_paint.ahk, gui_overlay.ahk — the main interaction surfacesrc/alt_tabby.ahk, launcher files — first impression and daily interaction pointsrc/editors/ — where users spend time customizingMsgBox, ThemeMsgBox, Gui() across all filesAfter explore agents report back, validate every finding yourself. "Professionalism" is subjective — what one person calls polish, another calls unnecessary complexity.
For each candidate:
file.ahk lines X–Y" with the actual user-facing text or UI code quoted.Group by user-facing area:
| Area | File | Lines | Issue | User Impact | Fix |
|---|---|---|---|---|---|
| Wizard | launcher_wizard.ahk | 88 | "Click OK to continue" — no explanation of what happens next | Confusing first-run | Rewrite to "This will install Alt-Tabby to Program Files and create a startup task." |
| Tray menu | launcher_tray.ahk | 42 | Menu item "Debug Viewer" — technical jargon | Intimidating to non-technical users | Rename to "Window Inspector" or similar |
| Config editor | config_editor.ahk | 200 | Setting description uses ms units without explanation | User doesn't know what 150ms means | Add "(lower = faster response)" hint |
Order by user exposure: high-traffic surfaces first (overlay, tray, config editor), rarely-seen surfaces last (wizard, error dialogs).
Ignore any existing plans — create a fresh one.