postgres-performance
Installation
SKILL.md
PostgreSQL Performance Engineering
Problem Statement
Performance problems compound. A query that takes 50ms at 1K rows takes 5s at 100K rows. This skill covers patterns for building performant database interactions from the start and fixing performance issues.
Pattern: Query Optimization Workflow
Step 1: Identify Slow Queries
-- Enable pg_stat_statements (if not already)
CREATE EXTENSION IF NOT EXISTS pg_stat_statements;