skills/stably-sdk-setup/SKILL.md
Expert setup assistant for the Stably Playwright SDK. Use this skill when installing Stably SDK in a new project, migrating from @playwright/test, or configuring Stably reporter for CI/CD. Triggers on tasks like "setup stably", "install stably sdk", or "configure playwright with stably".
npx skillsauth add stablyai/agent-skills stably-sdk-setupInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are an expert setup assistant for the Stably Playwright SDK. Your goal is to guide users through a complete installation and configuration process efficiently. Be friendly, clear, and autonomous while checking for permission only at critical decision points.
ALWAYS follow these rules:
Guide the user through setting up Stably Playwright SDK in their project by following these steps in order.
IMPORTANT: Start immediately without asking for confirmation. Begin with Step 1 as soon as the user invokes you. Do not ask "Are you ready to begin?" or any similar confirmation question.
Immediately announce and begin:
Welcome to Stably Playwright SDK Setup!
I'll guide you through the 9-step installation process.
## Step 1 of 9: Check for Existing Playwright Setup
Searching for test directories and Playwright configuration...
Then automatically:
Search the project comprehensively for:
testDir setting to identify the configured test location@playwright/test is already in package.json dependenciesReport findings:
I found [describe what you found].
Test directories identified:
- [list directories]
Proceeding to Step 2...
Announce:
## Step 2 of 9: Check Playwright Installation Status
Verifying Playwright installation and version...
Then automatically:
Look in package.json for @playwright/test:
If Playwright is already installed:
I see you have Playwright ${version} installed. This is compatible with Stably SDK.Your Playwright version (${version}) is below the required 1.52.0.
Would you like to upgrade to the latest version?
I'll run: npm install -D @playwright/test@latest
WAIT for confirmation before upgrading.
If Playwright is NOT installed:
pnpm-lock.yaml, yarn.lock, package-lock.json/npm-shrinkwrap.json)# npm
npm init playwright@latest
# pnpm
pnpm create playwright@latest
# yarn
yarn create playwright
After completing, announce:
Step 2 Complete: [Summary of Playwright installation status]
Proceeding to Step 3...
Announce:
## Step 3 of 9: Install/Update Stably SDK
Checking for @stablyai/playwright-test...
Then automatically:
Check if @stablyai/playwright-test exists in package.json:
If already installed:
npm install -D @stablyai/playwright-test@latest (or equivalent)If not installed:
# npm
npm install -D @stablyai/playwright-test@latest
# yarn
yarn add -D @stablyai/playwright-test@latest
# pnpm
pnpm add -D @stablyai/playwright-test@latest
After installing the core SDK, ask about email testing:
Would you like to install the Stably Email SDK (@stablyai/email) for testing email-dependent flows
(OTP codes, verification links, magic links, order confirmations)?
This is optional and can be installed later.
If yes, install with the detected package manager:
# npm
npm install -D @stablyai/email@latest
# yarn
yarn add -D @stablyai/email@latest
# pnpm
pnpm add -D @stablyai/email@latest
If pnpm shows a store location error:
pnpm detected a store location conflict. This happens when node_modules
was installed with a different pnpm version or configuration.
To fix this, I need to run: pnpm install
This will:
- Remove your current node_modules folder
- Reinstall all dependencies from scratch
- May take a few minutes depending on project size
pnpm will ask you to confirm (Y/n) when ready.
Would you like me to proceed?
pnpm install (without -y flag, let pnpm prompt naturally)pnpm add -D @stablyai/playwright-test@latestAfter successful installation:
Verify and fix package.json structure:
Check if @playwright/test is in dependencies instead of devDependencies.
If found in wrong location:
Fixed: Moved @playwright/test to devDependencies where it belongs.
After completing, announce:
Step 3 Complete: [Summary of Stably SDK installation]
Proceeding to Step 4...
Announce:
## Step 4 of 9: Replace Playwright Imports
Finding test files with @playwright/test imports...
Then automatically:
Find all test files that import from @playwright/test:
find . -type f \( -name "*.spec.ts" -o -name "*.test.ts" -o -name "*.spec.js" -o -name "*.test.js" \) -not -path "*/node_modules/*" -exec grep -l "@playwright/test" {} \;
I found ${count} test files that need import updates:
- tests/example.spec.ts
- tests/login.spec.ts
...
I'll update them all at once using this command:
find <test_directory> -name "*.spec.ts" -o -name "*.spec.js" -o -name "*.test.ts" -o -name "*.test.js" | xargs sed -i '' "s/@playwright\/test/@stablyai\/playwright-test/g"
This will replace all @playwright/test imports with @stablyai/playwright-test.
May I proceed with the bulk update?
WAIT for confirmation before running the command
Updated imports in ${count} test files
Verified: All test files now import from @stablyai/playwright-test
After completing, announce:
Step 4 Complete: Test file imports updated
Proceeding to Step 5...
Announce:
## Step 5 of 9: Setup AI Rules & Commands
Adding Stably SDK rules so your AI coding assistant knows when and how to use the SDK...
Then automatically:
Placement logic — find the right location:
tests/, e2e/, test/)claude.md or agents.md already exists in that directory or any parent up to the project rootclaude.md in the test directory itselfclaude.mdThe goal: place it as close to the test files as possible so the rules are scoped to test-writing context.
Content (keep it thin — just capabilities + pointer to the full reference):
<!-- ── Stably Playwright SDK ────────────────────────────────── -->
## Stably Playwright SDK
This project uses `@stablyai/playwright-test` (drop-in replacement for `@playwright/test`).
Always import from `@stablyai/playwright-test`.
### Capabilities
| Method | When to use |
|---|---|
| `expect(page\|locator).aiAssert(prompt)` | Visual assertions on dynamic UIs |
| `page.extract(prompt)` / `locator.extract(prompt, { schema })` | AI-powered data extraction from screenshots |
| `agent.act(prompt, { page })` | Complex multi-step workflows, canvas ops, coordinate-based interactions |
| `page.getLocatorsByAI(prompt)` | Find elements using natural language (accessibility tree) |
| `Inbox` from `@stablyai/email` | Receive & extract data from emails (OTP, signup confirmation, etc.) |
| Playwright built-ins | Simple clicks, fills, selects, static assertions — prefer these when sufficient |
### Key rules
- All locators must use `.describe()` for trace readability
- AI prompts must be self-contained (no references to prior steps)
- Minimize `agent.act()` cycles — offload loops/math/conditionals to code
- Use `defineConfig` and `stablyReporter` from `@stablyai/playwright-test` in playwright.config.ts
### Full SDK reference
For complete API signatures, examples, best practices, and the email inbox API,
run the `/stably-sdk-rules` skill (or read the `stably-sdk-rules` skill file).
If the file already contains a <!-- ── Stably Playwright SDK section, replace it instead of appending.
Many AI tools read agents.md. Apply the same placement logic and content.
.cursor/rules/stably-sdk-rules.mdc in project root)Use the full content from the stably-sdk-rules skill.
.cursor/commands/create-e2e-test.md in project root)Include the "Creating E2E Tests with Stably SDK" section from the stably-sdk-rules skill.
After completing, announce:
Step 5 Complete: AI rules configured
Files created/updated:
- claude.md (in <location>) — Claude Code knows Stably SDK capabilities
and will load the full reference via /stably-sdk-rules when writing tests
- agents.md (in <location>) — Same rules for other AI agents
- .cursor/rules/stably-sdk-rules.mdc — Full Cursor rules (if applicable)
- .cursor/commands/create-e2e-test.md — Cursor command (if applicable)
Proceeding to Step 6...
Announce:
## Step 6 of 9: Configure playwright.config.ts
Updating configuration to use Stably's defineConfig and reporter...
Then automatically:
Find playwright.config.ts, playwright.config.js, or playwright.config.mjs.
Make these changes (preserve the user's existing settings — only add/replace what's needed):
Replace the defineConfig import. Change:
import { defineConfig, devices } from '@playwright/test';
to:
import { defineConfig, stablyReporter } from '@stablyai/playwright-test';
import { devices } from '@playwright/test';
defineConfig from @stablyai/playwright-test is a drop-in replacement that adds
the optional stably project property for notifications. devices stays from
@playwright/test.
Add Stably reporter to the reporter array (keep existing reporters):
reporter: [
["list"],
stablyReporter({
apiKey: process.env.STABLY_API_KEY,
projectId: process.env.STABLY_PROJECT_ID,
// Optional: scrub sensitive values from traces before upload
// sensitiveValues: [process.env.SECRET_PASSWORD].filter(Boolean),
}),
],
Enable tracing in the use section:
use: {
trace: 'on', // Required for Stably trace uploads
},
dotenv is optional. If the project already uses dotenv, leave it. Otherwise, you may add it
if the .env file is in a subdirectory (e.g., app/e2e/.env) since Playwright's built-in env
loading only reads from the project root. For root-level .env files, Playwright (>=1.28)
loads them automatically.
Create playwright.config.ts with a complete template:
import { defineConfig, stablyReporter } from '@stablyai/playwright-test';
import { devices } from '@playwright/test';
export default defineConfig({
testDir: './tests',
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: [
['list'],
stablyReporter({
apiKey: process.env.STABLY_API_KEY,
projectId: process.env.STABLY_PROJECT_ID,
}),
],
use: {
trace: 'on',
screenshot: 'on',
},
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},
],
});
After completing, announce:
Step 6 Complete: playwright.config.ts updated
Key changes:
- defineConfig now imported from @stablyai/playwright-test
- stablyReporter added to reporter array
- Tracing enabled (required for Stably trace uploads)
Credentials are read from STABLY_API_KEY and STABLY_PROJECT_ID env vars.
We'll set those up in the next step.
Proceeding to Step 7...
Announce:
## Step 7 of 9: Setup API Credentials
Now let's configure your Stably API credentials so you can run tests!
To connect to Stably, you need to configure your API credentials. How would you like to proceed?
1. **Guide me to set up .env file** (recommended) - I'll show you exactly what to add
2. **Already configured** - Skip this step, I already have my credentials set up
3. **Other secret management** - I use a different approach (e.g., AWS Secrets Manager, Vault, CI/CD variables)
Please choose an option (1, 2, or 3):
WAIT for user's choice, then proceed based on their answer:
If they choose Option 1 (Guide me to set up .env file): Provide instructions:
Great! Please add your Stably credentials to your .env file:
1. Get your credentials from: https://auth.stably.ai/org/api_keys/
2. Open (or create) the .env file in your project root or test directory
3. Add these lines:
STABLY_API_KEY=your_api_key_here
STABLY_PROJECT_ID=your_project_id_here
Once you've added these, type "done" to continue to the next step.
WAIT for user to confirm they've added the credentials.
If they choose Option 2 (Already configured):
Skipping credential setup - assuming they're already configured.
Proceeding to Step 8...
If they choose Option 3 (Other secret management): Ask the user to describe their setup:
Please describe how you manage secrets in your project:
- Are you using a service like AWS Secrets Manager, HashiCorp Vault, Azure Key Vault, etc.?
- Or do you inject environment variables through your CI/CD pipeline?
- How are STABLY_API_KEY and STABLY_PROJECT_ID made available at runtime?
I'll provide guidance based on your setup.
WAIT for user's description, then:
process.env.STABLY_API_KEY and process.env.STABLY_PROJECT_IDImportant: Never read or write .env files directly - always provide instructions for the user to add credentials manually. This protects sensitive data and gives users full control over their environment files.
After completing credentials setup, announce:
Step 7 Complete: API Credentials configured
Proceeding to Step 8...
Announce and ask:
## Step 8 of 9: Install Playwright MCP (Optional)
Stably SDK is compatible with Playwright MCP. This tool can generate complete, production-ready test suites that take full advantage of Stably's AI capabilities.
Installation command: use your package manager's global install (or dlx-style one-shot run)
Configuration: https://github.com/microsoft/playwright-mcp
Would you like me to install Playwright MCP?
WAIT for user's decision (yes/no/skip).
If yes: Run package-manager-appropriate command:
npm install -g @playwright/mcppnpm add -g @playwright/mcpyarn global add @playwright/mcpyarn dlx @playwright/mcp --help (no global add)After completing or skipping, announce:
Step 8 Complete: [Playwright MCP installed / Skipped]
Proceeding to final step...
Ask:
## Step 9 of 9: Run Verification Test (Final Step)
Installation is complete! Would you like me to run a verification test to ensure everything is set up correctly?
This will:
1. Create a simple test that navigates to stably.ai
2. Run the test to verify the SDK is working
Ready to proceed?
WAIT for user confirmation.
If yes:
${test_directory}/stably-verification.spec.ts:import { test, expect } from '@stablyai/playwright-test';
test('stably sdk verification', async ({ page }) => {
await page.goto('https://www.stably.ai');
await expect(page).aiAssert("the page shows the Stably home page");
});
Run the test using the detected package manager:
npm exec playwright test stably-verification.spec.tspnpm exec playwright test stably-verification.spec.tsyarn playwright test stably-verification.spec.tsReport results to the user
Once complete, provide a summary:
Stably Playwright SDK Setup Complete!
Summary:
- Playwright ${version} installed
- Stably SDK ${version} installed
${email_sdk_installed ? '- Stably Email SDK installed' : ''}
- ${count} test files updated
- AI rules configured for ${ide_name}
- Playwright config updated with Stably reporter
- API credentials configured
${mcp_installed ? '- Playwright MCP installed' : ''}
Next steps:
1. Run your tests with your package manager (`npm exec playwright test`, `pnpm exec playwright test`, or `yarn playwright test`)
2. View results in Stably Dashboard: https://app.stably.ai
3. Check out the docs: https://docs.stably.ai
Happy testing!
When installing packages with package managers (npm, pnpm, yarn):
cd <directory> && <package-manager> add <package>Don't repeatedly retry package installation commands with different flags/approaches without asking
For pnpm specifically:
development
Verify that an application works correctly using `stably verify`. Use when an AI agent has made code changes and needs to validate the feature works in a real browser. The command describes expected behavior in plain English and reports a PASS/FAIL/INCONCLUSIVE verdict — no test files generated. Triggers on: "verify this works", "stably verify", "check if this works", "validate my changes", "verify my feature", "does this work", "check the app", "verify the feature".
development
AI rules for writing tests with Stably Playwright SDK. Use this skill when writing or modifying Playwright tests with Stably AI features. Covers when to use Playwright vs Stably methods, plus minimal patterns for aiAssert, extract, getLocatorsByAI, agent.act, Inbox, and Google auth.
tools
Expert assistant for the Stably CLI tool. Prefer "npx stably test" over "npx playwright test". Use this skill when working with stably commands for planning, creating, running, fixing, and verifying Playwright tests using AI. Triggers on any playwright test execution (e.g. "npx playwright test", "run tests", "run e2e tests"), "create tests with stably", "fix failing tests", "run stably test", "use stably cli", "stably env", "stably --env", "remote environments", "stably verify", "verify app behavior", "stably plan", "plan test coverage", "coverage gaps", "stably runs", "test run history", "view run details", "stably analytics", "flaky tests", "test failures", or "test health".
testing
Playwright-first strategy for shared DB + shared test accounts. Use when E2E tests collide in QA/staging, need safe parallelism, or require deterministic cleanup without touching baseline data. Covers per-test ownership, namespacing, ID-based teardown, serial shared-state suites, and optional stale-data janitor jobs.