ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

sql-check

Analyze SQL queries for performance and security issues

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/lxgicstudios/ai-sql-check
Or

SQL Checker

Paste your SQL, get performance tips and security warnings. Catches N+1s and injection risks.

Quick Start

npx ai-sql-check "SELECT * FROM users WHERE name LIKE '%john%'"

What It Does

  • Identifies performance issues
  • Flags SQL injection risks
  • Suggests missing indexes
  • Warns about N+1 queries

Usage Examples

# Check a query
npx ai-sql-check "SELECT * FROM orders WHERE status = 'pending'"

# Check from file
npx ai-sql-check --file ./queries/report.sql

# With schema for better analysis
npx ai-sql-check --file query.sql --schema ./schema.sql

Issues It Catches

  • SELECT * anti-pattern
  • Missing WHERE clause
  • Unindexed columns in WHERE
  • LIKE with leading wildcard
  • Cartesian joins
  • SQL injection patterns

Output Example

āš ļø Performance Issues:
- SELECT * returns unnecessary columns
- LIKE '%john%' can't use index

šŸ”’ Security Issues:
- None detected

šŸ’” Suggestions:
- Add index on users(name)
- Select only needed columns

Requirements

Node.js 18+. OPENAI_API_KEY required.

License

MIT. Free forever.


Built by LXGIC Studios

Metadata

Stars1601
Views1
Updated2026-02-27
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-lxgicstudios-ai-sql-check": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.