Generate and run realistic seed data for the project's database. Use when the user says "seed the database", "add some fake data", "I need test data", or the app looks empty during a demo.
Set up a data ingestion or sync pipeline — from source to destination, with transformation. Supports Airbyte, custom ETL scripts, and webhook-based ingestion. Use when the user says "sync data from X", "pull data into the DB", "set up a pipeline", or "ingest from API".
Audit the app for real-time performance bottlenecks and fix them — slow queries, missing indexes, N+1 problems, cache misses, and polling that should be websockets. Use when the user says "make it faster", "it's slow under load", "optimize the DB", or "add real-time updates".