scoutqa-test

Runs autonomous exploratory web application tests via the ScoutQA CLI.

1|1|Updated Jan 29, 2026
One-click install
npx skills add https://github.com/ultraviollettnympho/transit-ticket --skill scoutqa-test-ultraviollettnympho
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: scoutqa-test
Source: https://github.com/ultraviollettnympho/transit-ticket/tree/main/.github/skills/scoutqa-test
Command: npx skills add https://github.com/ultraviollettnympho/transit-ticket --skill scoutqa-test-ultraviollettnympho

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @scoutqa/cli.

What problem does it solve? Manually verifying web application features, accessibility compliance, and user flows after every change is slow and error-prone. This Skill delegates that work to the ScoutQA CLI, which autonomously explores a website, discovers bugs, and reports issues with severity and location. ## Core Features & Use Cases - Autonomous Exploratory Testing: Describe what to test in natural language and ScoutQA determines how to test it, covering smoke tests, form validation, checkout flows, and authentication. - Parallel Test Execution: Launch multiple tests simultaneously (e.g., security, core features, accessibility) to maximize coverage while continuing other work. - Issue Tracking & Verification: List issues from a past execution with list-issues and re-verify fixes with issue-verify. - Use Case: After implementing a registration form on localhost:3000, proactively run a ScoutQA test to verify validation rules, error messages, and edge cases before shipping. ## Quick Start Ask the assistant to test your website with ScoutQA, for example: run an exploratory test on https://example.com checking the login flow and accessibility compliance.

Frequently Asked Questions about scoutqa-test

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run automated exploratory testing on a website?

Run scoutqa with a --url and a natural language --prompt describing what to verify, such as form validation or checkout flows. ScoutQA autonomously explores the site and reports issues with severity, category, impact, and location.

How do I test a localhost web app with ScoutQA?

ScoutQA supports localhost and 127.0.0.1 URLs directly with no extra setup. Pass the local address as the --url value, for example scoutqa --url http://localhost:3000 --prompt with your test instructions.

Can I run multiple website tests in parallel?

Yes, invoke multiple scoutqa commands in a single message, each with the Bash tool timeout set to 5000 milliseconds. Each call returns an execution ID and browser URL while the tests continue running remotely in parallel.

How do I verify a bug fix with ScoutQA?

First run scoutqa list-issues --execution-id to find the issue ID from a previous execution. Then run scoutqa issue-verify --issue-id, which creates a verification execution and streams the agent's progress.

Why does scoutqa return command not found?

The CLI is not installed. Install it globally with npm i -g @scoutqa/cli@latest, then authenticate with scoutqa auth login before running tests.