browser-stack
Cross-browser and cross-device testing using BrowserStack or Sauce Labs
Best use case
browser-stack is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Cross-browser and cross-device testing using BrowserStack or Sauce Labs
Teams using browser-stack should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/browser-stack/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How browser-stack Compares
| Feature / Agent | browser-stack | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Cross-browser and cross-device testing using BrowserStack or Sauce Labs
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Browser Stack Skill
## Purpose
Execute cross-browser and cross-device testing using cloud testing platforms like BrowserStack or Sauce Labs.
## Capabilities
- Run tests on real devices and browsers
- Capture screenshots across device/browser combinations
- Test on multiple browser versions
- Generate compatibility reports
- Visual regression testing across platforms
- Performance testing on real devices
## Target Processes
- responsive-design.js (crossDeviceTestingTask)
- accessibility-audit.js
- usability-testing.js
## Integration Points
- BrowserStack API
- Sauce Labs API
- Selenium WebDriver
- Playwright
## Input Schema
```json
{
"type": "object",
"properties": {
"platform": {
"type": "string",
"enum": ["browserstack", "saucelabs"],
"default": "browserstack"
},
"testUrl": {
"type": "string",
"description": "URL to test"
},
"browsers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"browser": { "type": "string" },
"version": { "type": "string" },
"os": { "type": "string" }
}
}
},
"devices": {
"type": "array",
"items": {
"type": "object",
"properties": {
"device": { "type": "string" },
"osVersion": { "type": "string" }
}
}
},
"testType": {
"type": "string",
"enum": ["screenshot", "functional", "visual-regression", "performance"],
"default": "screenshot"
},
"viewports": {
"type": "array",
"items": {
"type": "object",
"properties": {
"width": { "type": "number" },
"height": { "type": "number" }
}
}
}
},
"required": ["testUrl"]
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
"testResults": {
"type": "array",
"items": {
"type": "object",
"properties": {
"browser": { "type": "string" },
"device": { "type": "string" },
"status": { "type": "string" },
"screenshotUrl": { "type": "string" }
}
}
},
"compatibilityMatrix": {
"type": "object",
"description": "Browser/device compatibility summary"
},
"issues": {
"type": "array",
"description": "Detected compatibility issues"
},
"reportUrl": {
"type": "string",
"description": "URL to full test report"
}
}
}
```
## Usage Example
```javascript
const result = await skill.execute({
platform: 'browserstack',
testUrl: 'https://example.com',
browsers: [
{ browser: 'chrome', version: 'latest', os: 'Windows 11' },
{ browser: 'safari', version: 'latest', os: 'OS X Sonoma' }
],
devices: [
{ device: 'iPhone 15', osVersion: '17' },
{ device: 'Samsung Galaxy S24', osVersion: '14' }
],
testType: 'screenshot'
});
```Related Skills
usb-stack
USB device and host stack implementation expertise
tolerance-stackup
Skill for dimensional tolerance analysis and stack-up calculations
ucsc-genome-browser-querier
UCSC Genome Browser query skill for genome annotation retrieval and track data access
igv-genome-browser
IGV integration skill for interactive genome visualization and review
tech-stack-scanner
Automated technical architecture review, security assessment, scalability analysis
haystack-pipeline
Haystack NLP pipeline configuration for document processing and QA
process-builder
Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to implementation.
babysitter
Orchestrate via @babysitter. Use this skill when asked to babysit a run, orchestrate a process or whenever it is called explicitly. (babysit, babysitter, orchestrate, orchestrate a run, workflow, etc.)
yolo
Run Babysitter autonomously with minimal manual interruption.
user-install
Install the user-level Babysitter Codex setup.
team-install
Install the team-pinned Babysitter Codex workspace setup.
retrospect
Summarize or retrospect on a completed Babysitter run.