sql-query-generator

Installation
SKILL.md

SQL Query Generator

Generate safe, read-only SQL queries for databases and execute them using the Kalysta MCP server.

🚨 CRITICAL RULES

1. NEVER Start Query with Comments:

  • CRITICAL: Kalysta MCP server ONLY allows whitelisted keywords as query prefix
  • Whitelisted keywords: SELECT, WITH, SHOW, DESCRIBE, EXPLAIN
  • NEVER use -- or /* */ comments at the start of queries
  • Comments will cause "query must start with SELECT/WITH/SHOW/DESCRIBE/EXPLAIN" error
  • Put comments AFTER the SELECT/WITH clause, not before

GOOD:

SELECT id, name FROM users WHERE deleted_at IS NULL;

BAD (will fail):

Related skills

More from sultanfarizbythen/skills

Installs
10
First Seen
Mar 13, 2026