Install
openclaw skills install axiom-sql-formatterFormats SQL queries with uppercase keywords, consistent indentation, aligned clauses, and preserved string literals for improved readability.
openclaw skills install axiom-sql-formatterVersion: 0.1.2 Axioma Tools
Formats SQL queries with consistent style without parsing or executing them.
python3 axiom_sql_formatter.py query.sql
python3 axiom_sql_formatter.py --indent 2 query.sql
from axiom_sql_formatter import format_sql
formatted = format_sql('select a,b from t where x=1')
# 'SELECT a, b\nFROM t\nWHERE x = 1'
| Check | Status |
|---|---|
| Unit tests | 20+ cases |
| Performance | <100ms |
| Security | Pure stdlib, no injection |
| Determinism | Byte-to-byte stable |
| License | Apache-2.0 |
Last updated: 2026-06-14