소스 정보
- 저장소
- cwilliams5/Alt-Tabby
- 최근 소스 활동
- 2026년 2월 24일 04:23
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/cwilliams5/Alt-Tabby --skill review-test-speed명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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-test-speed |
| description | Optimize AHK test suite speed without sacrificing reliability |
| user-invocable | true |
| disable-model-invocation | true |
Enter planning mode. Analyze AHK test suite performance and find speed optimizations. Use parallelism where possible.
Scope: AHK tests only — unit tests, GUI tests, live tests, lifecycle tests. NOT static analysis checks (review-static-speed covers those) and NOT query tools (review-tool-speed covers those).
Run .\tests\test.ps1 --live --timing to get the hierarchical timing report. This is the ground truth for where time is spent.
The test suite is heavily parallelized into phases. Within a parallel phase, the slowest test determines the phase duration. Look for:
Launching AHK processes and compiled exes is expensive (~1–2s each). Look for:
The test suite uses WaitForFlag(&flag) for adaptive polling (see testing.md). Look for:
Sleep() calls that could be converted to polling with WaitForFlag or similarLive tests depend on compilation. Check:
testing.md pipeline model)For any test file that is a phase bottleneck, check whether it can be logically split:
tests/bench_unit_split.ps1 to measure AHK startup overhead vs per-file test timeThis suite is designed for automated agentic execution — no user interaction, no prompts, cursor suppression, icon suppression. Any new or modified tests MUST follow existing patterns in test_utils.ahk:
_Test_RunSilent(cmdLine) for process launchingWaitForFlag(&flag) for adaptive pollingAfter explore agents report back, validate every finding yourself.
For each candidate optimization:
file.ahk lines X–Y" with actual code quoted. Include the --timing numbers that make this a bottleneck.--timing output, or infer it from code structure?Every optimization MUST pass a stability gate before inclusion in the plan. After implementing a change, run the full test suite 5 times consecutively:
.\tests\test.ps1 --live
.\tests\test.ps1 --live
.\tests\test.ps1 --live
.\tests\test.ps1 --live
.\tests\test.ps1 --live
All 5 runs must pass. A single failure means the optimization introduced flakiness and must be reverted or reworked. We are optimizing speed AND stability, not speed at the cost of reliability.
Section 1 — Phase bottlenecks (timing data from --timing):
| Phase | Bottleneck Test | Duration | Next Slowest | Gap | Splittable? |
|---|---|---|---|---|---|
| Phase 2 | test_live_core.ahk | 8.2s | test_live_features.ahk 3.1s | 5.1s | Yes — groups A and B are independent |
Section 2 — Process reuse opportunities:
| File | Lines | Current | Optimization | Estimated Savings |
|---|---|---|---|---|
test_foo.ahk | 42–60 | Launches own store | Reuse store from test_bar | ~1.5s |
Section 3 — Sleep-to-polling conversions:
| File | Line | Current | Replacement | Risk |
|---|---|---|---|---|
test_foo.ahk | 88 | Sleep(500) | WaitForFlag(&ready) | Low — flag already exists |
Order by estimated time savings (largest first). Note cumulative impact on total suite duration.
Ignore any existing plans — create a fresh one.