What problem does it solve? AI-generated framework code often relies on stale training data, producing deprecated APIs and outdated patterns that break against current library versions. This Skill forces every framework-specific decision to be verified against official documentation before implementation. ## Core Features & Use Cases - Stack Detection: Reads dependency files like package.json, composer.json, requirements.txt, go.mod, Cargo.toml, or Gemfile to identify exact framework versions before writing code. - Documentation-Grounded Implementation: Fetches the specific official docs page for the feature being built, follows documented patterns, and avoids deprecated APIs. - Source Citation: Adds full-URL citations in code comments and conversation so every non-trivial decision is verifiable by the user. - Use Case: When building a React 19 form, the Skill detects the version from package.json, fetches react.dev docs for useActionState, implements the modern pattern instead of manual useState loading flags, and cites the source. ## Quick Start Ask the agent to implement a framework-specific feature using source-driven development so it checks the official docs for your installed versions and cites its sources.