Skills Plugins MCP Prompt Model 博客 我的中心
开发编程 #python #react #data #image

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.

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=googlechrome-modern-web-guidance-skills-modern-web-guidance-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name modern-web-guidance description 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. 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_08_31-6ba3cecd 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>" If the output is truncated, you must repeat the command but redirect to a file and read that file. Example Output : The markdown content of the guide describing implementation steps... Step 3. Verify Guidance Compliance When generating or modifying code, cross-check the implementation against the retrieved guide before concluding: Applicable Guidance & Fallbacks : Ensure the relevant modern patterns and necessary fallback strategies from the guide are correctly applied, without forcing unrequested features. Task Fulfillment : Confirm that the implementation fully satisfies the user's request. Using npx / pnpx Prefer pnpx over npx if pnpm is available (note: pnpx does not use the -y flag). When requesting tool permissions, allowlist npx -y modern-web-guidance@latest * specifically (or pnpx modern-web-guidance@latest * ), never bare npx * or pnpx * . 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.
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。