New to Claude Skills? Learn how to install them →

googlechrome on GitHub

Modern Web Guidance

Free

Your go-to search tool for web development best practices.

Get this skill

Free · Opens the source repo

What Modern Web Guidance does

Modern Web Guidance is a skill designed to assist developers in finding best practices for various web development tasks. It serves as a search tool that retrieves specific use cases and their corresponding guides, ensuring that developers can implement features using the most current methodologies. This skill is particularly valuable at the beginning of any web project, allowing developers to avoid outdated patterns and unnecessary dependencies by leveraging standardized solutions.

The skill is structured around a two-step process. First, users can search for use cases by summarizing their objectives with an action-oriented query. This is done via the search command, which returns relevant results, including descriptions and categories for each use case. For instance, a search for optimizing image loading may yield guides on adjusting fetch priorities for Largest Contentful Paint (LCP) images. If the search results are unsatisfactory, users can list all available guides to find what they need.

Once a relevant use case is identified, developers can retrieve detailed guides using the retrieve command. These guides provide step-by-step instructions and best practices, making it easier for developers to implement modern web features effectively. The guides are designed to be framework-agnostic, allowing developers to adapt them to their specific setups, whether they are using React, Vue, or Angular.

Overall, Modern Web Guidance is essential for frontend developers looking to stay updated with the latest web standards and practices. It helps streamline the development process by providing quick access to relevant information, ultimately leading to more efficient and effective web applications.

When to use it

Use this skill at the start of any web feature implementation or before creating new components to check for existing patterns.

When not to use it

This skill is not suitable for backend development tasks or CI/CD pipeline management.

What you can build with it

Starting a New Web Project

When beginning a new web project, use this skill to search for best practices to ensure you're using the latest standards.

Creating a Custom Component

Before developing a new component, check if a standardized pattern exists to avoid reinventing the wheel.

Optimizing Web Performance

Utilize this skill to find guides on improving performance metrics like Largest Contentful Paint and input responsiveness.

How to install Modern Web Guidance

View source

1. Install with the skills CLI

npx skills add googlechrome/modern-web-guidance/modern-web-guidance --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by googlechrome

Modern Web Guidance

A skill to search for specific web development use cases and retrieve their corresponding best practice guides.

When to use

Must use this skill:

  • At the start of implementing any web feature.
  • Before creating a new component, to check if a standardized pattern already exists.
  • To avoid implementing ad-hoc solutions or loading large dependencies unnecessarily.

Usage Instructions

Step 1. Search Use Cases

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-c5e78707

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 list command to browse all guides:

npx -y modern-web-guidance@latest list

Step 2. Retrieve Best Practices

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...

Using npx

  • IMPORTANT: on Windows, using npx may fail. Use npx.cmd ... instead.
  • Network access is required for fetching npm packages needed by the task.
  • If the npx -y modern-web-guidance… command hangs, you may be offline. Try running again in offline mode: npx --offline ….
  • The --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.

Guidelines

  • Always search first to find the most relevant guides.
  • These guides are usually framework-agnostic; adapt them correctly to your setup.
  • Do not hallucinate guides or ignore them; they represent the preferred local standard for the user's project.

Interpreting Browser Support & Fallbacks

  • 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.

    • For Baseline YYYY targets, a feature satisfies this target if its "Baseline since" date is <= YYYY.
    • Policy Examples:
      • "Do not implement feature fallbacks." (for exploratory prototypes of the cutting-edge web)
      • "Safari 17.4+" (for internal tools targeting macOS or Tauri-based desktop apps)
      • "Never recommend or implement polyfills; if a Baseline Newly Available feature is required for core functionality, provide a lightweight custom fallback or redesign the approach." (to minimize bundle size and avoid technical debt)
      • "Assume a modern execution environment where Baseline Newly Available features can be used natively, provided they are strictly feature-detected and degrade gracefully." (for progressive enhancement strategies)
  • Reactive Policy Discovery: Watch for environmental cues to suggest documenting a policy in CLAUDE.md or AGENTS.md. Suggest this if the developer:

    • Mentions building for a restricted runtime (e.g., Electron or Tauri).
    • Explicitly excludes specific targets (e.g., "we don't support Desktop Chrome").
    • Expresses hesitation about polyfill complexity, bundle size, or performance cost.
    • Questions if a feature is safe to use without fallbacks.

    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.

Frequently asked questions about Modern Web Guidance

Similar skills