sql-query-generator
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):
More from sultanfarizbythen/skills
go-test-gen
Generate Go unit tests following project standards - table-driven tests with mockery mocks, explicit expectations with call counts, specific error objects, concrete structs. Use when writing unit tests for Go service layer or repository layer (NOT handler/API layer).
10go-code-review
Reviews Go backend PRs for bugs, potential bugs, anomalies, and redundant code. Specialized for Bythen repos (platform-svc, go-core) using wire DI, custom query builder, layered architecture (handler/service/repository). Use when reviewing Go PRs, diffs, or code changes.
10create-devops-task
Creates draft tasks on the Bythen Devops GitHub Project board (https://github.com/orgs/tanookiai/projects/2/views/1). Always assigns novahariyabythen. Use when asked to add tasks, to-dos, or action items to the devops board.
5update-scientia-ip
Update the Scientia WiFi IP whitelist in Jenkins. Ensures WiFi connection, disconnects VPN, captures the current public IP, connects OpenVPN, triggers the Jenkins `change-ip-wifi-scientia` job with the captured IP, then disconnects VPN. Use when your WiFi IP has changed and you need to regain Scientia access.
5go-pr-description
>
4be-jenkins-deploy
Deploy a backend (BE) branch to a non-production Jenkins job and notify when done. Use this skill whenever the user says "deploy to staging", "deploy to jenkins", "trigger jenkins build", "deploy branch", "push to jenkins", or any variation of deploying/releasing a backend service via Jenkins CI/CD. Also trigger when the user asks to redeploy or check a Jenkins deployment in progress. Do NOT use this skill if the user mentions "prod", "production", or "beta" — those environments require manual confirmation and are out of scope.
4