sql-development

sql-development is a skill for Codex from PracticalSwan/agent-skills. It costs 47 tokens per session (1,893 once invoked), scanned A, original, MIT.

A guide for writing SQL, the language used to query and manage databases, and for working with Microsoft SQL Server and other common databases.

In plain words
What is it for?
Use it to write queries and stored procedures, design schemas, tune SQL Server performance, manage backups, and configure database security.
Why use it?
It helps avoid slow queries, unsafe concurrency behavior, and database changes that work only in simple cases.

Skill for Codex

Written for Codex: reads ~/.codex or $CODEX_HOME. Also seen: mentions subagents; mentions Claude Code; mentions Codex.

Good fit Use it to write queries and stored procedures, design schemas, tune SQL…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/practicalswan/agent-skills/sql-development
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add PracticalSwan/agent-skills --skill sql-development
Clone the repo
git clone --depth 1 https://github.com/PracticalSwan/agent-skills

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for sql-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/practicalswan/agent-skills/sql-development.svg)](https://agentmods.dev/skills/practicalswan/agent-skills/sql-development)
Your own site
<a href="https://agentmods.dev/skills/practicalswan/agent-skills/sql-development"><img src="https://agentmods.dev/badge/skills/practicalswan/agent-skills/sql-development.svg" alt="Measured on agentmods" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,893 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00047 $0.01893
Opus 5 $0.00023 $0.00946
Sonnet 5 $0.00009 $0.00379
Haiku 4.5 $0.00005 $0.00189

Measured today against content hash 4ef8f4990bd4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

sql-development scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

sql-development/SKILL.md · 231 lines

How it starts

The opening of the file, as written. The whole thing — 231 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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

-- 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

Read the full file on GitHub · 231 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today Changed 4ef8f4990bd4
  2. 3d ago First seen · 231 lines · 47 tokens per session scan A 369e10f58216

Subscribe to this mod's changes

sql-development is a skill published in the GitHub repository PracticalSwan/agent-skills (13 stars, last pushed yesterday), licensed MIT. It adds 47 tokens to every session and 1,893 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.