db-query-analyzer

Solid

Analyze database query performance with execution plans and index recommendations

AI & Automation 1,160 stars 71 forks Updated today MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Database Query Analyzer Skill ## Overview Analyzes database query performance including execution plan analysis, index recommendations, slow query identification, and optimization suggestions. ## Capabilities - Query execution plan analysis - Index recommendation - Slow query identification - Query optimization suggestions - Table scan detection - Join optimization analysis - Support for PostgreSQL, MySQL, SQL Server ## Target Processes - performance-optimization - data-architecture-design ## Input Schema ```json { "type": "object", "required": ["queries"], "properties": { "queries": { "type": "array", "items": { "type": "object", "properties": { "sql": { "type": "string" }, "name": { "type": "string" } } } }, "database": { "type": "string", "enum": ["postgresql", "mysql", "sqlserver", "oracle"], "default": "postgresql" }, "connectionString": { "type": "string", "description": "Database connection string (optional, for live analysis)" }, "options": { "type": "object", "properties": { "analyzeExplain": { "type": "boolean", "default": true }, "suggestIndexes": { "type": "boolean", "default": true }, "slowQueryThreshold": { "type": "number", "default": 1000, "description": "Slow query threshold in milliseconds" } ...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

API & Backend Listed

query-optimizer

Analyze and optimize SQL queries for better performance and efficiency.

335 Updated today
aiskillstore
AI & Automation Solid

sql-query-optimizer

Analyzes and optimizes SQL queries across different data warehouse platforms (Snowflake, BigQuery, Redshift, Databricks) with platform-specific recommendations.

1,160 Updated today
a5c-ai
AI & Automation Listed

database-optimizer

Use when investigating slow queries, analyzing execution plans, or optimizing database performance. Invoke for index design, query rewrites, configuration tuning, partitioning strategies, lock contention resolution.

2 Updated today
zacklecon
AI & Automation Solid

analyzing-query-performance

This skill enables Claude to analyze and optimize database query performance. It activates when the user discusses query performance issues, provides an EXPLAIN plan, or asks for optimization recommendations. The skill leverages the query-performance-analyzer plugin to interpret EXPLAIN plans, identify performance bottlenecks (e.g., slow queries, missing indexes), and suggest specific optimization strategies. It is useful for improving database query execution speed and resource utilization.

2,274 Updated today
jeremylongshore
API & Backend Solid

database-optimizer

Optimizes database queries and improves performance across PostgreSQL and MySQL systems. Use when investigating slow queries, analyzing execution plans, or optimizing database performance. Invoke for index design, query rewrites, configuration tuning, partitioning strategies, lock contention resolution.

9,537 Updated 1 weeks ago
Jeffallan