db-query-analyzer

Solid

Analyze database query performance with execution plans and index recommendations

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
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

Related Skills