What problem does it solve? Answering questions about .NET library contents normally requires digging through documentation sites or decompilers. This Skill lets you query types, members, extension methods, and version diffs directly from the command line across NuGet packages, platform libraries, and local .dll/.nupkg files. ## Core Features & Use Cases - API Discovery and Inspection: List types in a package with type, inspect member signatures and docs with member, and search by glob pattern with find. - Version Diffing: Compare API surfaces between package versions with diff, which classifies breaking versus additive changes — ideal for fixing code broken by upgrades. - Relationship Queries: Find extension methods with extensions, interface implementors with implements, and walk type hierarchies with depends. - Use Case: A build breaks after upgrading System.CommandLine. Run diff --package System.CommandLine@old..new --oneline to triage changes, then member Command --package System.CommandLine@new --oneline to see the new API surface. ## Quick Start Ask the AI to use dotnet-inspect to show the API surface of JsonSerializer in the System.Text.Json package.