用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cwilliams5/Alt-Tabby --skill review-outside-box命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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
基于 SOC 职业分类
正在显示 SKILL.md
| name | review-outside-box |
| description | Zoom out and find whole classes of performance, bug, or anti-pattern issues hiding in plain sight |
| user-invocable | true |
| disable-model-invocation | true |
Enter planning mode. Think outside the box. Use maximum parallelism and processing — don't worry about tokens.
The other review skills look at specific domains: race conditions, resource leaks, dead code, etc. This review is different. It zooms out to find systemic patterns that cut across the entire codebase — whole classes of issues that are invisible when you're focused on individual functions or files.
Past runs of this review have found massive wins that targeted reviews missed (e.g., discovering that the entire codebase was using regex parsing where JSON parsing would be orders of magnitude faster). These are the "in retrospect, obvious" patterns that hide because everyone is looking at the trees, not the forest.
Do NOT start by reading individual functions. Start by asking architectural questions:
This review benefits from diverse perspectives. Spawn explore agents with different lenses:
Each agent should think at the system level, not the function level. The question is "is this the right approach?" not "is this function correct?"
After explore agents report back, validate every finding yourself. Systemic findings need extra scrutiny because they often suggest large refactors — make sure the payoff justifies the cost.
For each candidate:
file.ahk lines X–Y" — quote the actual pattern across multiple files to show it's systemic, not isolated.Group by class of issue, not by file:
Pattern: What's happening systemically (1–2 sentences)
Evidence: Files and line ranges showing the pattern across the codebase
Impact: Estimated performance/reliability/maintainability cost
Fix approach: High-level — not line-by-line, but "change X to Y across the codebase"
Scope: How many files, estimated effort
Counter-argument: Why this might not be worth doing
Order by estimated impact (largest systemic wins first). A single architectural insight that affects 20 files is more valuable than 10 isolated micro-optimizations.
Ignore any existing plans — create a fresh one.