From 8c2659cd6381cbe99dee70e22cfb2b851060a95c Mon Sep 17 00:00:00 2001 From: Meik Date: Mon, 9 Mar 2026 08:54:10 +0100 Subject: [PATCH] docs: clarify mandatory git hygiene workflow --- AGENTS.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 38969d5..d8d3a61 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -22,9 +22,9 @@ History is minimal (`initial`), so prefer concise, imperative commit subjects an ### Mandatory Workflow Rules -- Before making any code change, the working tree must be clean (`git diff` and `git diff --cached` must be empty). -- If the working tree is not clean before starting, stop and clarify with the requester before proceeding. -- After completing a requested code change, always create a commit with a concise, imperative message. +- Before starting any request that requires a code change, the repository must have no open Git changes (`git status --short` must be empty). +- If the working tree is not clean before starting a code change request, stop and clarify with the requester before proceeding. +- After completing a requested code change, always create a Git commit with a concise, fitting, imperative message. - After completing a requested code change, always push the new commit immediately to the configured remote branch. - Use Windows line endings (`CRLF`) for all text files in this repository.