Commit c03c6df
`Registry Verify` has been failing on **`main`** since #515 merged at
~12:34 today.
#515 changed tracked files under `rhodium-standard-repositories/`
without regenerating the derived registry, so the RSR entry's
`source_hash` — a sha256 over `git ls-files -s <home>` — no longer
matches the tree:
```
DRIFT: .machine_readable/REGISTRY.a2ml is stale — run 'just registry'
```
**Every open PR inherits this**, because `pull_request` checks run
against the merge ref. It is the sole cause of the current red on #518.
## The change
One line, produced by `bash scripts/build-registry.sh` with no manual
editing:
```diff
name = "RSR — Rhodium Standard Repositories"
home = "rhodium-standard-repositories/"
-source_hash = "sha256:b285134b…7b9b7abe"
+source_hash = "sha256:02b75b57…c382f1e"
```
## Verified
| | `scripts/build-registry.sh --check` |
|---|---|
| `origin/main` | `DRIFT: .machine_readable/REGISTRY.a2ml is stale` |
| this commit | `OK: registry + topology are in sync with the file
tree.` (exit 0) |
Run history confirms the regression point — `main` green at 04:48, red
at 12:37, with `feat/scaffold-lifecycle-canon` red at 12:34.
Worth considering as follow-up: `just hooks-install` (the pre-commit
guard the failure message already points at) would have caught this
before push.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 21416cd commit c03c6df
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
225 | 225 | | |
226 | 226 | | |
227 | 227 | | |
228 | | - | |
| 228 | + | |
229 | 229 | | |
230 | 230 | | |
231 | 231 | | |
| |||
0 commit comments