skills$openclaw/query-optimizer
lxgicstudios7.4k

by lxgicstudios

query-optimizer – OpenClaw Skill

query-optimizer is an OpenClaw Skills integration for coding workflows. Optimize SQL and Prisma queries using AI. Use when your queries are slow and you need performance help.

7.4k stars6.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namequery-optimizer
descriptionOptimize SQL and Prisma queries using AI. Use when your queries are slow and you need performance help. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/query-optimizer
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/query-optimizer
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains query-optimizer in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
967 B
index.ts
1.3 KB
_meta.json
288 B
package-lock.json
46.2 KB
package.json
613 B
README.md
282 B
SKILL.md
2.5 KB
tsconfig.json
211 B
SKILL.md

name: query-optimizer description: Optimize SQL and Prisma queries using AI. Use when your queries are slow and you need performance help.

Query Optimizer

Slow queries killing your app? Paste your SQL or Prisma code and get optimization suggestions. Index recommendations, query rewrites, N+1 detection. The stuff that takes hours to figure out manually.

One command. Zero config. Just works.

Quick Start

npx ai-query-optimize "SELECT * FROM users WHERE email LIKE '%@gmail.com'"

What It Does

  • Analyzes SQL and Prisma queries for performance issues
  • Suggests missing indexes with CREATE INDEX statements
  • Rewrites queries to avoid common antipatterns
  • Detects N+1 problems in ORM code
  • Explains why changes improve performance

Usage Examples

# Optimize a SQL query
npx ai-query-optimize "SELECT * FROM orders WHERE created_at > NOW() - INTERVAL '30 days'"

# Analyze a Prisma query file
npx ai-query-optimize queries.ts

# Check for N+1 issues
npx ai-query-optimize src/api/users.ts --check-n-plus-one

# Get index recommendations
npx ai-query-optimize schema.sql --suggest-indexes

Best Practices

  • Include your schema - Context about tables and existing indexes helps a lot
  • Measure before and after - EXPLAIN ANALYZE doesn't lie
  • Test with real data - Optimizations that work on 100 rows might fail on 1M
  • Don't optimize prematurely - Fix actual slow queries, not theoretical ones

When to Use This

  • Database queries are showing up in your APM as slow
  • Users are complaining about loading times
  • You inherited a codebase with questionable query patterns
  • Learning SQL optimization and want to understand the patterns

Part of the LXGIC Dev Toolkit

This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.

Find more:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Requires OPENAI_API_KEY environment variable.

export OPENAI_API_KEY=sk-...
npx ai-query-optimize --help

How It Works

Parses your query or code file to understand the data access patterns. Applies database optimization knowledge to identify issues like missing indexes, expensive operations (LIKE with leading wildcards), and ORM antipatterns. Provides specific, actionable fixes.

License

MIT. Free forever. Use it however you want.

README.md

ai-query-optimize

Optimize SQL and Prisma queries using AI.

Install

npm install -g ai-query-optimize

Usage

npx ai-query-optimize ./src/queries/
npx ai-query-optimize ./prisma/

Setup

export OPENAI_API_KEY=sk-...

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Requires OPENAI_API_KEY environment variable. ```bash export OPENAI_API_KEY=sk-... npx ai-query-optimize --help ```

FAQ

How do I install query-optimizer?

Run openclaw add @lxgicstudios/query-optimizer in your terminal. This installs query-optimizer into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/query-optimizer. Review commits and README documentation before installing.