ワンクリックで
ef-protocol
Mandatory rule for EF Core migrations and database updates.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Mandatory rule for EF Core migrations and database updates.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
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