This library currently ships with three executable files: `highlight-query`, `lint-query` and `tokenize-query`. I propose that the three files should be combined into a single executable file called `sql-parser`. ```diff -lint-query --query "SELECT 1" +sql-parser --query "SELECT 1" ``` ```diff -lint-query --query "SELECT 1" +sql-parser --lint --query "SELECT 1" ``` ```diff -highlight-query --query "SELECT 1" +sql-parser --highlight --query "SELECT 1" ``` ```diff -tokenize-query --query "SELECT 1" +sql-parser --tokenize --query "SELECT 1" ``` I think that `highlight-query`, `lint-query` and `tokenize-query` should be removed only in version 7.0.0.