BigHugger

Agent skills that run sql, that ask for Glob, in plugin format

A skill is a Markdown file that tells a coding agent how to do one job. We parse every one we can find — the frontmatter, the outline, the languages in its code blocks — so you can look for the one that fits instead of reading through a repository to find out.

69,865 skills from 9,574 repositories, last read 11 September 2026.

Skills declare what they need inconsistently: 58.8% name the languages they run, 11.2% list the tools they ask for, and 4.6% give themselves a category. Filtering narrows to the ones that said so, never to the ones that are.

  1. kafka-dlq-reviewlensesio/agentic-engineering-for-apache-kafka

    Review dead letter queue implementations for completeness using the Lenses MCP server. Checks DLQ topic existence, configuration, monitoring, metadata preservation, retry logic, re

    pluginsqlReadGrepGlob
  2. kafka-consumer-laglensesio/agentic-engineering-for-apache-kafka

    Analyse Kafka consumer group lag using the Lenses MCP server. Diagnoses lag causes (throughput bottlenecks, rebalancing, partition skew, stalled consumers) and suggests remediation

    pluginsqlReadGrepGlob
  3. databasexiaobei930/cc-best

    Database design, query optimization, migrations, and indexing. Use when designing schemas, writing queries, or managing migrations.

    pluginbashsqlReadWriteEdit+4 files
  4. pdlc-db-migratekanfu-panda/pdlc-skills

    数据库迁移管理

    pluginmarkdownsqlReadWriteEdit
  5. db-replicas-viewsHainrixz/claude-db

    Audit read-scaling correctness — read-your-writes consistency when reads are routed to replicas, and materialized-view staleness / refresh strategy. Module M17. Feeds the Performan

    pluginsqlReadGrepGlob
  6. db-types-precisionHainrixz/claude-db

    Audit column types and precision — money stored as float/double (severity 5), naive timestamp vs timestamptz/UTC, jsonb used to evade schema, enum-vs-lookup-table choice, and chars

    pluginsqlReadGrepGlob
  7. db-namingHainrixz/claude-db

    Audit naming conventions — inconsistent table/column casing and pluralization, ambiguous or reserved-word identifiers, untyped/opaque columns, inconsistent FK and boolean naming, a

    pluginsqlReadGrepGlob
  8. db-query-patternsHainrixz/claude-db

    Audit query-shape anti-patterns — SELECT *, structural N+1 (directional), OFFSET pagination vs keyset, and non-SARGable predicates that defeat indexes. Module M13. Feeds the Perfor

    pluginsqlReadGrepGlob
  9. db-keysHainrixz/claude-db

    Audit primary-key strategy — missing PK (severity 5), surrogate vs natural keys, UUIDv4 index fragmentation vs time-ordered UUIDv7/ULID/bigint, and int4/serial exhaustion on high-v

    pluginsqlReadGrepGlob
  10. db-storage-bloatHainrixz/claude-db

    Audit storage operability — VACUUM / autovacuum health and table-and-index bloat, transaction-ID wraparound risk (sev-5), and tombstone accumulation on wide-column stores. Module M

    pluginsqlReadGrepGlob
  11. db-indexingHainrixz/claude-db

    Audit index coverage for the query workload — composite index column order (ESR), covering and partial indexes, specialized types (GIN/GiST/BRIN, FTS, geo, JSONB-GIN), and foreign

    pluginsqlReadGrepGlob
  12. db-connection-poolingHainrixz/claude-db

    Audit connection management — serverless functions opening direct Postgres connections, transaction-mode pooler misuse (PgBouncer / Supabase / prepared statements), and pool sizing

    pluginsqlReadGrepGlob
  13. db-multitenancyHainrixz/claude-db

    Audit multi-tenant data isolation — tenant model fit (shared rows vs schema vs database), missing or unenforced tenant scoping, the tenant_id-leading composite index/key requiremen

    pluginsqlReadGrepGlob
  14. db-normalizationHainrixz/claude-db

    Audit relational schema normalization — 1NF through 3NF violations, repeating groups and CSV-in-a-column, partial and transitive functional dependencies, and the inverse trap of pr

    pluginsqlReadGrepGlob
  15. db-partitioning-shardingHainrixz/claude-db

    Audit horizontal scaling topology — declarative partitioning fit for large/time-series tables, hot-partition / skewed partition-key risk, and premature sharding that adds complexit

    pluginsqlReadGrepGlob
  16. db-defaults-generatedHainrixz/claude-db

    Audit column defaults and generated columns — application-side timestamps that should be DB defaults, non-deterministic or wrong defaults, derived values that should be GENERATED A

    pluginsqlReadGrepGlob
  17. db-referential-integrityHainrixz/claude-db

    Audit foreign-key integrity — missing FKs that allow orphan rows (financial/auth = severity 5), absent or unsafe ON DELETE/ON UPDATE actions, reference cycles, and composite-FK col

    pluginsqlReadGrepGlob
  18. db-index-hygieneHainrixz/claude-db

    Audit index bloat — exact-duplicate indexes, redundant indexes whose key is a prefix of another, and unused indexes that only cost write amplification and storage. Module M12. Feed

    pluginsqlReadGrepGlob
  19. db-security-accessHainrixz/claude-db

    Audit access control and data protection — Row-Level Security state, PII handling, encryption at-rest and in-transit (TLS / sslmode), and SQL-injection exposure from raw concatenat

    pluginsqlReadGrepGlob
  20. db-constraintsHainrixz/claude-db

    Audit data-integrity constraints — missing NOT NULL on required columns, absent CHECK constraints for domain rules, missing UNIQUE on natural keys, and the over-nullable UNIQUE tra

    pluginsqlReadGrepGlob
  21. db-temporal-historyHainrixz/claude-db

    Audit temporal and lifecycle modeling — soft-delete consistency and its uniqueness/query traps, presence and integrity of an audit/history trail, and retention / GDPR right-to-eras

    pluginsqlReadGrepGlob
  22. db-concurrencyHainrixz/claude-db

    Audit concurrency correctness — transaction isolation level, lost-update / read-modify-write races, queue-worker contention (SKIP LOCKED), and idempotency for key-value / document

    pluginsqlReadGrepGlob
  23. devteam-implementmichael-harris/devteam

    Execute implementation work - plans, sprints, tasks, or ad-hoc work.

    pluginbashjavascriptsqlyamlReadEditWrite
  24. devteam-statusmichael-harris/devteam

    Display system health, current progress, costs, and execution history.

    pluginbashsqlReadGlobGrep
  25. devteam-bugmichael-harris/devteam

    Fix a bug with structured diagnostic workflow. Uses interview to clarify details and Bug Council for complex issues.

    pluginbashjavascriptsqlyamlReadEditWrite
  26. postgistroykelly/claude-skills

    MANDATORY when working with geographic data, spatial queries, geometry operations, or location-based features - enforces PostGIS 3.6.1 best practices including ST_CoverageClean, SF

    pluginmarkdownsqlReadGrepGlob
  27. timescaledbtroykelly/claude-skills

    MANDATORY when working with time-series data, hypertables, continuous aggregates, or compression - enforces TimescaleDB 2.24.0 best practices including lightning-fast recompression

    pluginmarkdownsqlReadGrepGlob
  28. database-architecturetroykelly/claude-skills

    MANDATORY when designing schemas, writing migrations, creating indexes, or making architectural database decisions - enforces PostgreSQL 18 best practices including AIO, UUIDv7, te

    pluginmarkdownsqlReadGrepGlob
  29. postgres-rlstroykelly/claude-skills

    MANDATORY when touching auth tables, tenant isolation, RLS policies, or multi-tenant database code - enforces Row Level Security best practices and catches common bypass vulnerabil

    pluginbashmarkdownsqltypescriptReadGrepGlob

Browse all 69,865 skills200 at a time, grouped by owner. The list above is the skills with the highest standing; this is every one of them.

The whole corpus is one call away through the search API, or ask a question of it on the index itself.