From 7a3169d77ef89cbbbebc276fcb7baee655087d88 Mon Sep 17 00:00:00 2001 From: Frank Date: Sun, 26 Apr 2026 19:41:48 +0200 Subject: [PATCH] updated agents --- AGENTS.linux.md | 2 +- AGENTS.windows.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.linux.md b/AGENTS.linux.md index ec994c8..a7c9a8f 100644 --- a/AGENTS.linux.md +++ b/AGENTS.linux.md @@ -15,7 +15,7 @@ These tools are installed and available: Python3, MiKTeX, Tesseract, Playwright - When an task is finished, perform a code review to evaluate if the change is clean and maintainable with high software engineering standards. Iterate on the code and repeat the review process until satisfied. - If there's documnentation present, always keep it updated. - After every iteration, evaluate if the test coverage would fall below 100%, and write tests if necessary. -- After every iteration, run `dotnet jb cleanupcode --build=False '$file1' '$file2' ...` for every file you touched. +- After every iteration, run `dotnet jb cleanupcode --build=False '$file1' '$file2' ...` for every C# file you touched. - After every frontend change, verify the results using an ephemeral Playwright run. - For ad hoc verification in this repo, do not default to `npx playwright test` with a temp spec outside the repo. - When browser verification needs the app running, launch the app against a temporary copy of `src\RolemasterDb.App\rolemaster.db` so verification does not mutate the canonical DB. diff --git a/AGENTS.windows.md b/AGENTS.windows.md index 1515097..a1f2e95 100644 --- a/AGENTS.windows.md +++ b/AGENTS.windows.md @@ -21,7 +21,7 @@ These tool paths should be used instead of any entry in the PATH environment var - After the implementation is finished, verify all changed files, and run `python D:\Code\crlf.py $file1 $file2 ...` only for files you recognize, in order to normalize all line endings of all touched files to CRLF. - If there's documnentation present, always keep it updated. - After every iteration, evaluate if the test coverage would fall below 100%, and write tests if necessary. -- After every iteration, run `jb cleanupcode --build=False '$file1' '$file2' ...` for every file you touched. +- After every iteration, run `jb cleanupcode --build=False '$file1' '$file2' ...` for every C# file you touched. - After every frontend change, verify the results using an ephemeral Playwright run. - For ad hoc verification in this repo, do not default to `npx playwright test` with a temp spec outside the repo. - Prefer a repo-local ephemeral Node script under `artifacts_verify/` that imports `playwright` with `require('playwright')` and drives the browser directly.