Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

web-features-summary网络功能总结

Agent Skill

web-features-summary 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

326

周安装

14

GitHub Stars

1

下载量

114
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:web-features-summary(网络功能总结)
来源仓库:https://github.com/chen-ye/cye-agent-skills
仓库路径:skills/web-features-summary
安装命令:
npx skills add https://github.com/chen-ye/cye-agent-skills --skill web-features-summary
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/chen-ye/cye-agent-skills --skill web-features-summary

简介

用于查找、检索和筛选网络功能相关摘要信息,辅助快速理解技术特性。

  • 适用于根据关键词或任务需求定位候选结果,支持多场景信息聚合。
  • 通过指定 GitHub 仓库路径安装,兼容 Codex、Claude、Cursor 等开发环境。
  • 建议在使用前检查仓库活跃度、权限设置及是否允许外部数据调用。
  • web-features-summary 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Web Features Summary (Baseline 2023-2026)

This skill summarizes web platform features that achieved Baseline status (available in all major browsers: Chrome, Firefox, Safari) between January 2023 and early 2026. Use this to ensure recommended APIs are widely available without polyfills.

High-Impact Modern Features (Quick Reference)

JavaScript & Web APIs

  • Array & Collections:

- toSorted(), toReversed(), toSpliced(), with() (Immutable array updates) - Object.groupBy(), Map.groupBy() (Data grouping) - Set methods: intersection(), union(), difference(), symmetricDifference()

  • Async & Control Flow:

- Promise.withResolvers() (External promise resolution) - Promise.try() (Wrap sync/async functions in a Promise) - AbortSignal.any() (Combine multiple abort signals) - Array.fromAsync() (Consume async iterables)

  • Utilities:

- URL.canParse() (Safe URL validation) - Intl.Segmenter (Locale-sensitive text segmentation) - Intl.DurationFormat (Duration string formatting) - RegExp.escape() (Escape special characters in regex strings) - Uint8Array methods: toBase64(), fromBase64(), toHex(), fromHex() - Iterator helpers: map(), filter(), reduce(), toArray() (on iterators)

CSS

  • Layout & Scoping:

- Subgrid: (grid-template-columns: subgrid) Align nested grids to parent tracks. - Container Queries: (@container) Style based on parent size, not viewport. - @scope: (@scope (.card) to (.content)) True style scoping without BEM/Modules. - Nesting: Native CSS nesting (similar to Sass).

  • Colors & Theming:

- light-dark(): native light/dark mode color switching. - color-mix(): Mix colors in any space (e.g., color-mix(in srgb, red, blue)). - Relative colors: Derive colors from others (rgb(from var(--bg) r g b / 50%)).

  • Typography & Math:

- text-wrap: balance (Titles) & text-wrap: pretty (Body text). - Math functions: pow(), sqrt(), hypot(), log(), exp(), round(), mod(), rem(), abs(), sign().

  • UI & Interaction:

- scrollbar-color / scrollbar-width (Standardized scrollbar styling). - @starting-style (Entry animations for display: none elements). - view-transitions (Native page/element transitions) & active-view-transition. - ::details-content (Style the inner content of <details> independently).

HTML & DOM

  • Interactivity:

- popover API (Native overlays/tooltips without z-index wars). - <dialog> element (now with requestClose() for safe closing). - inert attribute (Disable interaction for parts of the DOM).

  • Semantics & Loading:

- <search> element (Semantic wrapper for search forms). - <link rel="modulepreload"> (Preload ES modules). - fetchpriority (Hint resource priority to browser).

Chrome-Supported Modern Features (Limited Availability)

These features are usable in modern Chrome/Edge (Chromium) but lack full cross-browser support. Use with caution and always provide fallbacks.

CSS & UI

  • Anchor Positioning: (position-anchor, anchor())

- *Status:* Chrome 125+. No Firefox/Safari support. - *Use Case:* Tying tooltips/menus to trigger elements without JS. - *Interop:* Requires polyfill or JS fallback (e.g., Floating UI) for other browsers.

  • Scroll-Driven Animations: (animation-timeline: scroll())

- *Status:* Chrome 115+. No stable Firefox/Safari. - *Use Case:* Parallax effects, reading progress bars linked to scroll position. - *Interop:* Graceful degradation (animation just doesn't play).

  • @scope:

- *Status:* Chrome 118+, Safari 17.4+. Firefox pending. - *Use Case:* True component-level styling isolation. - *Interop:* Use BEM/Modules as fallback for Firefox.

  • Container Style Queries: (@container style(...))

- *Status:* Chrome 111+. No Firefox/Safari. - *Use Case:* Styling children based on parent's *computed values* (e.g., color). - *Interop:* Highly experimental.

Web Capabilities (Fugu)

  • File System Access API: (window.showOpenFilePicker())

- *Status:* Chrome 86+, Safari (Origin Private FS only). Firefox (Origin Private FS only). - *Use Case:* Reading/Writing local user files directly. - *Interop:* Progressive enhancement only.

  • View Transitions (Cross-Document): (@view-transition {navigation: auto;})

- *Status:* Chrome 126+. Safari 18+. Firefox pending. - *Use Case:* Morphing animations between multi-page navigations. - *Interop:* Graceful degradation (instant navigation). - Web Hardware APIs: Chrome-only. Firefox/Safari unlikely to implement.

Modern Best Practices & Discarded Idioms

Adopt These Idioms

  • Immutable Arrays: Use toSorted(), toSpliced(), and with() instead of mutation.
  • Native Grouping: Use Object.groupBy() instead of reduce() patterns.
  • Parent Selectors: Use :has() instead of JS-based class toggling for parent state.
  • Component-First Responsive: Use @container instead of @media for internal component layout.
  • Native Overlays: Use <dialog> and popover instead of custom modal/tooltip logic.
  • Native Nesting: Use CSS nesting directly; reduce reliance on preprocessors for basic nesting.

Discard These Patterns

  • Mutation-in-place: Stop using sort() or reverse() on original arrays when state management is involved.
  • Viewport-Only Design: Stop assuming component layout is tied strictly to screen size.
  • JS-Heavy UI: Stop using JavaScript for focus trapping, z-index management, and simple "click-outside" logic that <dialog> and popover handle natively.

Procedural Guidance

Verify Feature Availability

  1. Check the feature name against the list in references/baseline_2023_2026.md.
  2. Check references/modern_idioms.md for recommended coding patterns.
  3. Verify the "Baseline Status" and date.

Additional Resources

Reference Files

  • references/baseline_2023_2026.md - Comprehensive list of 100+ web features reaching Baseline status.
  • references/modern_idioms.md - Detailed comparison of legacy vs. modern coding patterns.

Maintenance

  • MAINTENANCE.md - Instructions for updating this skill with the latest web-features data.

Source Data

Information derived from the web-features project.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.39%
按下载量换算43

Claude

29.4%
按下载量换算34

Cursor

20.47%
按下载量换算23

Gemini CLI

9.66%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills