From syntaqlite
Validates SQLite SQL syntax and schema using syntaqlite CLI. Reports diagnostics for files, globs, stdin, inline queries, or embedded SQL in Python/TypeScript.
npx claudepluginhub lalitmaganti/claude-code-plugin --plugin syntaqliteThis skill uses the workspace's default tool permissions.
Validate SQLite SQL and report diagnostics (errors, warnings) using the syntaqlite CLI.
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.
Validate SQLite SQL and report diagnostics (errors, warnings) using the syntaqlite CLI.
# Validate a file
syntaqlite validate query.sql
# Validate from stdin
echo "SELECT * FORM t" | syntaqlite validate
# Validate an inline expression
syntaqlite validate -e "SELECT 1 + "
# Validate against a schema
syntaqlite validate --schema schema.sql query.sql
# Validate multiple files via glob
syntaqlite validate "**/*.sql"
# Validate with multiple schema files
syntaqlite validate --schema "migrations/*.sql" --schema extra.sql query.sql
-e, --expression <SQL> — Validate an inline SQL expression instead of files--schema <FILE> — Schema DDL file to load before validation (repeatable, supports globs)--experimental-lang <LANG> — Extract embedded SQL from host language files (python, typescript)--schema, validation checks syntax only. With --schema, it also checks table/column references.