← ClaudeAtlas

modern-web-guidancelisted

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.
iamtatsuki05/dotfiles · ★ 0 · Web & Frontend · score 56
Install: claude install-skill iamtatsuki05/dotfiles
# 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`. ```sh npx -y modern-web-guidance@0.0.169 search "<query>" --skill-version 2026_05_16-c5e7870 ``` **Example Output**: ```json [ { "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: > ```sh > npx -y modern-web-guidance