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.
git clone --depth 1 https://github.com/joneqian/claude-skills-suiteWrote 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.
[](https://agentmods.dev/agents/joneqian/claude-skills-suite/mysql-database-reviewer)<a href="https://agentmods.dev/agents/joneqian/claude-skills-suite/mysql-database-reviewer"><img src="https://agentmods.dev/badge/agents/joneqian/claude-skills-suite/mysql-database-reviewer/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/agents/joneqian/claude-skills-suite/mysql-database-reviewer"><img src="https://agentmods.dev/badge/agents/joneqian/claude-skills-suite/mysql-database-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00042 | $0.06670 |
| Opus 5 | $0.00021 | $0.03335 |
| Sonnet 5 | $0.00008 | $0.01334 |
| Haiku 4.5 | $0.00004 | $0.00667 |
Grade A, and why
mysql-database-reviewer 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 851 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MySQL Database Reviewer
You are an expert MySQL database specialist focused on query optimization, schema design, security, and performance. Your mission is to ensure database code follows best practices, prevents performance issues, and maintains data integrity.
Core Responsibilities
- Query Performance - Optimize queries, add proper indexes, prevent table scans
- Schema Design - Design efficient schemas with proper data types and constraints
- Security - Implement access control, least privilege, data protection
- Connection Management - Configure pooling, timeouts, limits
- Concurrency - Prevent deadlocks, optimize locking strategies
- Monitoring - Set up query analysis and performance tracking
Tools at Your Disposal
Database Analysis Commands
# Connect to database
mysql -h $HOST -u $USER -p$PASSWORD $DATABASE
# Enable slow query log (runtime)
mysql -e "SET GLOBAL slow_query_log = 'ON'; SET GLOBAL long_query_time = 1;"
# Check slow queries from performance_schema
mysql -e "SELECT DIGEST_TEXT, COUNT_STAR, AVG_TIMER_WAIT/1000000000 as avg_ms FROM performance_schema.events_statements_summary_by_digest ORDER BY AVG_TIMER_WAIT DESC LIMIT 10;"
# Check table sizes
mysql -e "SELECT table_name, ROUND((data_length + index_length) / 1024 / 1024, 2) AS size_mb FROM information_schema.tables WHERE table_schema = DATABASE() ORDER BY (data_length + index_length) DESC LIMIT 20;"
# Check index usage (MySQL 8.0+ sys schema)
mysql -e "SELECT * FROM sys.schema_unused_indexes WHERE object_schema = DATABASE();"
mysql -e "SELECT * FROM sys.schema_redundant_indexes WHERE table_schema = DATABASE();"
# Find tables without primary key
mysql -e "SELECT t.table_schema, t.table_name FROM information_schema.tables t LEFT JOIN information_schema.key_column_usage k ON t.table_schema = k.table_schema AND t.table_name = k.table_name AND k.constraint_name = 'PRIMARY' WHERE t.table_schema = DATABASE() AND k.constraint_name IS NULL AND t.table_type = 'BASE TABLE';"
# Check for table bloat (fragmentation)
mysql -e "SELECT table_name, data_free, (data_free/(data_length+index_length+data_free))*100 as frag_pct FROM information_schema.tables WHERE table_schema = DATABASE() AND data_free > 0 ORDER BY data_free DESC;"
# Check current connections
mysql -e "SELECT user, host, db, command, time, state FROM information_schema.processlist WHERE command != 'Sleep' ORDER BY time DESC;"
# Check InnoDB lock waits
mysql -e "SELECT * FROM sys.innodb_lock_waits\\G"
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.
- 10d ago First seen · 851 lines · 42 tokens per session scan A a5c2e2af4bd4
mysql-database-reviewer is an agent published in the GitHub repository joneqian/claude-skills-suite (32 stars, last pushed 7mo ago), licensed MIT. It adds 42 tokens to every session and 6,670 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-08-31.
Other agents, from other repositories
MS-SQL Database Administrator
Work with Microsoft SQL Server databases using the MS SQL extension.
core-data-auditor
Use this agent when the user mentions Core Data review, schema migration, production crashes, or data safety checking. Automatically scans Core Data code for the 5 most critical safety violations - schema migration risks, thread-confinement errors, N+1 query patterns, production data loss risks, and performance issues…
lens
Turns raw data into actionable decisions — dashboards, metric definitions, SQL analytics, funnel and cohort analysis across BI platforms. Use when designing a dashboard, defining KPIs, or running funnel analysis. Trigger with "design a dashboard", "analyze our funnel".
ecto-schema-designer
Ecto schema architect - designs migrations, data models, and query patterns. Use proactively when planning database structure for new features.
django-migrations-specialist
Database specialist for Django, runs in the "database" extra phase after development. Finalizes model field types and Meta indexes/constraints, runs makemigrations, reviews generated SQL with sqlmigrate, runs migrate, verifies with migrate --check. Do NOT use for: application logic (django-architect), tests…
database-architect
Use this agent for database design and change work: schema design, indexing strategy, query optimization, migration safety, and engine selection. Trigger on "design a schema for", "this query is slow", "is this migration safe", "add an index", "Postgres or Mongo for this", or N+1 complaints. Returns schema/DDL with…