Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading