Skip to content
Closed
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
9 changes: 7 additions & 2 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Please see [AGENTS.md](../AGENTS.md).
Follow these rules in this repo (summary). Full details: see [AGENTS.md](../AGENTS.md) in the repository root.

Follow the repository instructions defined in `AGENTS.md` when working in this codebase.
- Security: never introduce hardcoded secrets; avoid injection/dynamic execution hazards.
- Performance: watch for inefficient loops and resource leaks; clean up resources.
- Docs/API: public classes/modules/methods must have Sphinx docs.
- PyMongo synchro rule: do not review changes in `pymongo/synchronous` or in `test/` files that have same-named files in `test/asynchronous` unless the change includes `_IS_SYNC`; those files are generated via `tools/synchro.py`.
- Async: async functions must not call blocking I/O.
- Review style: be specific/actionable; explain “why”; ask clarifying questions when unclear.
Loading