db-migration
Write safe database migration scripts with data privacy considerations using Flyway
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Write safe database migration scripts with data privacy considerations using Flyway
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Run chaos security engineering tests — AI agent attempts to hack the Sprint output and reports findings to the team
Validate Java and TypeScript code against banking naming conventions, style rules, quality standards, and secure coding practices
Perform OWASP Top 10 security assessments, vulnerability scanning, and PCI-DSS compliance checks
Design test strategies including security testing, write test plans, and identify test scenarios for banking features with DevSecOps integration
Perform STRIDE threat modeling during Sprint Planning for new features and APIs
Run UX review checklist for banking user flows, validate WCAG accessibility compliance, assess security UX patterns, and review customer interface design
| name | db-migration |
| description | Write safe database migration scripts with data privacy considerations using Flyway |
Invoke when creating, reviewing, or troubleshooting database migrations.
-- V{NNN}__{description}.sql
-- Author: [name] | Date: [YYYY-MM-DD] | JIRA: [BANK-XXX]
-- Description: [what this migration does]
-- Rollback: V{NNN}__rollback__{description}.sql
-- Privacy Impact: [Does this add/modify PII columns?]
BEGIN;
-- DDL/DML here
COMMIT;