From 8e3040f3681be459e0d70c66deaa33edf98a9212 Mon Sep 17 00:00:00 2001 From: Meik Date: Thu, 12 Feb 2026 18:00:22 +0100 Subject: [PATCH] chore: add mandatory clean-tree and commit-push workflow --- AGENTS.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..cfeade1 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,15 @@ +# AGENTS.md + +## Mandatory Git Workflow + +Before making any code or file change that results in a diff: +- Ensure `git status --porcelain` is empty. +- If there are open changes, stop and ask the user how to proceed. + +After completing a requested change: +- Create a commit with a clear message. +- Push the commit to the current remote branch. + +## Scope + +These rules apply to all tasks in this repository unless the user explicitly requests a different workflow.