What problem does it solve? AI-generated code often relies on stale training data, producing deprecated APIs, outdated patterns, and hallucinated function signatures that break against current framework versions. This Skill grounds every framework-specific implementation decision in fetched official documentation, so the code you receive is verifiable and current. ## 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 any code. - Documentation-First Implementation: Fetches the specific official docs page for the feature being built, follows documented API signatures, and avoids deprecated patterns flagged in migration guides. - Source Citation: Annotates code comments and explanations with full URLs and quoted passages so every non-trivial decision can be independently verified. - Use Case: You ask for a React 19 form handler. Instead of a manual useState/isPending pattern from memory, the Skill detects React 19.1.0 in package.json, fetches the useActionState reference, implements the documented pattern, and cites react.dev with the relevant anchor link. ## Quick Start Ask the assistant to implement a framework-specific feature using source-driven development so every pattern is verified against the official docs for your detected versions.