fix: replace hardcoded E:\Dev2 dev paths across all harness skills#41
Merged
Conversation
31 SKILL.md files loaded knowledge/harness references via one author's absolute Windows dev path (E:\Dev2\kai-cmo-harness-work\...), which is unresolvable for anyone else who clones the repo. kai-repurpose also had the un-suffixed E:\Dev2\kai-cmo-harness\... variant that a prior partial fix missed. - Strip the E:\Dev2\kai-cmo-harness(-work)?\ prefix everywhere, converting to project-root-relative paths with forward slashes (145 references across 31 files, plus 2 intro-sentence mentions with no trailing path and one shell command example in kai-daily-ad-review). - Fix six playbook filenames that were referenced as `-MARKETING.md` (uppercase) but exist on disk as `-marketing.md` — invisible on Windows' case-insensitive filesystem, broken on Linux/Mac. - Verified every touched reference now resolves to a real file and scripts/doctor.py still reports all instruction-chain paths intact. kai-product-maker's separate E:\Dev2\DigitalProduct\... example paths are untouched — those point to external example products outside this repo, a different problem needing a product decision, not a path fix.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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
harness/skills/*/SKILL.mdfiles loaded knowledge/harness references via one author's absolute Windows dev path (E:\Dev2\kai-cmo-harness-work\...), unresolvable for anyone else who clones the repo.kai-repurposealso had the un-suffixedE:\Dev2\kai-cmo-harness\...variant that a prior partial fix missed — that's what this branch was originally scoped to, but the same bug turned out to be repo-wide.E:\Dev2\kai-cmo-harness(-work)?\prefix everywhere, converting to project-root-relative forward-slash paths (145 references across 31 files, 2 intro-sentence mentions with no trailing path, and one shell command example inkai-daily-ad-review).-MARKETING.md(uppercase) that actually exist on disk as-marketing.md— invisible on Windows' case-insensitive filesystem, broken on Linux/Mac.kai-product-maker's separateE:\Dev2\DigitalProduct\...example paths are untouched — those point to external example products outside this repo (a different problem needing a product decision, not a path fix).Test plan
grep -rn 'Dev2' harness/skills/*/SKILL.md— only the unrelatedkai-product-makerDigitalProduct examples remainpython scripts/doctor.py— instruction chain intact (190 doc-referenced paths checked), golden corpus passesGenerated by Claude Code