You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Follow these rules in this repo (summary). Full details: see `AGENTS.md` in the repository root.
2
2
3
-
Follow the repository instructions defined in `AGENTS.md` when working in this codebase.
3
+
- Security: never introduce hardcoded secrets; avoid injection/dynamic execution hazards.
4
+
- Performance: watch for inefficient loops and resource leaks; clean up resources.
5
+
- Docs/API: public classes/modules/methods must have Sphinx docs.
6
+
- PyMongo synchro rule: do not edit `pymongo/synchronous` (or sync test twins) unless the change includes `_IS_SYNC`; those files are generated via `tools/synchro.py`.
7
+
- Async: async functions must not call blocking I/O.
8
+
- Review style: be specific/actionable; explain “why”; ask clarifying questions when unclear.
0 commit comments