What problem does it solve? AI agents often rely on stale model memory when working with third-party APIs, libraries, and frameworks, producing outdated imports, deprecated config, and wrong assumptions. This Skill enforces a docs-first discipline so answers and code are grounded in current official documentation. ## Core Features & Use Cases - Docs-First Triggers: Defines explicit conditions (version-sensitive APIs, auth, billing, migrations, deprecations) that require reading docs before coding. - Authoritative Source Hierarchy: Prioritizes local repo docs and specs, then official product docs, changelogs, and package registry version checks over blog posts or memory. - Required Workflow: A seven-step process from identifying the exact surface to verifying with typechecks or tests and citing the docs used. - Use Case: When asked to add Stripe webhooks or stream responses with an AI SDK, the agent first web-searches the current official docs, verifies the latest package version, and implements against the documented contract. ## Quick Start Ask the agent to add a third-party integration like Tailwind or Stripe webhooks and require it to check the current official docs before writing any code.