From 262fbe75b0234979c8872b5aefa65d5883fca2d7 Mon Sep 17 00:00:00 2001 From: Aster Seker Date: Thu, 4 Sep 2025 00:21:14 +0300 Subject: [PATCH] docs(guidelines): add agent instructions Introduce AGENTS.md outlining commit message conventions, change constraints, and required test runs. --- AGENTS.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..f8732b8 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,16 @@ +# Agent Instructions + +## Commit Messages + +- Use Conventional Commits format: `type(scope): summary`. +- The header must be in English. +- Include a body that describes the change. + +## Changes + +- Keep diffs minimal and focused. +- Do not refactor or apply style changes beyond the lines you directly touch. + +## Tooling + +- Run tests before committing changes.