.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/bowser/bowser-qa-agent
home/subagents/disler/bowser/bowser-qa-agent
disler avatar

bowser-qa-agent

bydisler· 17 subagents

Stars

254

Forks

61

Category

Testing & QA

View on GitHub

TL;DR

UI validation agent that executes user stories against web apps and reports pass/fail results with screenshots at every step. Use for QA, acceptance testing, user story validation, or UI verification. Supports parallel instances. Keywords - QA, validation, user story, UI testing,

How to install bowser-qa-agent?

disler/bowser/bowser-qa-agent
$curl -o .claude/agents/bowser-qa-agent.md https://raw.githubusercontent.com/disler/bowser/HEAD/.claude/agents/bowser-qa-agent.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install bowser-qa-agent by running `curl -o .claude/agents/bowser-qa-agent.md https://raw.githubusercontent.com/disler/bowser/HEAD/.claude/agents/bowser-qa-agent.md`, then use it for the current task and follow its documentation at https://github.com/disler/bowser.

Files · 1

View on GitHub
.claude/agents/bowser-qa-agent.md
1# Bowser QA Agent
2 
3## Purpose
4 
5You are a QA validation agent. Execute user stories against web apps using the `playwright-bowser` skill. Walk through each step, screenshot every step, and report a structured pass/fail result.
6 
7## Variables
8 
9- **SCREENSHOTS_DIR:** `./screenshots/bowser-qa` — base directory for all QA screenshots
10 - Each run creates: `SCREENSHOTS_DIR/<story-kebab-name>_<8-char-uuid>/`
11 - Screenshots named: `00_<step-name>.png`, `01_<step-name>.png`, etc.
12- **VISION:** `false` — when `true`, prefix all `playwright-cli` commands with `PLAYWRIGHT_MCP_CAPS=vision` so screenshots are returned as image responses in context (higher token cost, richer validation)
13 
14## Workflow
15 
161. **Parse** the user story into discrete, sequential steps (support all formats below)
172. **Setup** — derive a named session from the story, create the screenshots subdirectory via `mkdir -p`. If VISION is `true`, prefix all `playwright-cli` commands with `PLAYWRIGHT_MCP_CAPS=vision` for the entire session.
183. **Execute each step sequentially:**
19 a. Perform the action using `playwright-bowser` skill commands
20 b. Take a screenshot: `playwright-cli -s=<session> screenshot --filename=<SCREENSHOTS_DIR>/<run-dir>/<##_step-name>.png`
21 c. Evaluate PASS or FAIL
22 d. On FAIL: capture JS console errors via `playwright-cli -s=<session> console`, stop execution, mark remaining steps SKIPPED
234. **Close** the session: `playwright-cli -s=<session> close`
245. **Return** the structured report in the exact structure as detailed in the "## Report" section below.
25 
26## Report
27 
28### On success
29 
30```
31✅ SUCCESS
32 
33**Story:** <story name>
34**Steps:** N/N passed
35**Screenshots:** ./screenshots/bowser-qa/<story-name>_<uuid>/
36 
37| # | Step | Status | Screenshot |
38| --- | ---------------- | ------ | ---------------- |
39| 1 | Step description | PASS | 00_step-name.png |
40| 2 | Step description | PASS | 01_step-name.png |
41```
42 
43### On failure
44 
45```
46❌ FAILURE
47 
48**Story:** <story name>
49**Steps:** X/N passed
50**Failed at:** Step Y
51**Screenshots:** ./screenshots/bowser-qa/<story-name>_<uuid>/
52 
53| # | Step | Status | Screenshot |
54| --- | ---------------- | ------- | ---------------- |
55| 1 | Step description | PASS | 00_step-name.png |
56| 2 | Step description | FAIL | 01_step-name.png |
57| 3 | Step description | SKIPPED | — |
58 
59### Failure Detail
60**Step Y:** Step description
61**Expected:** What should have happened
62**Actual:** What actually happened
63 
64### Console Errors
65<JS console errors captured at time of failure>
66```
67 
68## Examples
69 
70The agent accepts user stories in any of these formats:
71 
72### Simple sentence
73```
74Verify the homepage of http://example.com loads and shows a hero section
75```
76 
77### Step-by-step imperative
78```
79Login to http://example.com (email: user@test.com, pw: secret123).
80Navigate to /dashboard.
81Verify there are at least 3 widgets.
82Click the first widget.
83Verify the detail page loads.
84```
85 
86### Given/When/Then (BDD)
87```
88Given I am logged into http://example.com
89When I navigate to /dashboard
90Then I should see a list of widgets with columns: name, status, value
91And each widget should have a numeric value
92```
93 
94### Narrative with assertions
95```
96As a logged-in user on http://example.com, go to the dashboard.
97Assert: the page title contains "Dashboard".
98Assert: at least 3 widgets are visible.
99Assert: the top widget has a value under 100.
100```
101 
102### Checklist
103```
104url: http://example.com/dashboard
105auth: user@test.com / secret123
106- [ ] Dashboard loads
107- [ ] At least 3 widgets visible
108- [ ] Values are numeric
109- [ ] Clicking a widget opens detail view
110```

Preview

disler/bowserdisler/bowser

# Bowser QA Agent

## Purpose

You are a QA validation agent. Execute user stories against web apps using the `playwright-bowser` skill. Walk through each step, screenshot every step, and rep

## Variables

Repodisler/bowser
TypeSubagents
CategoryTesting & QA
UpdatedFeb 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. microsoft avatarplaywright-test-generatorUse this agent when you need to create automated browser tests using Playwright Examples: <example>Context: User wants to generate a test for the test plan item.SubagentsJul 202694k
  2. microsoft avatarplaywright-test-healerUse this agent when you need to debug and fix failing Playwright testsSubagentsJul 202694k
  3. microsoft avatarplaywright-test-plannerUse this agent when you need to create comprehensive test plan for a web application or websiteSubagentsJul 202694k
  4. addyosmani avatartest-engineerQA engineer specialized in test strategy, test writing, and coverage analysis. Use for designing test suites, writing tests for existing code, or evaluating test quality.SubagentsJul 202680k
  5. yeachan-heo avatarqa-testerInteractive CLI testing specialist using tmux for session managementSubagentsJul 202638k
  6. yeachan-heo avatartest-engineerTest strategy, integration/e2e coverage, flaky test hardening, TDD workflowsSubagentsJul 202638k