Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/vmkteam/claude-plugins/pgmigratornpx skills add vmkteam/claude-plugins --skill pgmigratorgit clone --depth 1 https://github.com/vmkteam/claude-pluginsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00030 | $0.01590 |
| Opus 5 | $0.00015 | $0.00795 |
| Sonnet 5 | $0.00006 | $0.00318 |
| Haiku 4.5 | $0.00003 | $0.00159 |
Grade A, and why
pgmigrator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 166 lines — stays where its author put it; the contents beside it link to each section on GitHub.
pgmigrator — SQL миграции PostgreSQL
pgmigrator (https://github.com/vmkteam/pgmigrator) — CLI для инкрементальных миграций PostgreSQL. Отслеживает выполненные миграции в таблице public.pgMigrations.
Установка
brew tap vmkteam/tap
brew install pgmigrator
# или
make tools # в проектах vmkteam
Docker: vmkteam/pgmigrator на Docker Hub.
Конфигурация
Обычно лежит рядом с миграциями, например docs/patches/pgmigrator.toml:
[App]
Table = "public.pgMigrations"
StatementTimeout = "5s"
FileMask = "\\d{4}-\\d{2}-\\d{2}-\\S+.sql"
[Database]
Addr = "localhost:5432"
User = "postgres"
Database = "dbname"
Password = "postgres"
PoolSize = 1
ApplicationName = "pgmigrator"
Расположение миграций
Типичная структура — docs/patches/:
docs/patches/
├── pgmigrator.toml
├── 2024/ # старые, по годам
├── 2025/
│ ├── 2025-01-14-dummy.sql
│ └── 2025-02-10-IX_orders-MANUAL.sql
├── 2026-01-29-rfmUsers.sql # транзакционная
├── 2026-02-01-add-index-NONTR.sql # нетранзакционная
└── 2026-02-03-add-partitions-MANUAL.sql # ручная
Формат файлов
Имя: YYYY-MM-DD-<description>.sql. Применяются в алфавитном порядке.
| Суффикс | Поведение |
|---|---|
.sql |
Транзакционная (BEGIN/COMMIT автоматически) |
-NONTR.sql |
Без транзакции (для CREATE INDEX CONCURRENTLY) |
-MANUAL.sql |
Игнорируется pgmigrator (ручное применение DBA) |
MANUAL — для операций которые нельзя автоматизировать: партиции, тяжёлые индексы на больших таблицах, миграции с downtime.
Команды
| Команда | Описание |
|---|---|
pgmigrator plan |
Показать миграции к применению |
pgmigrator run |
Применить все новые |
pgmigrator run 1 |
Применить N миграций |
pgmigrator dryrun |
Тест с откатом |
pgmigrator skip |
Пометить выполненными без запуска |
pgmigrator last |
Последние применённые |
pgmigrator verify |
Проверить целостность (MD5) |
pgmigrator redo |
Перезапустить последнюю |
pgmigrator init |
Создать пример конфига |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 166 lines · 30 tokens per session scan A 71fb995b9265
pgmigrator is a skill published in the GitHub repository vmkteam/claude-plugins (7 stars, last pushed 4mo ago), licensed MIT. It adds 30 tokens to every session and 1,590 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
db-repair
Auto-fix gbrain's Postgres access so the brain stays available. When any gbrain command or MCP tool result carries a GBRAINDBACCESS marker (or an operator reports the brain database is down), run the hardcoded gbrain db-repair ladder: diagnose, apply the safe tier, verify. The action is ALWAYS the hardcoded command …
postgres-pro
Use when optimizing PostgreSQL queries, configuring replication, or implementing advanced database features. Invoke for EXPLAIN analysis, JSONB operations, extension usage, VACUUM tuning, performance monitoring.
postgres-database-migration
Use this skill for planning, testing, and safely executing PostgreSQL schema migrations — especially when working with production data or shared databases. Trigger when user asks to: Test a schema migration before applying it to production Add, remove, or rename columns safely on a live table Change a column's data…
setup-timescaledb-hypertables
Use this skill when creating database schemas or tables for Timescale, TimescaleDB, TigerData, or Tiger Cloud, especially for time-series, IoT, metrics, events, or log data. Use this to improve the performance of any insert-heavy table. Trigger when user asks to: Create or design SQL schemas/tables AND…
claimable-postgres
Provision instant temporary Postgres databases via Claimable Postgres by Neon (neon.new) with no login, signup, or credit card. Supports REST API, CLI, and SDK. Use when users ask for a quick Postgres environment, a throwaway DATABASEURL for prototyping/tests, or "just give me a DB now". Triggers include: "quick…
dsql
Build with Aurora DSQL — manage schemas, execute queries, handle migrations, diagnose query plans, diagnose cluster performance, load data, and develop applications with a serverless, distributed SQL database. Covers IAM auth, multi-tenant patterns, MySQL-to-DSQL and PostgreSQL-to-DSQL schema conversion, FK…