with one click
ef-protocol
Mandatory rule for EF Core migrations and database updates.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Mandatory rule for EF Core migrations and database updates.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Mandatory rule requiring a corresponding test file for every business logic file and UI component.
Guidelines for naming test folders and namespaces following the Unit.[Component] convention.
Catalog of all specialized skills used across the FinanzApp project (Frontend & Backend).
Guidelines for clean code, readability, and the "No Comments" policy.
Mandatory rules for automatically updating README.md when creating files or tests.
Guidelines for cross-layer testing (Hooks + UI + Services) using real logic and MSW for network interception.
| name | ef-protocol |
| description | Mandatory rule for EF Core migrations and database updates. |
Always follow this protocol whenever the DbContext or domain entities are modified in C#.
At the end of every response where data models have changed, you MUST provide the following block:
Ejecuta estos comandos en orden desde la raíz de la solución:
Crear la migración:
Add-Migration [NombreDescriptivo] -Project Data -StartupProject WebAPI
Aplicar los cambios a la base de datos:
Update-Database -Project Data -StartupProject WebAPI