From 8e9a8af68664d9127a2186977eff8c7d48a23d03 Mon Sep 17 00:00:00 2001 From: Lorenzo Corallo Date: Tue, 18 Aug 2026 22:51:59 +0200 Subject: [PATCH] docs: require conventional commits --- AGENTS.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 17a8a7d..6728c91 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -26,8 +26,14 @@ always verify that normal behavior still works with `AGENT_MODE=false`. > Do not run destructive actions across multiple rows, unless specific prompt indication or > ask for user confirmation ALWAYS. -## Git +## Git commits -Always do commits with conventional commits. -Set description when a commit includes lot of changes that cannot -be divided into multiple commits, to specify the most important changes of the commit. +Use Conventional Commits for every commit message: + +```text +[optional scope][!]: +``` + +Choose an accurate type such as `feat`, `fix`, `docs`, `refactor`, `test`, +`build`, `ci`, or `chore`. Add a body when the change needs context. Mark +breaking changes with `!` or a `BREAKING CHANGE:` footer.