sql-development
T-SQL, stored procedures, and MS SQL Server DBA practices. Use when writing SQL queries, designing schemas, tuning SQL Server performance, managing backups, configuring security, or using SQL Server 2025+ features.
What this skill does
# SQL Development > Optimized for current PostgreSQL, MySQL, and SQL Server releases plus migration-first database workflows. Comprehensive SQL development guidelines combining SQL coding standards, stored procedure generation, and MS SQL Server DBA best practices. - Leverage native parallel subagent dispatch and 200k+ context windows where available. ## Anti-Patterns - Using `SELECT *` in production queries: It hides contract drift and pulls more data than the caller needs. - Writing non-SARGable predicates: Functions on indexed columns turn otherwise cheap queries into table scans. - Ignoring transaction and lock behavior: Correct SQL needs both logical correctness and concurrency safety. ## Verification Protocol Before claiming "skill applied successfully": 1. Pass/fail: The SQL Development implementation names the target runtime, framework version, and affected files. 2. Pass/fail: Build, lint, test, or equivalent local validation is run for the changed surface. 3. Pass/fail: Edge cases for errors, dependency drift, and environment differences are addressed or explicitly out of scope. 4. Pressure-test scenario: Apply the workflow to a change that passes happy-path tests but fails one boundary condition. 5. Success metric: Zero untested success claims; every implementation claim maps to a command or artifact. ## Before and After Example ```sql -- Before SELECT * FROM Orders WHERE YEAR(created_at) = 2026; -- After SELECT order_id, customer_id, created_at, total_amount FROM Orders WHERE created_at >= '2026-01-01' AND created_at < '2027-01-01'; ``` Uses explicit columns and a SARGable date range so indexes can do their work. ## Activation Conditions Use symptom -> action triggers: when one matches, apply this skill and verify with the protocol below. - Writing SQL queries and stored procedures - Designing database schemas and table structures - Working with MS SQL Server as a DBA - Performance tuning and query optimization - Database backup, restore, and security configuration - SQL Server 2025+ feature adoption and migration --- ## Part 1: Database Schema Design ### Table Naming - All table names in singular form - All column names in singular form ### Required Columns - All tables must have a primary key column named `id` - All tables must have `created_at` for creation timestamp - All tables must have `updated_at` for last update timestamp ### Constraints - All tables must have a primary key constraint - All foreign key constraints must have a name - All foreign key constraints defined inline - All foreign keys must have `ON DELETE CASCADE` - All foreign keys must have `ON UPDATE CASCADE` - All foreign keys must reference the primary key of the parent table --- ## Part 2: SQL Coding Style ### Formatting - Uppercase for SQL keywords (`SELECT`, `FROM`, `WHERE`) - Consistent indentation for nested queries - Comments to explain complex logic - Break long queries into multiple lines - Organize clauses: `SELECT`, `FROM`, `JOIN`, `WHERE`, `GROUP BY`, `HAVING`, `ORDER BY` ### Query Structure - Use explicit column names, never `SELECT *` - Qualify column names with table alias when using multiple tables - Prefer JOINs over subqueries when possible - Include `LIMIT`/`TOP` clauses to restrict result sets - Use appropriate indexing for frequently queried columns - Avoid functions on indexed columns in `WHERE` clauses --- ## Part 3: Stored Procedure Standards ### Naming Conventions - Prefix with `usp_` - Use PascalCase: `usp_GetCustomerOrders` - Include plural noun for multiple records: `usp_GetProducts` - Include singular noun for single record: `usp_GetProduct` ### Parameter Handling - Prefix parameters with `@` - Use camelCase: `@customerId` - Provide default values for optional parameters - Validate parameter values before use - Document parameters with comments - Required parameters first, optional later ### Structure - Include header comment block with description, parameters, return values - Return standardized error codes/messages - Return result sets with consistent column order - Use `OUTPUT` parameters for returning status information - Prefix temporary tables with `tmp_` - Include `SET NOCOUNT ON` for data-modifying procedures --- ## Part 4: Security Best Practices ### Query Security - Parameterize all queries to prevent SQL injection - Use prepared statements for dynamic SQL - Avoid embedding credentials in SQL scripts - Proper error handling without exposing system details - Avoid dynamic SQL in stored procedures ### Transaction Management - Explicitly begin and commit transactions - Use appropriate isolation levels - Avoid long-running transactions that lock tables - Use batch processing for large data operations --- ## Part 5: MS SQL Server DBA ### Tooling - Install and enable `ms-mssql.mssql` VS Code extension for full database management - Use official Microsoft documentation for reference and troubleshooting ### DBA Responsibilities - Database creation and configuration - Backup and restore strategies - Performance tuning and index optimization - Security management and auditing - Upgrades and compatibility planning (SQL Server 2025+) ### Best Practices - Focus on tool-based database inspection over codebase analysis - Highlight deprecated/discontinued features in SQL Server 2025+ - Encourage secure, auditable, performance-oriented solutions - Reference official docs for troubleshooting - Warn about deprecated features and suggest alternatives --- ## Troubleshooting | Issue | Solution | |-------|----------| | Slow queries | Check execution plan, add indexes, optimize JOINs | | Deadlocks | Reduce transaction scope, consistent lock ordering | | Missing data | Verify CASCADE rules, check transaction isolation | | Permission errors | Review GRANT/REVOKE statements, check role membership | | Connection issues | Verify firewall rules, connection strings, SQL auth settings | --- ## Common Pitfalls - Using `SELECT *` in production queries: It hides contract drift and pulls more data than the caller actually needs. - Writing non-SARGable predicates: Functions on indexed columns turn otherwise cheap queries into table scans. - Skipping transaction and lock analysis: Correct SQL needs both logical correctness and concurrency safety. ## References & Resources ### Documentation - [T-SQL Patterns](./references/tsql-patterns.md) — MERGE, CTEs, PIVOT, JSON operations, window functions, and error handling - [Performance Tuning](./references/performance-tuning.md) — Execution plans, index tuning, Query Store, and anti-patterns ### Scripts - [Stored Procedure Template](./scripts/stored-proc-template.sql) — Production-ready SP template with TRY/CATCH, pagination, and dynamic sorting ### Examples - [Schema Design Example](./examples/schema-design-example.md) — Recipe Management System with 10 tables, stored procedures, and migrations --- <!-- PORTABILITY:START --> ## Cross-Client Portability This skill is written to stay usable across GitHub Copilot, Claude Code, Codex, and Gemini CLI. - GitHub Copilot: keep the folder in a Copilot-visible skill or plugin path, or wrap the workflow as project instructions if the host does not support portable skill folders directly. - Claude Code: keep the folder in a local skills directory or a compatible plugin or marketplace source. - Codex: install or sync the folder into `$CODEX_HOME/skills/<skill-name>` and restart Codex after major changes. - Gemini CLI: this repository generates a project command named `/skills:sql-development` from this skill. Rebuild commands with `python scripts/export-gemini-skill.py sql-development` and then run `/commands reload` inside Gemini CLI. <!-- PORTABILITY:END --> <!-- MCP:START --> ## MCP Availability And Fallback Preferred MCP Server: None required - Fallback prompt: "Use the SQL Development skill without MCP. Rely on the local `SKILL.md`, bundled references or scripts, and manual verification. Show the exact commands, eviden
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.