docs(readme): fix truncated Contributing-section link#2
Merged
Conversation
Line 66 of README.md was truncated mid-URL — the canonical SKILL.md link was cut off after './plugins/new', leaving an unclosed markdown link that GitHub rendered as literal text instead of an anchor. The file also had no trailing newline.
Restores the full link target ('./plugins/newton/skills/newton/SKILL.md') and finishes the sentence by noting that the surface-specific files under tool-rules/ regenerate from the canonical SKILL.md via scripts/generate-rule-files.py — mirroring the explanation already given on line 35.
There was a problem hiding this comment.
Pull request overview
Fixes a truncated link in the README’s Contributing section so GitHub renders the canonical SKILL.md reference correctly and the section ends cleanly.
Changes:
- Restores the full Markdown link to
plugins/newton/skills/newton/SKILL.md. - Completes the sentence to match existing README guidance:
tool-rules/files are generated from SKILL.md viascripts/generate-rule-files.py. - Ensures the file ends with a trailing newline.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Problem
The Contributing section of README.md ended mid-URL. Line 66 was literally:
— no closing ), no rest of the URL, no trailing newline. GitHub rendered the unclosed link as literal text, so the canonical-SKILL pointer wasn't a working anchor.
Fix
Restore the full link target (
[plugins/newton/skills/newton/SKILL.md](./plugins/newton/skills/newton/SKILL.md)) and finish the sentence by noting that the surface-specific files under ool-rules/ regenerate from the canonical SKILL.md via scripts/generate-rule-files.py. That continuation mirrors the explanation already on line 35, so the README is now internally consistent about what's canonical and what's generated.Scope
Verification