chore: clean the dash stragglers the glob-based sweep missed - #44
Merged
Conversation
The #42 cleanup walked files with glob('**/*.json'), which skips dot-directories, so .claude-plugin/marketplace.json and the seven original plugins' .claude-plugin/plugin.json descriptions kept their em dashes and the verification pass shared the blind spot. Same replacement vocabulary as #42; verification now uses os.walk. The seven touched plugins get patch bumps per the versioning rule.
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.
What
Finishes what #42 started. That cleanup walked files with Python's
glob('**/*.json'), which does not descend into dot-directories, so 13 em dashes survived in.claude-plugin/marketplace.json(the six original plugin descriptions) and the seven original plugins'.claude-plugin/plugin.jsondescriptions. #42's verification pass used the same walker, which is why its "zero remaining" claim was wrong.Replacements reuse #42's vocabulary so these descriptions now match their already-cleaned copies in the READMEs (parentheses for the paired interpolations, colons for appositives). Verification here uses
os.walkwith dot-directories included: zero em or en dashes remain outsidesite/(still excluded; the typeset redesign replaces it).The seven touched plugins get patch bumps per the CONTRIBUTING versioning rule: bounty-board 1.0.3, context-hogs 1.0.4, dead-end-registry 1.0.2, dead-rules-audit 1.0.3, nerf-receipts 1.0.3, pr-provenance-stamp 1.0.2, standup-autopilot 1.0.2.
Tests
npm test: 1544 pass, 0 fail.claude plugin validate .: passed.