chore(verify): normalize line endings in SKILL.md and auth.md#16
chore(verify): normalize line endings in SKILL.md and auth.md#16bensonwong merged 2 commits intomainfrom
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Code ReviewSummary: Whitespace-only cleanup -- CRLF to LF normalization across SKILL.md (214 lines) and rules/auth.md (15 lines), plus removal of the trailing newline from auth.md. I verified the diff manually: no semantic content was changed. Code quality / correctnessNo issues. The content of both files is identical before and after; only the line-ending bytes differ. The trailing-newline removal from auth.md is harmless and consistent with LF style. Potential bugsNone introduced. This is a safe, non-functional change. Performance / SecurityN/A. Test coverageThe PR test plan mentions manually confirming the /verify skill still loads and executes correctly. Since no logic changed, a smoke test of the skill is sufficient. Suggestions1. Prevent regression with .gitattributes Without a .gitattributes file enforcing LF, any Windows contributor or editor configured for CRLF can re-introduce mixed line endings. Consider adding one at the repo root: This makes the fix permanent rather than a one-time cleanup. 2. auth.md trailing newline (minor nit) Most POSIX tools and editors expect a final newline in text files. If the removal is intentional style, that is fine; otherwise, one trailing newline is the convention. VerdictLooks good to merge. The change is safe, narrow in scope, and improves consistency. The only follow-up worth considering is adding .gitattributes to enforce the LF policy going forward. |
Prevents CRLF re-introduction from Windows checkouts or misconfigured editors. Trailing newline removal in auth.md is intentional. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Summary
skills/verify/SKILL.mdskills/verify/rules/auth.mdTest plan
/verifyskill still loads and executes correctly