chore: post-rename libvmaf/→core/ + python/vmaf/→compat/ drift sweep#71
Merged
Merged
Conversation
664cd12 to
23ea9b3
Compare
…drift sweep
Fixed 9 stale directory references left behind after the ADR-0700 rename
(libvmaf/ → core/, python/vmaf/ → compat/python-vmaf/). These were
runtime/build-time refs, not frozen ADR bodies or library name strings.
Files fixed:
- Makefile: LIBVMAF_DIR := libvmaf → core (build path was broken for make
build/install targets)
- Dockerfile: PATH env libvmaf/build/tools → core/build/tools
- .github/codeql-config.yml: paths/paths-ignore libvmaf/{src,include,
tools,test} → core/{src,include,tools,test}; python/vmaf →
compat/python-vmaf
- .vscode/c_cpp_properties.json: includePath libvmaf/{include,src} →
core/{include,src}
- .zed/settings.json: fallbackFlags -I./libvmaf/{include,src} →
-I./core/{include,src}
- .claude/skills/add-gpu-backend/scaffold.sh: src= libvmaf/src → core/src
- scripts/dev/project_modernization_audit.py: scan roots libvmaf/{src,
tools} → core/{src,tools}
- README.md: logo image path python/vmaf/resource → compat/python-vmaf/
resource (file did not exist at old path)
- AGENTS.md: layout table python/vmaf/ → compat/python-vmaf/ (with note
that python/vmaf/ remains a compat shim)
- .claude/skills/add-model/SKILL.md: check_pkl_model.py path corrected
Deliverables:
(a) no digest needed: mechanical post-rename leftover cleanup
(b) no ADR: maintenance fix per CLAUDE.md §12 r8
(c) no rebase-sensitive invariants introduced
(d) reproducer: grep commands in changelog.d/fixed/post-rename-drift-sweep.md
(e) changelog.d/fixed/post-rename-drift-sweep.md
(f) docs/rebase-notes.md entry added
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23ea9b3 to
91b8796
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixed 9 stale
libvmaf/andpython/vmaf/directory references leftbehind after the ADR-0700 repo rename. These were active
runtime/build/IDE refs — not frozen ADR bodies, library names, or
CHANGELOG history.
Makefile:LIBVMAF_DIR := libvmaf→core(make build/install waspointing at a non-existent directory)
Dockerfile:PATHenvlibvmaf/build/tools→core/build/tools.github/codeql-config.yml:paths/paths-ignorecorrected tocore/{src,include,tools,test}andcompat/python-vmaf.vscode/c_cpp_properties.json+.zed/settings.json: clangdfallback include paths updated
.claude/skills/add-gpu-backend/scaffold.sh:src=variablescripts/dev/project_modernization_audit.py: scan rootsREADME.md: logo<img>path (file did not exist at old path)AGENTS.md: layout description.claude/skills/add-model/SKILL.md:check_pkl_model.pypathDeliverables checklist (ADR-0108)
no digest needed: mechanical post-rename leftover cleanupno alternatives: only-one-way fixno rebase-sensitive invariants introducedgrep -rn 'libvmaf/[a-z]' . --include='*.sh' --include='*.py' --include='Makefile' --include='*.yaml' --include='*.yml' --include='Dockerfile*' 2>/dev/null | grep -vE '(libvmaf\.so|core/include/libvmaf|docs/adr/[0-9]+-)' | grep -vE '(#|//).*libvmaf/'→ 0 hits after this PRchangelog.d/fixed/post-rename-drift-sweep.mddocs/rebase-notes.md— periodic drift sweep reminder addedTest plan
meson setup build-sweep core -Denable_cuda=false -Denable_sycl=false && ninja -C build-sweep— passes (verified locally, 724/724 targets)make lint— passes (pre-commit hooks green on commit)no rebase impact: pure path-string corrections in config/tooling files; no
C/Python/Go source changes; no API surface changes.
🤖 Generated with Claude Code