Tip: Give Agents Dependency Internals With `rg "<symbol>" $(opensrc path <pkg>)`
opensrc·medium signal
When an agent is reasoning about a third-party package, types and docs often aren't enough. Pipe opensrc into ripgrep — `rg "parse" $(opensrc path zod)` — to search the package's actual implementation on demand, fetching and caching the source on first use. It's a far lighter alternative to vendoring or cloning dependencies just so the agent can read how they really work.