Imported from SomeNewKid/WebResourceChecker (
.claude/skills/css-resource-checker/SKILL.md). Install upstream withnpx skills add SomeNewKid/WebResourceChecker --skill css-resource-checker. Copyright stays with the author.
CSS Resource Checker
Use this skill when the application provides the source code of a CSS stylesheet.
Inspect only the provided CSS source. Do not fetch external resources. Do not assume missing information.
Output Format
Return one checklist result per line.
Use exactly these markers:
- [✓] when the item was checked successfully
- when the item was checked and failed
- [-] when the item could not be checked or was not applicable
Do not include any explanation before or after the checklist.
Checklist
Check these items:
- The stylesheet contains at least one CSS rule.
- Every opening brace has a matching closing brace.
- The stylesheet does not use !important.
- The stylesheet does not use ID selectors.
- Color values are not all hard-coded as hex colors only.
- The stylesheet includes at least one responsive rule using @media, @container, or a relative unit such as rem, em, %, vw, or vh.