Ecto Migrator

ReviewAudited by ClawScan on May 1, 2026.

Overview

This is an instruction-only helper for generating Ecto database migrations, but users should review generated migrations because they can change or delete database structures or data.

This skill appears safe to install as an instruction-only migration helper. Before applying any generated migration, especially one that removes columns, changes constraints, updates rows, or uses cascading deletes, inspect the code and test it outside production.

Findings (1)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A generated migration could change schemas, cascade deletes, or update production data if the user applies it without review.

Why it was flagged

The skill can guide creation of migrations that remove columns or modify database rows. This is expected for an Ecto migration generator, but it is high-impact if applied to a real database.

Skill content
"Remove the legacy_id column from users" | `alter table(:users), remove :legacy_id` ... `UPDATE users SET role = 'member' WHERE role IS NULL`
Recommendation

Review generated migrations, test them on a copy or staging database, and confirm reversibility/backups before running them in production.