Install
$ agentstack add skill-ashish7802-awesome-api-skills-mysql ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
MySQL Skill
> The world's most popular open source database.
Ecosystem Graph Preview
graph LR
mysql["mysql"]:::core
classDef core fill:#f9f,stroke:#333,stroke-width:4px;
drizzle -- "integrates with" --> mysql
mysql -- "extended by" --> planetscale
mysql -- "integrates with" --> prisma
mysql -- "alternative to" --> postgresql
postgresql -- "alternative to" --> mysql
prisma -- "integrates with" --> mysql
Recommended Next Skills
- [postgresql](/skills/postgresql) (Score: 0.93)
Why: Direct relationship, Both are Databases, Shared ecosystem (database), Can deploy to aws, Similar network profile
- [prisma](/skills/prisma) (Score: 0.73)
Why: Direct relationship, Both are Databases, Similar network profile
- [drizzle](/skills/drizzle) (Score: 0.72)
Why: Direct relationship, Both are Databases, Similar network profile
Quick Start
MySQL is highly optimized for read-heavy web workloads. The InnoDB storage engine provides robust ACID compliance.
docker run -d -p 3306:3306 -e MYSQL_ROOT_PASSWORD=secret mysql:8
Production Patterns
Index Optimizations
MySQL heavily relies on clustered indexes (the Primary Key). Always define an auto-incrementing integer or sequential UUID (UUID v7) as your primary key to prevent massive index fragmentation and page splits during high-volume inserts.
Architecture & Scaling
Replication
MySQL's asynchronous replication is the standard for scaling read traffic. Write to the Primary node, and read from Read Replicas, but ensure your application can handle the replication lag (milliseconds).
Error Recovery
Use EXPLAIN to diagnose slow queries. If MySQL is performing a 'filesort' or full table scan, you are missing a critical composite index.
Security Notes
Disable local_infile to prevent arbitrary file reading vulnerabilities. Ensure sql_mode includes STRICT_ALL_TABLES to prevent MySQL from silently truncating strings that exceed column lengths.
References
Why use this skill
Use this when your agent works with mysql — structured patterns beat pasted docs and prevent common hallucinations.
AI pitfalls
- Inventing column names or schema fields
- Using deprecated driver methods or wrong connection strings
- Omitting connection pooling or transaction boundaries
Production checklist
- [ ] Migrations version-controlled and applied via CI
- [ ] Connection limits and pooling configured
- [ ] Backups and restore procedure documented
Related skills
- [
planetscale](../planetscale/SKILL.md) — extended by - [
prisma](../prisma/SKILL.md) — integrates with - [
postgresql](../postgresql/SKILL.md) — alternative to
> Last Verified: 2026-07-02
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ashish7802
- Source: ashish7802/awesome-api-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.