From 9d3fba05d6459b68414f6689b76c5a47e04733a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernhard=20M=C3=BCller?= Date: Tue, 21 Jul 2026 11:15:40 +0200 Subject: [PATCH] docs: add conventional commits guideline to AGENTS.md --- AGENTS.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 52fca7f..bbe3a12 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -72,3 +72,32 @@ cd eeg_frontend && ng serve - `@Profile("dev")` für simulierte EDA-Services - EDA-Simulation: AT-Nummer endet mit "REJECT" → Ablehnung, "ERROR" → technischer Fehler - Explizite `isEnabled()`-Überschreibung in `User.java` nötig (Lombok/Spring Security Konflikt) + +## Conventional Commits + +Ab jetzt werden [Conventional Commits](https://www.conventionalcommits.org/) verwendet: + +``` +(): + +[optional body] + +[optional footer] +``` + +### Typen +- `feat`: Neue Funktion +- `fix`: Bugfix +- `docs`: Dokumentation +- `style`: Formatierung (keine Code-Änderung) +- `refactor`: Code-Refactoring ohne Funktionsänderung +- `test`: Tests hinzugefügt/ergänzt +- `chore`: Build-Prozess, Abhängigkeiten, Konfiguration + +### Beispiele +``` +feat(iam): add user profile management +fix(mako): handle consent rejected event correctly +docs: update AGENTS.md with conventional commits +test(iam): add UserService unit tests +```