docs: add error handling patterns and module dependencies to CLAUDE.md
All checks were successful
Tests / lint (push) Successful in 3s
Tests / test (push) Successful in 30s

- Document 3 graceful degradation patterns with code examples
- Add Service Fallback Matrix for optional services
- Add module dependency tree with change impact guide

chore: fix typecheck environment

- Add mypy to dev dependencies in pyproject.toml
- Fix tox.ini typecheck environment to install mypy explicitly
This commit is contained in:
Trip T
2026-03-11 22:21:07 -04:00
parent 05bd7f03f4
commit c7f92f6d7b
3 changed files with 100 additions and 0 deletions

View File

@@ -38,6 +38,9 @@ commands =
[testenv:typecheck]
description = Static type checking with mypy
commands_pre =
deps =
mypy>=1.0.0
commands =
mypy src --ignore-missing-imports --no-error-summary