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

Flutter Drift

  • 580 installs
  • 105 repo stars
  • Updated May 1, 2026
  • madteacher/mad-agents-skills

flutter-drift is a Claude Code skill (version 1.1) that correctly implements, fixes, migrates, and tests local SQLite persistence with Drift in Flutter applications for developers who need type-safe reactive database lay

About

flutter-drift is a Claude Code skill (version 1.1) for implementing, reviewing, migrating, testing, and debugging Drift persistence in Flutter apps. It covers SQLite via drift_flutter, type-safe Dart queries, generated tables, StreamBuilder or Riverpod StreamProvider reactive UI, write operations, transactions, schema migrations with build_runner and drift_dev make-migrations, web assets, isolate sharing, and local database testing across mobile, web, and desktop. Developers reach for flutter-drift when tasks mention drift, local database storage, schemaVersion bumps, CRUD streams, or Flutter-specific SQLite setup failures.

  • Follows a strict inspect-first workflow: always checks pubspec.yaml, build.yaml, state management, and target platforms
  • Handles full Drift lifecycle: tables, type-safe queries, drift_flutter, reactive streams, write operations, transactions
  • Supports Flutter-specific integrations including StreamBuilder, Riverpod StreamProvider, web assets, and local database
  • Uses only current Drift APIs and prefers the app's existing architecture and naming conventions
  • Manages dependencies safely via dart pub add instead of hardcoded versions

Flutter Drift by the numbers

  • 580 all-time installs (skills.sh)
  • +14 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #702 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/madteacher/mad-agents-skills --skill flutter-drift

Add your badge

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

Listed on Skillselion
Installs580
repo stars105
Last updatedMay 1, 2026
Repositorymadteacher/mad-agents-skills

How do you implement Drift SQLite in Flutter?

Correctly implement, fix, migrate, or test local SQLite persistence with Drift in Flutter applications.

Who is it for?

Flutter developers implementing local SQLite with Drift, schema migrations, Riverpod or StreamBuilder reactive queries, and cross-platform persistence.

Skip if: React Native or native iOS SwiftData projects, remote-only REST backends without local SQLite, or teams avoiding build_runner code generation.

When should I use this skill?

User mentions Drift, Flutter local database, SQLite CRUD, schemaVersion migrations, build_runner, or drift_dev make-migrations.

What you get

Drift database classes, generated table definitions, migration scripts, reactive query streams, and local database tests for Flutter.

  • Drift database schema
  • migration files
  • reactive query streams

By the numbers

  • Skill version 1.1

Files

SKILL.mdMarkdownGitHub ↗

Flutter Drift

Use this skill to add or repair Drift-based local persistence in Flutter apps. The skill is an operating workflow: inspect the target app first, choose only the relevant reference files, implement with current Drift APIs, and validate generated code.

Core Workflow

1. Inspect the app before editing:

  • Check pubspec.yaml, existing database files, build.yaml, state management package, target platforms, and tests.
  • Prefer the app's current architecture and naming over the examples in this skill.

2. Add or verify dependencies with package commands instead of hardcoding versions:

  • dart pub add drift drift_flutter path_provider dev:drift_dev dev:build_runner
  • Add provider or flutter_riverpod only when the app already uses it or the user asks for that integration.

3. Create or update the database entry point:

  • Define tables in Dart or .drift files.
  • Add the tables to @DriftDatabase.
  • Open Flutter databases with driftDatabase from package:drift_flutter/drift_flutter.dart unless the project needs a custom executor.

4. Keep Drift calls scoped to the database object:

  • Use database.select(database.todoItems), database.into(database.todoItems), database.update(database.todoItems), and database.delete(database.todoItems) from widgets, services, and repositories.
  • Use bare select(todoItems) only inside GeneratedDatabase subclasses or DatabaseAccessor classes where the methods and table getters are in scope.

5. Generate code after changing Drift declarations:

  • Run dart run build_runner build.
  • Treat generator errors as blockers, not optional cleanup.

6. For schema changes in an existing app, use Drift's guided migration workflow:

  • Configure drift_dev databases in build.yaml.
  • Run dart run drift_dev make-migrations before and after schema changes as needed.
  • Bump schemaVersion, write generated step-by-step migrations, and run generated migration tests.

7. Validate before finishing:

  • Run dart format on edited Dart files.
  • Run flutter analyze or dart analyze for the package.
  • Run targeted tests, including generated migration tests when migrations changed.

Resource Routing

  • Read references/setup.md when adding Drift, opening a database, configuring web support, or sharing a database across isolates.
  • Read references/tables.md when defining tables, columns, defaults, keys, indexes, constraints, generated columns, or strict tables.
  • Read references/queries.md when implementing selects, filters, sorting, pagination, joins, aggregations, subqueries, custom columns, or unions.
  • Read references/writes.md when implementing inserts, updates, deletes, upserts, companions, transactions, or batch operations.
  • Read references/streams.md when implementing reactive Drift streams, StreamBuilder, StreamProvider, custom select streams, table update listeners, or manual stream invalidation.
  • Read references/migrations.md when schemaVersion, existing user data, build.yaml, make-migrations, generated schema files, or migration tests are involved.
  • Read references/flutter-ui.md when wiring Drift data into Flutter widgets with Provider, Riverpod, StreamBuilder, search, filtering, pagination, or user-facing loading and error states.

Required API Rules

  • Do not call select(database.table) as a top-level function from a widget. Use database.select(database.table) outside database classes.
  • Do not use watch(...), todoUpdates(...), or notifyTableUpdates(...). Use customSelect(...).watch(), tableUpdates(...), and notifyUpdates(...).
  • Do not call delete(table).go(id). Add a where clause and then call go(), or use generated table extension helpers if the project already uses them.
  • Do not use batch.updateAll(...) or pass raw ids to batch.delete(...). Use batch.update(..., where: ...), batch.delete(...) with an insertable row, or batch.deleteWhere(...).
  • Do not mix Provider and Riverpod APIs. Provider.of<AppDatabase>(context) belongs to provider; Provider<AppDatabase>((ref) { ... }) and AsyncValue.when(...) belong to Riverpod.
  • Do not bump schemaVersion without a migration plan for existing databases.
  • Do not rely on raw SQLite writes when UI streams must update. Use Drift write APIs or call notifyUpdates with explicit TableUpdate metadata.

Fallbacks

  • If package downloads are blocked, update source files and leave exact dart pub add or flutter pub add commands for the user, then state that dependency resolution was not validated.
  • If a project cannot run build_runner, do not hand-write generated *.g.dart files. Fix source declarations and report the generator blocker.
  • If migration state is unclear, stop before changing schemaVersion; ask for the current released schema history or database files.
  • If web support is required but sqlite3.wasm and drift_worker.js are missing, add the code path and explicitly report the required web assets.

Validation Checklist

  • pubspec.yaml contains Drift runtime and generator dependencies.
  • Database files have valid part directives, table declarations, @DriftDatabase, constructor, and schemaVersion.
  • All query and write examples are scoped to the correct database/accessor context.
  • Generated code was rebuilt with build_runner.
  • Flutter UI examples handle loading, empty, error, and data states without treating AsyncValue as a List.
  • Migrations changed only with generated schema snapshots, step-by-step migration code, and tests.
  • flutter analyze or dart analyze passes for the edited package, or any remaining analyzer failure is reported with the blocker.

Related skills

FAQ

Which platforms does flutter-drift support?

flutter-drift covers Drift SQLite persistence across Flutter mobile, web, and desktop targets. It includes drift_flutter setup, web assets, isolate sharing, type-safe queries, and platform-specific local database testing.

How does flutter-drift handle schema migrations?

flutter-drift guides schemaVersion bumps, build_runner code generation, drift_dev make-migrations commands, transaction-safe writes, and dedicated migration tests to safely evolve Drift table definitions in Flutter apps.

Backend & APIsbackendintegrations

This week in AI coding

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

unsubscribe anytime.