You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assert-Collection (($svgText-match"<svg\b") -and ((Get-Item-LiteralPath $svgPath).Length -gt100)) "Header SVG is not a non-empty SVG document."
45
45
Assert-Collection (($pngBytes.Length-gt100) -and ($pngBytes[0] -eq137) -and ($pngBytes[1] -eq80) -and ($pngBytes[2] -eq78) -and ($pngBytes[3] -eq71)) "Header PNG does not have a valid PNG signature."
46
46
}
47
-
Assert-Collection ($installation-match"npx skills add <owner>/<repository>") "Installation guide is missing the whole-repository release template."
48
-
Assert-Collection ($installation-match"--skill <skill-name>") "Installation guide is missing the per-Skill release template."
49
-
Assert-Collection ($installation-match"not a verified command") "Installation guide must label pre-release commands accurately."
47
+
Assert-Collection ($installation-match"npx skills add LightDevCoder/skills") "Installation guide is missing the verified whole-repository release command."
48
+
Assert-Collection ($installation-match"npx skills add LightDevCoder/skills --skill review-loop") "Installation guide is missing the verified per-Skill release command."
49
+
Assert-Collection ($installation-match"v0\.1\.0") "Installation guide is missing the stable release tag."
50
+
Assert-Collection ($installation-notmatch"not a verified command|<owner>/<repository>") "Installation guide still contains unresolved pre-release command wording."
50
51
Assert-Collection ($installation-match"Manual fallback") "Installation guide must retain a manual fallback."
51
52
Assert-Collection ($installation-match'\$sourceRoot'-and$installation-match'\$skillName'-and$installation-match'\$destinationRoot') "Manual fallback must use valid PowerShell variables."
0 commit comments