From f094b70ae6e0abf789107d33b8f20b684e5b9e0c Mon Sep 17 00:00:00 2001 From: Kevin Turcios Date: Thu, 1 Jan 2026 02:41:46 -0500 Subject: [PATCH] docs: add git commit conventions to AGENTS.md --- AGENTS.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 5acea2bdb..2156336d2 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -55,6 +55,13 @@ Optimizations run in isolated worktrees: from codeflash.code_utils.git_worktree_utils import create_detached_worktree, remove_worktree ``` +## Git Commits & Pull Requests + +- Use conventional commit format: `fix:`, `feat:`, `refactor:`, `docs:`, `test:`, `chore:` +- Keep commits atomic - one logical change per commit +- Commit message body should be concise (1-2 sentences max) +- PR titles should also use conventional format (e.g., `fix: resolve base class dependency tracking`) + ## Code Style & Conventions - **Tooling**: Ruff for linting/formatting, mypy strict mode, pre-commit hooks