mysql

A set of practices for designing MySQL databases and writing queries for them. MySQL is a widely used system for storing and retrieving structured application data.

In plain words
What is it for?
Use it to create tables, keys, indexes, and migrations, or to write, secure, and investigate the performance of MySQL queries.
Why use it?
It helps avoid slow queries, unsafe input handling, missing relationships, and database designs that are difficult to maintain.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/usrrname/cursorrules/mysql
Any agent
npx skills add usrrname/cursorrules --skill mysql
Clone the repo
git clone --depth 1 https://github.com/usrrname/cursorrules

Made for: Claude Code, Codex.

Per session 10 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 364 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00010 $0.00364
Opus 5 $0.00005 $0.00182
Sonnet 5 $0.00002 $0.00073
Haiku 4.5 $0.00001 $0.00036

Measured 2d ago against content hash e18783258f08, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

mysql 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 2d ago.

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.

.claude/skills/mysql/SKILL.md · 76 lines

What it actually says

MySQL Skill

Write efficient, secure MySQL queries and database schemas.

When to Use

  • Designing database schemas
  • Writing SQL queries
  • Optimizing query performance
  • Managing database migrations

Critical Rules

Schema Design

  • Use appropriate data types
  • Define primary keys on all tables
  • Add indexes for frequently queried columns
  • Use foreign keys for referential integrity
  • Normalize to 3NF, denormalize when needed for performance

Query Writing

  • Use parameterized queries (never string concatenation)
  • SELECT only needed columns
  • Use EXPLAIN to analyze query performance
  • Avoid SELECT * in production
  • Use JOINs appropriately

Security

  • Never expose database credentials in code
  • Use connection pooling
  • Sanitize all user inputs
  • Grant least privilege access
  • Enable SSL/TLS for connections

Performance

  • Index foreign keys
  • Use EXPLAIN ANALYZE for optimization
  • Batch inserts when possible
  • Use transactions for multi-statement operations
  • Monitor slow query log

Examples

Good

-- Parameterized query
SELECT id, name, email 
FROM users 
WHERE status = ? AND created_at > ?;

-- Proper indexing
CREATE INDEX idx_user_status ON users(status, created_at);

Bad

-- String concatenation (SQL injection risk)
SELECT * FROM users WHERE name = '$userInput';

-- Missing LIMIT on large tables
SELECT * FROM logs;
  • /typescript - For database interface types
  • /laravel - Laravel database patterns
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. 2d ago First seen · 76 lines · 10 tokens per session scan A e18783258f08

Subscribe to this mod's changes

mysql is a skill published in the GitHub repository usrrname/cursorrules (10 stars, last pushed 4mo ago), licensed ISC. It adds 10 tokens to every session and 364 once invoked, about $0.0001 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-08-31.