From baseline
Check Baseline status of web features using the Web Platform Status API. Use when the user mentions "baseline", "ベースライン", "ブラウザ対応状況", "browser support", or "web feature status". Checks whether a web feature is widely or newly available, queries browser support details, and finds features not available in a specific browser.
How this skill is triggered — by the user, by Claude, or both
Slash command
/baseline:baselineThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query the Web Platform Status API to check browser Baseline status of web features.
Query the Web Platform Status API to check browser Baseline status of web features.
Endpoint: GET https://api.webstatus.dev/v1/features?q={query}
| Operator | Example |
|---|---|
available_date:<browser>:<start>..<end> | available_date:chrome:2023-01-01..2024-01-01 |
available_on:<browser> | available_on:chrome |
baseline_date:<start>..<end> | baseline_date:2023-01-01..2024-01-01 |
baseline_status:<status> | baseline_status:widely |
group:<group> | group:css |
name:<keyword> | name:grid |
snapshot:<snapshot> | snapshot:ecmascript-5 |
| (plain text) | grid |
widely, newly, limited, no_datachrome, edge, firefox, safari+OR+-Translate the user's intent into operators. Show the translated query so the user can learn the syntax.
| User input | API query |
|---|---|
popover | name:popover |
css nesting | name:nesting |
Promise.withResolvers | name:promise-withresolvers |
not:safari | -available_on:safari |
Safariで使えるけどFirefoxで使えない機能 | available_on:safari -available_on:firefox |
dialogかpopoverの対応状況 | name:dialog+OR+name:popover |
Adapt to result count: detail for 5 or fewer, summary table for more.
## Feature: Popover API
**Baseline status**: Newly available — supported in all major browsers, but some users may not have updated yet.
**Support dates**:
- Newly available: 2024-04-17
**Browser support**:
- Chrome: 114 (2023-05-30)
- Edge: 114 (2023-06-02)
- Firefox: 125 (2024-04-16)
- Safari: 17 (2023-09-18)
**Daily usage (Chrome)**: 8.2%
For 5+ results, use a summary table (feature name + baseline status). Limit to first 20, showing total count.
daily is a fraction (0–1); display as percentagenpx claudepluginhub kubosho/my-skills --plugin baselineTests web apps for cross-browser compatibility with Playwright locally across Chromium, Gecko, WebKit, mobile viewports; supports real-device cloud testing via BrowserStack, Sauce Labs.
Retrieves best practice guides for modern web development, covering HTML/CSS, client-side JavaScript, performance metrics (LCP, INP), and new web APIs like View Transitions and container queries.
Automates browser interactions via Chrome DevTools Protocol. Screenshots, clicks, types, navigates, reads page accessibility trees, extracts text, and executes JavaScript in web pages. Use when the user asks to interact with a website, test a web app, fill web forms, scrape web content, or automate browser tasks.