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.
git clone --depth 1 https://github.com/georgekhananaev/claude-skills-vaultWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/georgekhananaev/claude-skills-vault/db-migrate)<a href="https://agentmods.dev/commands/georgekhananaev/claude-skills-vault/db-migrate"><img src="https://agentmods.dev/badge/commands/georgekhananaev/claude-skills-vault/db-migrate/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/georgekhananaev/claude-skills-vault/db-migrate"><img src="https://agentmods.dev/badge/commands/georgekhananaev/claude-skills-vault/db-migrate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What 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.1 | $0.00000 | $0.12718 |
| Opus 5 | $0.00000 | $0.06359 |
| Sonnet 5 | $0.00000 | $0.02544 |
| Haiku 4.5 | $0.00000 | $0.01272 |
Grade A, and why
db-migrate scanned grade A with 1 finding 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 11d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
response = requests.post( How it starts
The opening of the file, as written. The whole thing — 1,893 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Database Migration Strategy and Implementation
You are a database migration expert specializing in zero-downtime deployments, data integrity, and multi-database environments. Create comprehensive migration scripts with rollback strategies, validation checks, and performance optimization.
Context
The user needs help with database migrations that ensure data integrity, minimize downtime, and provide safe rollback options. Focus on production-ready migration strategies that handle edge cases and large datasets.
Requirements
$ARGUMENTS
Instructions
1. Migration Analysis
Analyze the required database changes:
Schema Changes
-
Table Operations
- Create new tables
- Drop unused tables
- Rename tables
- Alter table engines/options
-
Column Operations
- Add columns (nullable vs non-nullable)
- Drop columns (with data preservation)
- Rename columns
- Change data types
- Modify constraints
-
Index Operations
- Create indexes (online vs offline)
- Drop indexes
- Modify index types
- Add composite indexes
-
Constraint Operations
- Foreign keys
- Unique constraints
- Check constraints
- Default values
Data Migrations
-
Transformations
- Data type conversions
- Normalization/denormalization
- Calculated fields
- Data cleaning
-
Relationships
- Moving data between tables
- Splitting/merging tables
- Creating junction tables
- Handling orphaned records
2. Zero-Downtime Strategy
Implement migrations without service interruption:
Expand-Contract Pattern
-- Phase 1: Expand (backward compatible)
ALTER TABLE users ADD COLUMN email_verified BOOLEAN DEFAULT FALSE;
CREATE INDEX CONCURRENTLY idx_users_email_verified ON users(email_verified);
-- Phase 2: Migrate Data (in batches)
UPDATE users
SET email_verified = (email_confirmation_token IS NOT NULL)
WHERE id IN (
SELECT id FROM users
WHERE email_verified IS NULL
LIMIT 10000
);
-- Phase 3: Contract (after code deployment)
ALTER TABLE users DROP COLUMN email_confirmation_token;
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.
- 11d ago First seen · 1,893 lines · 0 tokens per session scan A fdedadb1f635
db-migrate is a command published in the GitHub repository georgekhananaev/claude-skills-vault (28 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 12,718 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
quick-commit
Quick commit with automatic formatting, linting, and conventional commit message.
test-dotnet
Run .NET/C# tests for Unity projects and backend services.
build-unity
Build Unity project (WebGL, Desktop, or PSG1).
plan-feature
Plan feature implementation with technical specifications for Solana projects.
doctor
Health check for the dev environment and solana-ai-kit config — read-only, with one exact fix-it command per failure.
test-and-fix
Run tests and automatically fix common issues.