一键导入
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