- --
This baseline freezes the previously hardened Loop-4 verification state and defines the release-candidate tag procedure for auditors.
- -
Intended tag format:
-
Exact non-interactive commands:
```bash
BASELINE_COMMIT="$(git rev-parse HEAD)"
RC_TAG="yarli-v0.1.0-rc.20260207"
git tag -a "${RC_TAG}" "${BASELINE_COMMIT}" -m "YARLI release candidate ${RC_TAG}"
git show "${RC_TAG}" --no-patch --decorate
```
If a baseline tag already exists, delete and recreate only with explicit reviewer approval:
```bash
git tag -d "${RC_TAG}"
git tag -a "${RC_TAG}" "${BASELINE_COMMIT}" -m "YARLI release candidate ${RC_TAG}"
```