fix: README Mermaid render + mermaid lint, CI, submissions, style pass#1
Merged
Merged
Conversation
…s, style pass The diagram on main failed to render — a ';' in a sequenceDiagram message is a statement separator, so GitHub's parser errored. Root fix + prevention: - README line: 'patterns; warn' -> 'patterns, warn' - scripts/validate_mermaid.py: dependency-free Mermaid linter (semicolons in messages, rect/end balance, participant refs); folded into make gate + hook. Regression-tested: catches the exact bug that shipped. The URL linter never checked Mermaid — this closes that gate gap. Also: - README: swapped hero to the wide social banner (assets/images/...by-jp.png); Economist style pass (cut 'actually', tighter verbs, semicolon->full stop); bio trimmed; added "not affiliated with Google" disclaimer - CI: .github/workflows/gate.yml (gate on PRs) + freshness.yml (weekly drift check, opens an issue on source drift) - docs/SUBMISSIONS.md: Claude Plugin Hub / Gemini extensions / awesome lists Gate: validate + manifest + mermaid + lint + test all green
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
Fixes the broken Mermaid diagram on
main(GitHub parse error) and closes the gate gap that let it ship.Why it broke
A
;in asequenceDiagrammessage is a statement separator — GitHub's renderer errored onpatterns; warn before every billable action. The URL linter never checked Mermaid.Changes
;→,in the diagram messagescripts/validate_mermaid.py(dependency-free Mermaid linter) folded intomake gate+ pre-commit hook; regression-tested against the exact buggate.yml(runs the gate on PRs) +freshness.yml(weekly drift check → opens an issue)docs/SUBMISSIONS.md(Claude Plugin Hub / Gemini extensions / awesome lists)Validation
make gategreen: validate + manifest + mermaid + lint + test (136 tests).