What problem does it solve?
It prevents incorrect or outdated framework-specific code by forcing every implementation choice to be verified against official documentation and cited with full URLs.
Core Features & Use Cases
- DETECT → FETCH → IMPLEMENT → CITE flow: identifies the exact stack/versions from dependency files, fetches the relevant official pages, implements the documented patterns, and requires citations for non-obvious decisions.
- Four-tier source hierarchy: prioritizes official documentation first, then official blog/changelog/release notes, then web standards, and finally compatibility references like caniuse.
- Version-aware stack detection & guardrails: reads dependency manifests (package.json/pyproject.toml/requirements.txt/go.mod/Cargo.toml/Gemfile/etc.) and asks the user when versions are missing or ambiguous instead of guessing.
- Vendor authority deferral: when the task touches known domains (Langfuse, Neon, Railway, Supabase/Postgres patterns, Claimable Postgres), it defers to the corresponding authority skills rather than fetching generic sources.
- Mandatory full-URL citation rule: requires deep links with anchors where possible and explicitly flags anything that cannot be verified as unverified.
Quick Start
Tell your agent: "Before implementing this framework-specific feature, detect my stack from package.json or pyproject.toml, fetch the exact official docs pages, implement the documented approach, and include full-URL citations for each non-obvious decision."