Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
addyosmani avatar

Source Driven Development

  • 13.7k installs
  • 80.7k repo stars
  • Updated July 26, 2026
  • addyosmani/agent-skills

source-driven-development is an agent skill that grounds framework code decisions in official documentation with user-visible citations.

About

The source-driven-development skill requires every framework-specific code decision to be backed by official documentation rather than implementation from memory. Training data goes stale, APIs get deprecated, and best practices evolve, so the skill ensures users receive code they can trust with traceable authoritative sources. Use when building boilerplate or patterns that will propagate across a project, when the user asks for verified or documented implementation, or when framework-recommended approaches matter for forms, routing, data fetching, state management, or auth. Skip for version-agnostic edits like renaming variables, fixing typos, or pure logic unrelated to framework APIs. Also skip when the user explicitly prioritizes speed over verification. The workflow emphasizes looking up official docs, citing sources visible to the user, and avoiding outdated patterns. Use when correctness depends on current framework documentation.

  • Every framework decision must cite official documentation.
  • Avoid implementing framework APIs from stale training memory.
  • Targets forms, routing, data fetching, state, and auth patterns.
  • Skip for version-agnostic refactors and pure logic changes.
  • User-visible source citations for verifiable implementation.

Source Driven Development by the numbers

  • 13,674 all-time installs (skills.sh)
  • +2,141 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #33 of 1,901 Documentation skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

source-driven-development capabilities & compatibility

Capabilities
official documentation lookup requirement · user visible source citation · framework pattern verification · stale pattern avoidance guidance
Use cases
documentation · api development
From the docs

What source-driven-development says it does

Every framework-specific code decision must be backed by official documentation.
SKILL.md
Don't implement from memory — verify, cite, and let the user see your sources.
SKILL.md
npx skills add https://github.com/addyosmani/agent-skills --skill source-driven-development

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs13.7k
repo stars80.7k
Security audit2 / 3 scanners passed
Last updatedJuly 26, 2026
Repositoryaddyosmani/agent-skills

How do I implement framework features using current official docs instead of outdated training patterns?

Ground every framework implementation decision in official documentation with verifiable citations instead of stale training data.

Who is it for?

Developers who want authoritative, source-cited framework implementations they can verify.

Skip if: Skip for trivial refactors or when the user explicitly wants speed over doc verification.

When should I use this skill?

User wants documented verified implementation or framework best-practice code with sources.

What you get

Framework code with cited official documentation backing each API and pattern choice.

  • Source-cited code
  • Documentation reference links

Files

SKILL.mdMarkdownGitHub ↗

Source-Driven Development

Overview

Every framework-specific code decision must be backed by official documentation. Don't implement from memory — verify, cite, and let the user see your sources. Training data goes stale, APIs get deprecated, best practices evolve. This skill ensures the user gets code they can trust because every pattern traces back to an authoritative source they can check.

When to Use

  • The user wants code that follows current best practices for a given framework
  • Building boilerplate, starter code, or patterns that will be copied across a project
  • The user explicitly asks for documented, verified, or "correct" implementation
  • Implementing features where the framework's recommended approach matters (forms, routing, data fetching, state management, auth)
  • Reviewing or improving code that uses framework-specific patterns
  • Any time you are about to write framework-specific code from memory

When NOT to use:

  • Correctness does not depend on a specific version (renaming variables, fixing typos, moving files)
  • Pure logic that works the same across all versions (loops, conditionals, data structures)
  • The user explicitly wants speed over verification ("just do it quickly")

The Process

DETECT ──→ FETCH ──→ IMPLEMENT ──→ CITE
  │          │           │            │
  ▼          ▼           ▼            ▼
 What       Get the    Follow the   Show your
 stack?     relevant   documented   sources
            docs       patterns

Step 1: Detect Stack and Versions

Read the project's dependency file to identify exact versions:

package.json    → Node/React/Vue/Angular/Svelte
composer.json   → PHP/Symfony/Laravel
requirements.txt / pyproject.toml → Python/Django/Flask
go.mod          → Go
Cargo.toml      → Rust
Gemfile         → Ruby/Rails

State what you found explicitly:

STACK DETECTED:
- React 19.1.0 (from package.json)
- Vite 6.2.0
- Tailwind CSS 4.0.3
→ Fetching official docs for the relevant patterns.

If versions are missing or ambiguous, ask the user. Don't guess — the version determines which patterns are correct.

Step 2: Fetch Official Documentation

Fetch the specific documentation page for the feature you're implementing. Not the homepage, not the full docs — the relevant page.

Source hierarchy (in order of authority):

PrioritySourceExample
1Official documentationreact.dev, docs.djangoproject.com, symfony.com/doc
2Official blog / changelogreact.dev/blog, nextjs.org/blog
3Web standards referencesMDN, web.dev, html.spec.whatwg.org
4Browser/runtime compatibilitycaniuse.com, node.green

Not authoritative — never cite as primary sources:

  • Stack Overflow answers
  • Blog posts or tutorials (even popular ones)
  • AI-generated documentation or summaries
  • Your own training data (that is the whole point — verify it)

Be precise with what you fetch:

BAD:  Fetch the React homepage
GOOD: Fetch react.dev/reference/react/useActionState

BAD:  Search "django authentication best practices"
GOOD: Fetch docs.djangoproject.com/en/6.0/topics/auth/

After fetching, extract the key patterns and note any deprecation warnings or migration guidance.

When official sources conflict with each other (e.g. a migration guide contradicts the API reference), surface the discrepancy to the user and verify which pattern actually works against the detected version.

Step 3: Implement Following Documented Patterns

Write code that matches what the documentation shows:

  • Use the API signatures from the docs, not from memory
  • If the docs show a new way to do something, use the new way
  • If the docs deprecate a pattern, don't use the deprecated version
  • If the docs don't cover something, flag it as unverified

When docs conflict with existing project code:

CONFLICT DETECTED:
The existing codebase uses useState for form loading state,
but React 19 docs recommend useActionState for this pattern.
(Source: react.dev/reference/react/useActionState)

Options:
A) Use the modern pattern (useActionState) — consistent with current docs
B) Match existing code (useState) — consistent with codebase
→ Which approach do you prefer?

Surface the conflict. Don't silently pick one.

Step 4: Cite Your Sources

Every framework-specific pattern gets a citation. The user must be able to verify every decision.

In code comments:

// React 19 form handling with useActionState
// Source: https://react.dev/reference/react/useActionState#usage
const [state, formAction, isPending] = useActionState(submitOrder, initialState);

In conversation:

I'm using useActionState instead of manual useState for the
form submission state. React 19 replaced the manual
isPending/setIsPending pattern with this hook.

Source: https://react.dev/blog/2024/12/05/react-19#actions
"useTransition now supports async functions [...] to handle
pending states automatically"

Citation rules:

  • Full URLs, not shortened
  • Prefer deep links with anchors where possible (e.g. /useActionState#usage over /useActionState) — anchors survive doc restructuring better than top-level pages
  • Quote the relevant passage when it supports a non-obvious decision
  • Include browser/runtime support data when recommending platform features
  • If you cannot find documentation for a pattern, say so explicitly:
UNVERIFIED: I could not find official documentation for this
pattern. This is based on training data and may be outdated.
Verify before using in production.

Honesty about what you couldn't verify is more valuable than false confidence.

Common Rationalizations

RationalizationReality
"I'm confident about this API"Confidence is not evidence. Training data contains outdated patterns that look correct but break against current versions. Verify.
"Fetching docs wastes tokens"Hallucinating an API wastes more. The user debugs for an hour, then discovers the function signature changed. One fetch prevents hours of rework.
"The docs won't have what I need"If the docs don't cover it, that's valuable information — the pattern may not be officially recommended.
"I'll just mention it might be outdated"A disclaimer doesn't help. Either verify and cite, or clearly flag it as unverified. Hedging is the worst option.
"This is a simple task, no need to check"Simple tasks with wrong patterns become templates. The user copies your deprecated form handler into ten components before discovering the modern approach exists.

Red Flags

  • Writing framework-specific code without checking the docs for that version
  • Using "I believe" or "I think" about an API instead of citing the source
  • Implementing a pattern without knowing which version it applies to
  • Citing Stack Overflow or blog posts instead of official documentation
  • Using deprecated APIs because they appear in training data
  • Not reading package.json / dependency files before implementing
  • Delivering code without source citations for framework-specific decisions
  • Fetching an entire docs site when only one page is relevant

Verification

After implementing with source-driven development:

  • [ ] Framework and library versions were identified from the dependency file
  • [ ] Official documentation was fetched for framework-specific patterns
  • [ ] All sources are official documentation, not blog posts or training data
  • [ ] Code follows the patterns shown in the current version's documentation
  • [ ] Non-trivial decisions include source citations with full URLs
  • [ ] No deprecated APIs are used (checked against migration guides)
  • [ ] Conflicts between docs and existing code were surfaced to the user
  • [ ] Anything that could not be verified is explicitly flagged as unverified

Related skills

How it compares

Pick source-driven-development over framework-specific skills when the priority is documentation-verified correctness across multiple libraries rather than deep single-framework recipes.

FAQ

What does source-driven-development require?

source-driven-development requires verifying every framework-specific decision against official documentation before implementation. The agent must cite authoritative sources so the developer can audit each pattern directly.

When should source-driven-development activate?

source-driven-development activates when building with any framework or library where correctness matters. Training data goes stale as APIs deprecate, so the skill replaces memory-based coding with verified, cited patterns.

Is Source Driven Development safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.