From syntaqlite
Formats SQLite SQL using syntaqlite CLI formatter. Handles files, stdin, globs, in-place edits; options for width, indent, case. Use for pretty-printing or checking SQL.
npx claudepluginhub lalitmaganti/claude-code-plugin --plugin syntaqliteThis skill uses the workspace's default tool permissions.
Format SQLite SQL using the syntaqlite CLI formatter.
Guides Payload CMS config (payload.config.ts), collections, fields, hooks, access control, APIs. Debugs validation errors, security, relationships, queries, transactions, hook behavior.
Builds scalable data pipelines, modern data warehouses, and real-time streaming architectures using Spark, dbt, Airflow, Kafka, and cloud platforms like Snowflake, BigQuery.
Builds production Apache Airflow DAGs with best practices for operators, sensors, testing, and deployment. For data pipelines, workflow orchestration, and batch job scheduling.
Format SQLite SQL using the syntaqlite CLI formatter.
# Format a file (print to stdout)
syntaqlite fmt query.sql
# Format in-place
syntaqlite fmt -i query.sql
# Format from stdin
echo "SELECT a,b FROM t WHERE x=1" | syntaqlite fmt
# Format multiple files via glob
syntaqlite fmt -i "**/*.sql"
# Format with options
syntaqlite fmt -w 120 -k upper query.sql
-e, --expression <SQL> — format an inline SQL expression instead of files-w, --line-width <N> — max line width (default: 80)-t, --indent-width <N> — spaces per indentation level (default: 2)-k, --keyword-case <upper|lower> — keyword casing (default: upper)-i, --in-place — overwrite files in place--check — check if files are formatted (exit 1 if not)--semicolons <true|false> — append semicolons (default: true)-i to write in place.-i.--check in CI to verify formatting without modifying files.