소스 정보
- 저장소
- cwilliams5/Alt-Tabby
- 최근 소스 활동
- 2026년 3월 16일 06:36
- 감지된 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 flight-recorder명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Audit all lint-ignore suppressions for appropriateness and overuse
SOC 직업 분류 기준
SKILL.md 표시 중
| name | flight-recorder |
| description | Analyze flight recorder dumps to diagnose bugs from event traces |
| user-invocable | true |
| disable-model-invocation | true |
| argument-hint | [dump file or bug description] |
Analyze flight recorder dump(s) to diagnose a bug or anomaly. The user may describe the bug, specify files, or both. If invoked with no arguments, load the newest dump and use the USER NOTE in the dump as the bug description.
release/recorder/, pick the newest fr_*.txt by modification time. The USER NOTE inside the dump describes what happened.release/recorder/fr_*.txt files from today in release/recorder/release/recorder/ for a matching fileUse ls -t release/recorder/fr_*.txt to find files. Confirm resolved file(s) to the user before analyzing.
Each dump has four sections:
T-SSSSSS.mmm offsets relative to dump time.Read the USER NOTE and any user-provided description. Form a hypothesis about what category of bug this is:
ALT_PENDING with gINT_AltIsDown=0 is suspicious)gINT_BypassMode=1 when it shouldn't be?gGUI_PendingPhase non-empty (stuck async activation)?Use query_state.ps1 to extract the expected state machine branches for comparison with the event trace. Use query_messages.ps1 to identify WM_ message handlers/senders when Windows messages appear in the trace.
Read the event trace bottom-to-top (chronological order). Look for:
Complete sequences — A normal Alt-Tab is:
ALT_DN → TAB_DN → TAB_DECIDE → TAB_DECIDE_INNER(isAltTab=1) → STATE→ACTIVE → FREEZE → ALT_UP → QUICK_SWITCH → ACTIVATE_START → ACTIVATE_RESULT(success=1) → MRU_UPDATE → STATE→IDLE
Broken sequences — Where does the chain deviate? Common patterns:
ALT_DN + ALT_UP with no TAB_DN = Tab was lost (check BYPASS mode)ACTIVATE_RESULT(success=0) = Windows rejected activation (check fg field)ACTIVATE_GONE = Window disappeared between selection and activationFOCUS_SUPPRESS during an Alt-Tab = MRU suppression interferedWS_SWITCH during an Alt-Tab = workspace changed mid-sessionTiming analysis — Calculate gaps between related events. Flag any gap > 50ms between keyboard events or > 100ms between state transitions.
Correlation with live items — Cross-reference hwnds in events with the LIVE ITEMS list. Are referenced windows still present? On the expected workspace?
When analyzing multiple dumps for the same bug:
Use query_events.ps1 <name_or_code> for structured event lookups — shows field meanings (d1-d4) and emitter functions. Use query_events.ps1 with no args for the full index. See docs/USING_RECORDER.md for analysis patterns and worked examples.
Present findings as:
If the cause is clear, suggest where in the code to look (reference the event type to its handler using the architecture knowledge). If uncertain, describe what additional information would help (e.g., "need a dump with DiagEventLog enabled to see the full WinEvent stream").