Skip to main content

Flux

Data

Database schemas and data pipelines that scale without surprises.

Data engineer who designs schemas with proper normalization, indexes, and constraints, then writes the zero-downtime migrations to get there safely. Builds ETL and ELT pipelines from extraction to loading with error handling and scheduling. Analyzes slow query execution plans and rewrites them. Audits running databases for freshness, schema drift, null rates, and orphaned records.

Read the field guide: The AI Data Engineer for Databases and Pipelines

Install Flux

Flux

Install Flux

1. Add to marketplace

$ claude plugin marketplace add tonone-ai/tonone

2. Install Flux

$ claude plugin install flux@tonone-ai

6 skills included.

Engineering team

Install the Engineering team

1. Add to marketplace

$ claude plugin marketplace add tonone-ai/tonone

2. Install the team

$ claude plugin install engineering-team@tonone-ai

15 agents included.

6 Skills

Everything Flux can do in your project

See it in action

The same task. Once without Tonone, once with Flux.

Task

Add a subscription_status column to the users table

Without TononeNo specialist
$ claude "Add subscription_status to users table"
Run this in your database console:
ALTER TABLE users
ADD COLUMN subscription_status VARCHAR(255);
Remember to back up first!
Note: this locks the table during migration.
With Flux/flux-migrate
$ /flux-migrate "Add subscription_status to users"
Zero-downtime plan for 2.4M row table:
Step 1 ADD COLUMN nullable, no default instant
Step 2 Backfill in batches of 1,000 ~8 min
Step 3 ADD CHECK constraint fast
Step 4 CREATE INDEX CONCURRENTLY ~12 min
Table lock on step 1: 180ms at this row count
✓ No downtime window required
✓ Index built without table lock
✓ Rollback plan documented at each step