Opus
`app.py` uses a non-portable shebang and imports `stack` without package context
- infra/app.py:1-8
The shebang `/opt/homebrew/bin/python3.13` is a developer-machine-specific path (Apple Silicon Homebrew) and will fail in CI/Linux. The `from stack import GeoTradingStack` works only when CWD is `infra/`, which is brittle if `cdk` is invoked from elsewhere; this implicitly couples to `cdk.json`'s `app` command (not shown). Lambda runtime is also pinned to Python 3.12 while app.py targets 3.13 — version skew worth flagging.
Recommendation
Use `#!/usr/bin/env python3`, and either convert `infra/` to a package with `from infra.stack import GeoTradingStack` or document the required CWD in `cdk.json`'s `app` field.