From 39687d0769cb383cc44dee84e6c568034df09e83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20B=C3=BCchler?= Date: Thu, 7 Aug 2025 23:04:18 +0200 Subject: [PATCH] docs: add commit workflow instructions to AGENTS.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode --- AGENTS.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index e89e077..a1f7aa7 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -31,3 +31,10 @@ - All changes must be modular, idempotent, and version-controlled For more, see `README.md` and `.github/copilot-instructions.md`. + +## Commit Workflow +- After every change, stage and commit your work with a clear, descriptive commit message explaining the purpose of the change (not just the file or function name) +- Example: `git add && git commit -m "fix: correct Waybar config for desktop profile"` +- Always commit after each logical change, not just at the end of a session +- The commit message should focus on the "why" and "what" (e.g., "fix: remove battery module for desktop profile") +- Do not use generic messages like "Update" or "Fix" without context