db-migration — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited db-migration (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
!ls prisma/ migrations/ alembic/ alembic.ini db/migrate/ knexfile.* flyway.conf sequelize* typeorm* drizzle.config.* 2>/dev/null !ls package.json 2>/dev/null && cat package.json 2>/dev/null | grep -E "prisma|knex|sequelize|typeorm|drizzle|kysely|mikro-orm" | head -5 !ls requirements.txt pyproject.toml 2>/dev/null && cat requirements.txt pyproject.toml 2>/dev/null | grep -iE "alembic|django|sqlalchemy|tortoise" 2>/dev/null | head -5 !ls go.mod 2>/dev/null && cat go.mod 2>/dev/null | grep -E "goose|migrate|atlas|ent" | head -5
!find . -path "*/migrations/*" -o -path "*/migrate/*" -o -path "*/prisma/migrations/*" -o -path "*/db/migrate/*" 2>/dev/null | grep -v node_modules | tail -10
Data Loss Risk Assessment:
#### For Prisma (Node.js)
npx prisma migrate dev --name <description>Update schema.prisma first, then generate.
#### For Alembic (Python/SQLAlchemy)
alembic revision --autogenerate -m "<description>"#### For Django
python manage.py makemigrations --name <description>#### For Rails ActiveRecord
rails generate migration <Description>#### For Knex/Sequelize Create migration file manually following existing patterns.
#### For Go (goose/migrate) Create SQL files with up/down sections.
#### For Raw SQL Generate separate UP and DOWN files.
UP migration must include:
DOWN migration must include:
For the affected tables, recommend indexes based on:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.