From 0f6a0fb35a1888f7176498f3b8bfd0a732aa02bf Mon Sep 17 00:00:00 2001 From: Frank Tovar Date: Wed, 4 Feb 2026 22:00:21 +0100 Subject: [PATCH] New agents instructions --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 202197c..9f7940b 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -6,7 +6,7 @@ Also see the other related files: API.md, IIS.md, SPEC.md - After every iteration, do a git commit with a brief summary of the changes as a commit message. - If you find unexpected changes in the code (deletions, changes, diff results that were not communicated.), never revert them and never restore the old state. Assume that those changes happened with intent. -- After changing the backend, feel free to build the project and migrate the dn. If this is blocked by a running dotnet process, feel free to kill the process and retry the operation once. +- After changing the backend, feel free run "dotnet build" and "dotnet ef database update". If this is blocked by a running dotnet process, feel free to kill the process and retry the operations once. - Keep changes small and testable - Avoid introducing new dependencies unless they remove complexity. - Keep endpoint logic in `Endpoints/` and shared helpers/DTOs in their folders to avoid Program.cs bloat.