This document contains critical information about working with this codebase. Follow these guidelines precisely.
-
Package Management
- ONLY use Poetry, NEVER pip
- Installation:
poetry add package - Dev dependencies:
poetry add --group dev package - Running tools:
poetry run tool - Upgrading:
poetry update package - FORBIDDEN:
pip install, manual dependency management
-
Code Quality
- Type hints required for all code
- Public APIs must have docstrings
- Functions must be focused and small
- Follow existing patterns exactly
- Line length: 120 chars maximum
-
Testing Requirements
- Framework:
poetry run pytest - Async testing: use anyio, not asyncio
- Coverage: test edge cases and errors
- New features require tests
- Bug fixes require regression tests
- Framework:
-
For commits fixing bugs or adding features based on user reports add:
git commit --trailer "Reported-by:<name>"Where
<name>is the name of the user. -
For commits related to a Github issue, add
git commit --trailer "Github-Issue:#<number>" -
NEVER ever mention a
co-authored-byor similar aspects. In particular, never mention the tool used to create the commit message or PR.
-
Create a detailed message of what changed. Focus on the high level description of the problem it tries to solve, and how it is solved. Don't go into the specifics of the code unless it adds clarity.
-
NEVER ever mention a
co-authored-byor similar aspects. In particular, never mention the tool used to create the commit message or PR.
-
Ruff
- Format:
poetry run ruff format . - Check:
poetry run ruff check . - Fix:
poetry run ruff check . --fix - Critical issues:
- Line length (88 chars)
- Import sorting (I001)
- Unused imports
- Line wrapping:
- Strings: use parentheses
- Function calls: multi-line with proper indent
- Imports: split into multiple lines
- Format:
-
Type Checking
- Tool:
poetry run pyright - Requirements:
- Explicit None checks for Optional
- Type narrowing for strings
- Version warnings can be ignored if checks pass
- Tool:
-
Pre-commit
- Config:
.pre-commit-config.yaml - Runs: on git commit
- Tools: Prettier (YAML/JSON), Ruff (Python)
- Ruff updates:
- Check PyPI versions
- Update config rev
- Commit config first
- Config:
-
CI Failures
- Fix order:
- Formatting
- Type errors
- Linting
- Type errors:
- Get full line context
- Check Optional types
- Add type narrowing
- Verify function signatures
- Fix order:
-
Common Issues
- Line length:
- Break strings with parentheses
- Multi-line function calls
- Split imports
- Types:
- Add None checks
- Narrow string types
- Match existing patterns
- Pytest:
- If the tests aren't finding the anyio pytest mark, try adding PYTEST_DISABLE_PLUGIN_AUTOLOAD=""
to the start of the pytest run command eg:
PYTEST_DISABLE_PLUGIN_AUTOLOAD="" poetry run pytest
- If the tests aren't finding the anyio pytest mark, try adding PYTEST_DISABLE_PLUGIN_AUTOLOAD=""
to the start of the pytest run command eg:
- Line length:
-
Best Practices
- Check git status before commits
- Run formatters before type checks
- Keep changes minimal
- Follow existing patterns
- Document public APIs
- Test thoroughly
- Always use
logger.exception()instead oflogger.error()when catching exceptions- Don't include the exception in the message:
logger.exception("Failed")notlogger.exception(f"Failed: {e}")
- Don't include the exception in the message:
- Catch specific exceptions where possible:
- File ops:
except (OSError, PermissionError): - JSON:
except json.JSONDecodeError: - Network:
except (ConnectionError, TimeoutError):
- File ops:
- Only catch
Exceptionfor:- Top-level handlers that must not crash
- Cleanup blocks (log at debug level)