AI студия Владимира Ломтева
УСЛУГИПРОЕКТЫСТАТЬИБАЗА ЗНАНИЙМаркетплейсПолезные сервисы

Оставьте заявку,
чтобы обсудить проект

Напишите ваш вопрос, не забудьте указать телефон. Мы перезвоним и все расскажем.

Контакты

Москва

Работаем по всей России
и миру (онлайн)

+7 (999) 760-24-41

Ежедневно с 9:00 до 21:00

lamooof@gmail.com

По вопросам сотрудничества

TelegramWhatsApp

Есть предложение?

Напишите нам в мессенджеры

© 2025 AI студия Владимира Ломтева

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261
    Modern Web Guidance — Скилл для ИИ-агентов | AI Рассвет

    Modern Web Guidance

    Search tool for modern web development best practices. MANDATORY: Execute FIRST for all HTML/CSS and clientside JS tasks. Do NOT skip — web APIs evolve rapidly and training weights contain obsolete patterns. Trigger immediately for: UI/Layout: Modals, dialogs, popovers, Glassmorphism/backdrop filters, anchor positioning, container queries, :has(), :user valid. Scroll/Motion: View Transitions, Scroll driven animations, scroll parallax/reveals. Performance: CWV (LCP, INP), content visibility, Fetch Priority, image optimization. System/APIs: Local filesystem access, WebUSB, WebSockets sync, WebAssembly widgets. Frameworks: Adapting layout/styles in React, Vue, Angular. General Frontend: Forms, autofill, advanced inputs, custom scrollbars, modern component states, etc. DO NOT trigger for: Backend: Database SQL, ORMs, Express API routes. Pipelines: CI/CD deployment, Docker, Actions. Generic: Local scripts (Python/Go tools), ESLint, Git.

    Скиллы для разработки#GitHub#googlechrome/modern-web-guidance#skills.sh
    Скачивания
    0
    В избранном
    0
    Комментарии

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add googlechrome/modern-web-guidance --skill modern-web-guidance
    Скачать ZIP
    Версия
    1.0.0+457c381def89
    Автор
    Владимир Ломтев
    Репозиторий
    googlechrome/modern-web-guidance
    GitHub: googlechrome/modern-web-guidance

    Как установить

    1. 1Скопируйте команду из блока установки.
    2. 2Запустите её в терминале из каталога проекта.

    Документация

    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.

    Требования и возможности

    Источник пакета
    https://github.com/googlechrome/modern-web-guidance/tree/457c381def89ce6213a171238f92eea63e9eaeb2/skills/modern-web-guidance

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md56250e7aae3cc355b04b...
    guides/accessibility/accessibility.md24640cba525364b8c1223...
    guides/accessibility/accessible-error-announcement.md70915e2ee36ebef9da9f...
    guides/built-in-ai/language-detection.md361930818bb72894aa49...
    guides/built-in-ai/language-model.md166755b8848267f34e636...

    Частые вопросы

    Как установить Modern Web Guidance?
    Используйте команду npx skills add googlechrome/modern-web-guidance --skill modern-web-guidance или скачайте ZIP-архив.
    Можно ли скачать Modern Web Guidance бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

    Похожие инструменты

    Смотреть все
    React DoctorUse when finishing a feature, fixing a bug, before committing React code, or when the user types `/doctor`, asks to scan, triage, or clean up React diagnostics. Covers lint, accessibility, bundle size, architecture. Includes a regression check and a full local-triage workflow that fetches the canonical playbook.Argent Android Emulator SetupSet up and connect to an Android emulator using argent MCP tools. Use when starting a new session on Android, booting an emulator, getting a device serial, or before any UI interaction task.Fireworks Tech GraphCreate technical diagrams such as software architecture, data flow, flowcharts, sequence diagrams, C4 reviews, cloud deployments, event streams, observability investigations, agent/memory systems, UML, ER, network topology, timelines, and technical concept maps, then export SVG, PNG, focused semantic SVG-to-GIF motion, or offline interactive HTML. Treat direct requests such as "Generate a GIF", "生成 GIF", or "制作 GIF" as motion requests, and use this skill when the user asks to visualize a system or engineering concept. Do not use for photos, raster artwork, or quantitative data charts.
    Комментарии

    Войдите, чтобы оставить комментарий.

    Комментариев пока нет.

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add googlechrome/modern-web-guidance --skill modern-web-guidance
    Скачать ZIP
    Версия
    1.0.0+457c381def89
    Автор
    Владимир Ломтев
    Репозиторий
    googlechrome/modern-web-guidance
    GitHub: googlechrome/modern-web-guidance
    0
    Просмотры
    1
    Skill VetterSecurity-first vetting for OpenClaw skills. Use before installing any skill from ClawHub, GitHub, or other sources.