## Branch Strategy We use short-lived topic branches, Conventional Commits, and PRs into `main`. ### Branch prefixes Create branches using one of: - `feat/-` – new features (e.g., `feat/runner-do-timeouts`) - `fix/-` – bug fixes - `docs/-` – docs only - `chore/-` – tooling, config, non-product changes - `refactor/-` – no behavior change - `test/-` – test-only changes ### Examples ```bash git checkout -b feat/ssh-timeout-handler git checkout -b fix/scoring-edge-case git checkout -b docs/adr-durable-objects git checkout -b chore/update-deps ``` ### Commit messages Follow [Conventional Commits](https://www.conventionalcommits.org/): ``` ():