What problem does it solve? When a Claude Code plugin injects skills based on tool calls, it is hard to know whether the right skills actually fired on real projects. This Skill audits vercel-plugin skill injection against real-world sessions, revealing pattern coverage gaps, dedup masking, and stale plugin caches. ## Core Features & Use Cases - Log-Based Tool Call Extraction: Parses JSONL conversation logs from ~/.claude/projects to extract Read, Edit, Write, and Bash tool calls with timestamps and working directories. - Direct Hook Matching Tests: Imports loadSkills and matchSkills from the plugin's hook pipeline to test matching in-process, avoiding slow per-call shell-outs. - Gap and Staleness Analysis: Identifies path pattern gaps, Bash pattern gaps, dedup masking, budget drops, and diffs between the installed plugin cache and the dev version. - Use Case: After noticing a Vercel deployment skill never triggered during a session, run the batch-match script against that session's JSONL log to see exactly which tool calls matched, which were deduped, and which patterns need to be added. ## Quick Start Ask the assistant to audit vercel-plugin skill injection on your project by analyzing the JSONL conversation log and reporting match coverage gaps.