kysely-schema-migrations
Pass
Audited by Gen Agent Trust Hub on Mar 18, 2026
Risk Level: SAFECOMMAND_EXECUTION
Full Analysis
- [COMMAND_EXECUTION]: The skill documents the use of Kysely's schema builder to execute Database Definition Language (DDL) operations such as creating, altering, and dropping tables, indexes, and views. This is the primary and intended functionality of the skill.
- [SAFE]: The provided code examples utilize
sqltagged templates for executing raw SQL expressions, which is a standard security practice to mitigate SQL injection risks when using query builders. - [SAFE]: Database connection patterns shown in the documentation correctly use environment variables (
process.env.DATABASE_URL) to manage sensitive credentials, avoiding the risk of hardcoded secrets. - [SAFE]: The migration system documented (
FileMigrationProvider) dynamically loads and executes local JavaScript or TypeScript files to apply schema updates, which is a standard architectural pattern for database migration tools.
Audit Metadata