query-builder
✓Convert natural language questions into SQL queries. Activates when users ask data questions in plain English like "show me users who signed up last week" or "find orders over $100".
Installation
SKILL.md
Convert natural language questions into SQL queries using the database schema.
Understand the Schema Before generating SQL, always check the table structure:
| "last week/month/year" | WHERE datecol >= DATESUB(NOW(), INTERVAL 1 WEEK) | | "more than X" / "greater than X" | WHERE col > X | | "top N" | ORDER BY col DESC LIMIT N | | "how many" | SELECT COUNT() | | "total" / "sum of" | SELECT SUM(col) | | "average" | SELECT AVG(col) | | "for each" / "by" | GROUP BY col |
Convert natural language questions into SQL queries. Activates when users ask data questions in plain English like "show me users who signed up last week" or "find orders over $100". Source: clidey/whodb.
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/clidey/whodb --skill query-builder- Source
- clidey/whodb
- Category
- {}Data Analysis
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is query-builder?
Convert natural language questions into SQL queries. Activates when users ask data questions in plain English like "show me users who signed up last week" or "find orders over $100". Source: clidey/whodb.
How do I install query-builder?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/clidey/whodb --skill query-builder Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/clidey/whodb
Details
- Category
- {}Data Analysis
- Source
- skills.sh
- First Seen
- 2026-02-01