What problem does it solve? Agent Host debug log exports contain many heterogeneous files (events.jsonl, AHP JSONL transport logs, agenthost.log, copilot-logs, renderer logs) with no obvious starting point. This Skill orients you to the bundle structure, explains what each file records, and guides correlation across layers so you can find the root cause of a reported symptom. ## Core Features & Use Cases - Safe Bundle Extraction: Uses a hardened Python extractor that validates zip structure, rejects symlinks, encrypted entries, path traversal, and oversized archives before unpacking to a temp directory. - File-to-Symptom Mapping: Explains which log file to start with based on the symptom, such as events.jsonl for turn behavior, usage.jsonl for token/credit questions, ahp/.jsonl for client-server ordering, and agenthost.log for host failures. - Cross-Layer Correlation: Documents correlation fields like session ID, turnId, interactionId, JSON-RPC request id, and AHP serverSeq to follow one operation across client, transport, host, and SDK layers. - Use Case: A user reports a failed Copilot session. Extract the ah-logs zip, locate the turnId in events.jsonl, trace the matching AHP request/response, and confirm the host-side error in agenthost.log. ## Quick Start Extract the attached ah-logs zip with the bundled script and analyze events.jsonl to find why the session failed around the reported timestamp.