Skip to main content
Exécutez n'importe quel Skill dans Manus
en un clic
Dépôt GitHub

rolepod-dblab

rolepod-dblab contient 5 skills collectées depuis nuttaruj, avec une couverture métier par dépôt et des pages de détail sur le site.

skills collectés
5
Stars
0
mis à jour
2026-05-29
Forks
0
Couverture métier
1 catégories métier · 100% classifié
explorateur de dépôts

Skills dans ce dépôt

db-explain
Développeurs de logiciels

Run EXPLAIN [ANALYZE] on a query and return the parsed plan with flags for sequential scans and probable missing indexes — performance evidence, not a guess. Read-only. Use when a query is slow or before shipping a query-heavy path.

2026-05-29
db-introspect
Développeurs de logiciels

Read a live Postgres schema — tables, columns, types, primary keys, indexes, and the foreign-key graph — into a normalized snapshot for planning and debugging. Read-only. Use before changing data access, writing a migration, or reasoning about how tables relate.

2026-05-29
db-migrate-verify
Développeurs de logiciels

Detect schema drift between SQLAlchemy models and the live Postgres — missing/extra columns, nullability mismatches, type mismatches. Reflects the models via a Python sidecar and diffs in TS. Read-only. Use as a pre-ship gate or when "the code says one thing, the DB says another".

2026-05-29
db-query
Développeurs de logiciels

Assert live database state as verify-phase evidence. Run a read-only query and check it against an expected exists / row_count / value, returning a structured PASS/FAIL — not raw rows. Use to prove a row exists, a count matches, or a value landed after a change.

2026-05-29
db-write
Développeurs de logiciels

Mutate data behind a transaction guard — preview a statement inside a held transaction (no commit), inspect the impact, then confirm to COMMIT or rollback to discard. The only dblab skill that writes. Use for any INSERT/UPDATE/DELETE that must be safe and reviewable.

2026-05-29