/install caniuse
Browser Compatibility Query
Query browser compatibility data for web features using the caniuse CLI tool.
Prerequisites Check
Before querying, verify caniuse-cli is installed:
which caniuse || echo "NOT_INSTALLED"
If not installed, tell the user:
caniuse-cli is not installed. Install it with:
npm install -g @bramus/caniuse-cli
Querying Compatibility
Run the caniuse command with the feature name:
caniuse \x3Cfeature-name>
Feature name formats:
- Hyphenated:
caniuse viewport-units - Quoted phrases:
caniuse "viewport units" - With special chars:
caniuse @property
Common feature name mappings (user term → caniuse query):
:has()selector →css-has:where()selector →css-where:is()selector →css-matches-pseudo- container queries →
css-container-queries(size) orcss-container-queries-style(style) - CSS nesting →
css-nesting - subgrid →
subgrid - aspect-ratio →
css-aspect-ratio - gap in flexbox →
flexbox-gap - CSS grid →
css-grid - flexbox →
flexbox
JS/API features:
- ES modules →
es6-module - async/await →
async-functions - optional chaining →
mdn-javascript_operators_optional_chaining - fetch API →
fetch - service workers →
serviceworkers - WebGPU →
webgpu
Presenting Results
After running the command:
-
Show the compatibility table as returned by caniuse
-
Highlight key findings:
- Which major browsers fully support it
- Any browsers with partial support (note the limitations)
- Browsers that don't support it at all
-
Call out important notes if the output includes numbered notes (these often contain critical info about prefixes, flags, or partial implementations)
-
Give practical advice based on the results:
- If widely supported: "Safe to use in production"
- If partial support: "Works but check the notes for limitations"
- If poor support: "Consider a polyfill or fallback"
Handling Unknown Features
If caniuse returns "Nothing was found":
-
Check the mapping table above — many features have specific caniuse names (e.g.,
:has()→css-has) -
Try common prefixes:
- CSS properties: try
css-prefix (e.g.,css-grid,css-variables) - MDN data: try
mdn-prefix for JS features
- CSS properties: try
-
Try variations:
- Remove special characters:
:has()→hasorcss-has - Use hyphens: "container queries" →
container-queries
- Remove special characters:
-
If still not found, tell the user:
This feature might not be in the caniuse database, or uses a different name. Check https://caniuse.com to find the correct feature name.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install caniuse - 安装完成后,直接呼叫该 Skill 的名称或使用
/caniuse触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
can i use 是什么?
Query browser compatibility for CSS/JS features using caniuse-cli. Use when user asks about browser support, compatibility, "can I use X", "does X work in IE... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 70 次。
如何安装 can i use?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install caniuse」即可一键安装,无需额外配置。
can i use 是免费的吗?
是的,can i use 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
can i use 支持哪些平台?
can i use 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 can i use?
由 周祺(@zhouqicf)开发并维护,当前版本 v1.0.0。