Awesome Reviewers

All CI/CD build environments must be reproducible and based on reliable dependency sources.

Standards: 1) Prefer official published packages/artifacts

2) Always pin dependency versions in CI/CD

Example (Dockerfile pattern)

FROM --platform=linux/arm64 python:3.12-slim
WORKDIR /app

# Install deterministic dependencies
COPY uv.lock ./
# (Use your project’s standard lock-based install command; e.g.,)
# RUN uv sync --frozen

# Prefer the official SDK package instead of a custom wheel
# RUN pip install strands-<version>[bidi]

How to apply: