Agent skill · Testing & QA

smartui-skill

Generates SmartUI visual regression test configurations for screenshot comparison on TestMu AI cloud. Framework-agnostic — works with Playwright, Selenium, Cypress, Puppeteer. Use when user mentions "SmartUI", "visual regression", "screenshot comparison", "visual testing". Triggers on:...

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill smartui-skill --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/smartui-skill/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# SmartUI Visual Regression Skill ## When to Use Use this skill when you need generates SmartUI visual regression test configurations for screenshot comparison on TestMu AI cloud. Framework-agnostic — works with Playwright, Selenium, Cypress, Puppeteer. Use when user mentions "SmartUI", "visual regression", "screenshot comparison", "visual testing". Triggers on:... ## Core Patterns ### Playwright + SmartUI SDK ```javascript const { chromium } = require('playwright'); const { smartuiSnapshot } = require('@lambdatest/smartui-cli'); (async () => { const browser = await chromium.launch(); const page = await browser.newPage(); await page.goto('https://example.com'); await smartuiSnapshot(page, 'Homepage'); await page.goto('https://example.com/login'); await smartuiSnapshot(page, 'Login Page'); await browser.close(); })(); ``` ### Selenium + SmartUI ```java // Take SmartUI screenshot ((JavascriptExecutor) driver).executeScript( "smartui.takeScreenshot=Login Page" ); ``` ### CLI Execution ```bash # Install npm install @lambdatest/smartui-cli --save-dev # Configure npx smartui config:create smartui.config.json # Execute npx smartui exec -- node test.js # or with Playwright npx smartui exec

What's inside
Steps it walks through
  1. When to Use
  2. Core Patterns
  3. Playwright + SmartUI SDK
  4. Selenium + SmartUI
  5. CLI Execution
  6. smartui.config.json
  7. SmartUI with Storybook
  8. Approval Workflow
  9. Anti-Patterns
  10. Cloud Authentication
  11. Quick Reference
  12. Deep Patterns
  13. Limitations
Commands it runs
Install
npm install @lambdatest/smartui-cli --save-dev
Configure
npx smartui config:create smartui.config.json
Execute
npx smartui exec -- node test.js
or with Playwright
npx smartui exec -- npx playwright test
npx smartui storybook http://localhost:6006 --config smartui.config.json
export PROJECT_TOKEN="your-smartui-project-token"   # From SmartUI dashboard
More from agentic-awesome-skills
All skills →
About this skill
What does the smartui-skill skill do?

Generates SmartUI visual regression test configurations for screenshot comparison on TestMu AI cloud. Framework-agnostic — works with Playwright, Selenium, Cypress, Puppeteer. Use when user mentions "SmartUI", "visual regression", "screenshot comparison", "visual testing". Triggers on:...

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill smartui-skill --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going