fix(coding-agent): normalize fuzzy edit matching and run touched tests closes #2044

This commit is contained in:
Mario Zechner
2026-03-15 19:08:24 +01:00
parent 1ae0833a72
commit 700bcf3455
3 changed files with 32 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ read README.md, then ask which module(s) to work on. Based on the answer, read t
- NEVER run: `npm run dev`, `npm run build`, `npm test`
- Only run specific tests if user instructs: `npx tsx ../../node_modules/vitest/dist/cli.js --run test/specific.test.ts`
- Run tests from the package root, not the repo root.
- If you create or modify a test file, you MUST run that test file and iterate until it passes.
- When writing tests, run them, identify issues in either the test or implementation, and iterate until fixed.
- NEVER commit unless user asks