Skill
parse
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.
Format SQL files using the syntaqlite formatter. Use when the user wants to format, reformat, or pretty-print SQL code.
$ npx -y skills add LalitMaganti/syntaqlite --skill format --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/formatContext preview
The summary Claude sees to decide when to auto-load this skill.
Format SQL files using the syntaqlite formatter. Use when the user wants to format, reformat, or pretty-print SQL code.
name: format description: Format SQL files using the syntaqlite formatter. Use when the user wants to format, reformat, or pretty-print SQL code.
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
A fast parser, formatter, static analyzer, and language server for SQLite SQL.
Repo: LalitMaganti/syntaqlite
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.
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.