What problem does it solve? AI-generated code often relies on stale training data, producing deprecated APIs and outdated patterns that break against current framework versions. This Skill grounds every framework-specific implementation decision in official documentation so the code you receive is verifiable and current. ## Core Features & Use Cases - Stack Detection: Reads dependency files like package.json, pyproject.toml, go.mod, or Gemfile to identify exact framework versions before writing code. - Documentation-Grounded Implementation: Fetches the relevant official docs page, follows documented patterns, avoids deprecated APIs, and surfaces conflicts between docs and existing code. - Source Citation: Adds full-URL citations in code comments and conversation, and explicitly flags anything that could not be verified. - Use Case: When building a React 19 form, the Skill fetches react.dev, implements useActionState per the current docs instead of a stale useState pattern, and cites the exact reference page. ## Quick Start Ask the agent to implement a framework-specific feature using source-driven development so every pattern is verified against the official documentation for your detected versions.