| name | dolt |
| description | Use this skill when the user wants a SQL database with Git-style version control — branch tables, diff schemas, merge data changes, or clone/fork datasets like a Git repository. |
dolt Plugin
Git for data — a MySQL-compatible SQL database you can fork, clone, branch, merge, push, and pull. Version-control tabular data with familiar Git workflows.
Installation
curl -L https://github.com/dolthub/dolt/releases/latest/download/install.sh | bash
brew install dolt
Basic Usage
dolt init
dolt sql
dolt sql -q "SELECT * FROM my_table"
dolt status
dolt add .
dolt commit -m "Add initial data"
dolt branch feature
dolt checkout feature
dolt diff
dolt merge main
Remote Workflows
dolt clone dolthub/my-org/my-database
dolt remote add origin dolthub/my-org/my-database
dolt push origin main
dolt pull origin main
Usage Examples
- "Create a versioned SQL database for this dataset"
- "Show me the diff between branches"
- "Query this table and commit the changes"
- "Clone a Dolt database from DoltHub"
SuperCLI
sc dolt _ _ sql -q "SHOW TABLES"
sc plugins learn dolt