All authors
pumarogie avatar

Claude Skills by pumarogie

github.com/pumarogie
6 skillsA× 60 installs3 views
Designing Postgres SchemasA

Guides Postgres schema design when creating tables, choosing keys and data types, defining foreign keys and deletion behavior, modeling JSONB, or planning retention for unbounded event and log data.

databasessqlexpress
0
2
Managing Postgres ConnectionsA

Guides Postgres connection pooling when applications add instances, connection churn or storms appear, max_connections is exhausted, PgBouncer is introduced, or pgxpool and server pool limits must be sized safely.

databasesgosql
0
2
Postgres Advanced PatternsA

Guides production Postgres patterns when implementing multi-worker job queues and leases, batching writes, managing unbounded time-series partitions, or moving data between large live tables.

databasesgosql
0
2
Tuning Autovacuum And BloatA

Guides autovacuum and bloat remediation when dead tuples accumulate, write-heavy tables outgrow scale-factor defaults, vacuum falls behind, transaction-ID age approaches freeze limits, or tables and indexes consume disproportionate disk.

databasessqlapi
0
2
Writing Performant QueriesA

Guides evidence-first Postgres query diagnosis when an API or database becomes slow, an expensive query must be found, EXPLAIN must be used safely, the planner ignores an index, statistics may be stale, or a filter-and-sort query needs an index.

databasessqlnode
0
2
Writing Safe MigrationsA

Guides Postgres migrations when altering large or live tables, adding indexes or constraints, backfilling columns, changing column types, or planning zero-downtime rollouts. Covers lock levels, lock_timeout, CREATE INDEX CONCURRENTLY, NOT VALID constraints, and expand-and-contract.

databasessqlapi
0
2