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
4 changes: 4 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
- Run linting with `uv run ruff check .`.
- Run the test suite with `uv run pytest` and ensure it passes before committing.

## Testing Practices
- Use realistic (or as realistic as possible) data in tests; avoid meaningless placeholder values.
- Always test both positive and negative logical paths.

## Efficiency and Search
- Use `rg` (ripgrep) for recursive search.
- Avoid `ls -R` and `grep -R` as they generate excessive output.
Expand Down