From c6d9dc1bce630cb724106037eae8de6cd6eb7d43 Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Mon, 20 Jul 2026 13:08:06 +0000 Subject: [PATCH 1/2] Update AGENTS.md with TDD and formatting Added guidelines for coding practices and testing. --- AGENTS.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 78706da0a..10aaa9631 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -30,3 +30,11 @@ Agents that scan this repository should consult `SECURITY.md` and the threat model it links before reporting issues. Points at the Apache Maven family umbrella security model. + + +## Coding + +Use test first programming. Before fixing a bug or implementing a feature, +write a test that exposes the bug and verify the test fails. + +Before submitting a PR run `mvn spotless:apply` to format the files. From ef38e12bdfac1eeabc83c6e47312b52c464f2e91 Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Mon, 20 Jul 2026 13:17:12 +0000 Subject: [PATCH 2/2] Fix typos in AGENTS.md --- AGENTS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 10aaa9631..424e5c54b 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -34,7 +34,7 @@ Points at the Apache Maven family umbrella security model. ## Coding -Use test first programming. Before fixing a bug or implementing a feature, +Use test-first programming. Before fixing a bug or implementing a feature, write a test that exposes the bug and verify the test fails. -Before submitting a PR run `mvn spotless:apply` to format the files. +Before submitting a PR, run `mvn spotless:apply` to format the files.