What problem does it solve? Convex APIs, component exports, and CLI flags change between versions, and writing code from stale memory produces build errors and wrong API calls. This Skill pins the installed Convex version and fetches current documentation so generated code matches the actual package in the project. ## Core Features & Use Cases - Version Pinning: Reads the installed convex and @convex-dev/* component versions from package.json or node_modules before trusting any documentation. - Freshness Hierarchy: Uses a served docs tool or MCP search first, then fetches docs pages as markdown or pinned READMEs, falling back to general web search only as a last resort. - Ground-Truth Verification: Checks the installed package's exports and .d.ts files in node_modules to confirm an export or signature exists for the exact version in use. - Use Case: A build fails because a Convex component export 'should' exist but doesn't. Instead of guessing a different spelling, the Skill re-pins the version, fetches the current API, and corrects the code. ## Quick Start Check the installed Convex version and fetch the current docs for the component API I am about to use before writing any code.