format
Format SQL files using the syntaqlite formatter. Use when the user wants to format, reformat, or pretty-print SQL code.
Validate SQL and report diagnostics using syntaqlite. Use when the user wants to check SQL for errors, lint SQL files, or verify correctness against a schema.
$ npx -y skills add LalitMaganti/syntaqlite --skill validate --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/validateContext preview
The summary Claude sees to decide when to auto-load this skill.
Validate SQL and report diagnostics using syntaqlite. Use when the user wants to check SQL for errors, lint SQL files, or verify correctness against a schema.
name: validate description: Validate SQL and report diagnostics using syntaqlite. Use when the user wants to check SQL for errors, lint SQL files, or verify correctness against a schema.
Validate SQLite SQL and report diagnostics (errors, warnings) using the syntaqlite CLI.
# Validate a file syntaqlite analyze query.sql # Validate from stdin echo "SELECT * FORM t" | syntaqlite analyze # Validate an inline expression syntaqlite analyze -e "SELECT 1 + " # Validate against a schema syntaqlite analyze --schema schema.sql query.sql # Validate multiple files via glob syntaqlite analyze "**/*.sql" # Validate with multiple schema files syntaqlite analyze --schema "migrations/*.sql" --schema extra.sql query.sql
A fast parser, formatter, static analyzer, and language server for SQLite SQL.
Repo: LalitMaganti/syntaqlite
Format SQL files using the syntaqlite formatter. Use when the user wants to format, reformat, or pretty-print SQL code.
Parse SQL and inspect the AST using syntaqlite. Use when the user wants to see the parse tree, debug SQL syntax, or understand how a query is structured.