db-performance-watchlist

Installation
SKILL.md

DB Performance Watchlist

Monitor database performance and prevent regressions.

Key Performance Metrics

// performance-metrics.ts
export interface DBMetrics {
  // Query Performance
  slowQueries: {
    threshold: number; // ms
    count: number;
    queries: SlowQuery[];
  };

  // Connection Pool
  connections: {
    active: number;
Related skills

More from patricio0312rev/skills

Installs
97
GitHub Stars
38
First Seen
Jan 24, 2026