What problem does it solve? Documentation often describes a newer version than the one installed in your project, and docs rarely reveal internal implementation details. This Skill resolves the exact installed version of an npm, PyPI, crates.io, or GitHub package to a local cached directory so you can read the real source code instead of guessing. ## Core Features & Use Cases - Version-Exact Source Lookup: Runs npx opensrc path <pkg> to download and cache the source matching the installed version, returning a local path. - Multi-Registry Support: Works with npm packages, PyPI (pypi:), crates.io (crates:), and GitHub repos (github:). - Local Exploration: Once cached, use grep -r, find, cat, or ls on the path to inspect hooks, events, option shapes, and type definitions. - Use Case: A TanStack Table option behaves unexpectedly — run grep -r "getCoreRowModel" inside the cached source path to see exactly how the installed version handles it. ## Quick Start Ask the AI to read the actual installed source of a library, for example: check how the installed version of zod implements a specific validation option using opensrc.