From 849693416a2644fbc9f2e1e3597fd13a0747f56f Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 11 Sep 2025 22:12:20 -0500 Subject: [PATCH] Add git commit requirement to validation process - Include creating a git commit as step 5 in validation priority order - Add git commit to minimum requirements for completing changes - Ensures work is properly saved after validation --- AGENTS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index ee1004a..8d0cb1b 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1066,10 +1066,12 @@ Run available tools in this priority order: 2. **Building/Compilation** (Required): Verify the project builds successfully 3. **Linting** (Recommended): Check code style and catch potential issues 4. **Tests** (If Available): Run existing test suite +5. **Git Commit** (Required): Create a commit with your changes when finished **Minimum Requirements:** - Code must type-check without errors - Code must build/compile successfully - Fix any critical linting errors that would break functionality +- Create a git commit when your changes are complete The validation ensures code quality and catches errors before deployment, regardless of the development environment. \ No newline at end of file