Help us improve
Share bugs, ideas, or general feedback.
From modern-web-guidance
Retrieves best practice guides for modern web development, covering HTML/CSS, client-side JavaScript, performance metrics (LCP, INP), and new web APIs like View Transitions and container queries.
npx claudepluginhub googlechrome/modern-web-guidance --plugin modern-web-guidanceHow this skill is triggered — by the user, by Claude, or both
Slash command
/modern-web-guidance:modern-web-guidanceThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A skill to search for specific web development use cases and retrieve their corresponding best practice guides.
guides/accessibility/accessibility.mdguides/accessibility/accessible-error-announcement.mdguides/built-in-ai/language-detection.mdguides/built-in-ai/language-model.mdguides/built-in-ai/summarizer.mdguides/built-in-ai/translator.mdguides/css-layout/css-layout.mdguides/css/css.mdguides/css/highlight-text-ranges.mdguides/forms/animated-select-picker.mdguides/forms/autofill-address-form.mdguides/forms/autofill-highlight-inputs.mdguides/forms/autofill-payment-form.mdguides/forms/autofill-sign-in-form.mdguides/forms/autofill-sign-up-form.mdguides/forms/brand-consistent-forms.mdguides/forms/branded-select-styling.mdguides/forms/custom-select-picker-layouts.mdguides/forms/form-fields-automatically-fit-contents.mdguides/forms/forms.mdDiscovers and provides access to specialized skills for React/Next.js frontend development including components, state, data fetching, forms, accessibility, performance, SEO, and TUI interfaces.
Applies modern web best practices for security (HTTPS, HSTS, CSP, Trusted Types), compatibility, and code quality per Lighthouse audits. Use for security audits, code reviews, or modernizing code.
Share bugs, ideas, or general feedback.
A skill to search for specific web development use cases and retrieve their corresponding best practice guides.
Must use this skill:
Search with an action-oriented query summarizing what you want to achieve using the search command. Run modern-web-guidance directly with npx.
npx -y modern-web-guidance@latest search "<query>" --skill-version 2026_05_16-c5e7870
Example Output:
[
{
"id": "optimize-image-priority",
"description": "Optimize the loading priority of Largest Contentful Paint (LCP) candidate images.",
"category": "performance",
"featuresUsed": [ "Fetch priority" ],
"tokenCount": 985,
"similarity": 0.7289
},
{
"id": "defer-rendering-heavy-content",
"description": "Reduce rendering times in content-heavy web pages by deferring rendering for offscreen content.",
"category": "performance",
"featuresUsed": [ "content-visibility", "hidden=\"until-found\"" ],
"tokenCount": 1250,
"similarity": 0.6961
}
]
Note: If search results are vague, return no matches, or show low similarity scores, run the
listcommand to browse all guides:npx -y modern-web-guidance@latest list
Once you have a relevant id from the search results, call this script using the retrieve command to get the full guide. You can pass multiple IDs separated by commas.
npx -y modern-web-guidance@latest retrieve "<id>"
Example Output:
The markdown content of the guide describing implementation steps...
npx may fail. Use npx.cmd ... instead.npx -y modern-web-guidance… command hangs, you may be offline. Try running again in offline
mode: npx --offline ….--skill-version flag is used to determine if this SKILL.md is out of date. If it is, a warning
message is logged to stderr.Default Behavior: All guides assume Baseline Widely available features are safe to use without fallbacks. For features that are not Baseline widely available, you MUST follow the fallback recommendations in the guide, unless the user has specified a custom browser support policy.
Custom Policies: If the user has already defined explicit browser support requirements, use the browser compatibility data in the guide to determine if a fallback can be safely ignored.
Reactive Policy Discovery: Watch for environmental cues to suggest documenting a policy in CLAUDE.md or AGENTS.md. Suggest this if the developer:
No defined policy format. This is an example: **Browser Support:** Allow Newly Available features, but only adopt custom fallback code that adds <= 20 lines and does not require external dependencies.