From syntaqlite
Parse SQLite SQL with syntaqlite CLI and inspect AST as text tree or JSON. Debug syntax, view parse trees, analyze query structure.
npx claudepluginhub lalitmaganti/claude-code-plugin --plugin syntaqliteThis skill uses the workspace's default tool permissions.
Parse SQLite SQL and display the abstract syntax tree (AST) 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.
Parse SQLite SQL and display the abstract syntax tree (AST) using the syntaqlite CLI.
# Print AST from a file
syntaqlite parse query.sql
# Print AST from stdin
echo "SELECT 1 + 2 FROM t" | syntaqlite parse
# Parse an inline expression
syntaqlite parse -e "SELECT 1"
# Output as JSON
syntaqlite parse -o json query.sql
-e, --expression <SQL> — parse an inline SQL expression instead of files-o, --output <FORMAT> — output format (default: text)text — Human-readable indented AST tree (default)json — Machine-readable JSON ASTtext output for quick inspection and json for programmatic use.