agentsclimarketplace

Superqa skill

Skill cskwork/superqa-skill

Browser QA for any website. Use when the user says QA or browser test; gives a URL to verify; names a known domain or feature to re-QA; wants a regression sweep after a feature lands; asks for a quick smoke check; wants to record a test by clicking, schedule one, or open the QA dashboard; or needs QA against a local stack because the shared environment is down or the cases are destructive.From its SKILL.md

Install
npx -y skills add cskwork/superqa-skill

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

6.9 KB, ~1.7k tokens by cl100k_base, as published. Nobody here has run it

SuperQA - browser QA on anything, for anyone

Contract: simple prompt -> concrete scenarios -> real browser evidence -> report in the user's language. Never claim a check passed without a run directory + report to show.

Mode (classify the request, state it in one line)

Signal in requestModeRoute
known domain / "QA <domain> <feature>" / repeat QA on something QA'd beforeDOMAIN-QAload the domain pack, QA per feature area, reuse archived scripts (reference/domain-packs.md)
"QA this <url>", vague target, no scenarios yetEXPLORE-QAexplore live site, generate scenario cases, run them (reference/agent-qa.md)
scenarios exist / "run the cases" / feature finished, verifyREGRESSIONsuperqa run --all --site <site>; diff vs last run (reference/agent-qa.md step 5)
"quick check / smoke / is it up"AUTOsuperqa auto <url> --site <site>
non-dev wants to create a test by clickingRECORDsuperqa record <url> or TUI n key (reference/tui.md)
"every N minutes / daily / automate"SCHEDULEsuperqa schedule add <scenario> --every <min> + daemon (reference/tui.md)
"open the QA app / dashboard"TUIbash scripts/superqa.sh
"test locally / without the dev server / offline", shared env down, destructive casesLOCAL-OFFLINEbring the stack up locally, run the same scenarios with --var base_url=... (reference/local-offline.md)

Hard rules

  1. Site knowledge is local, never committed. Entry URLs, accounts, login quirks, popup behaviors live in ~/.superqa/sites/<site>/rules.md and the SQLite var store - never in this repo, never in scenario files pushed anywhere (reference/site-rules.md).
  2. Credentials via the var store only. superqa vars set <site> username <v> / password <v>; scenarios reference {{username}} / {{password}}. Password-like keys are auto-masked in every report. Never hardcode credentials in YAML or reports.
  3. Evidence or it did not happen. Every run produces ~/.superqa/reports/<stamp>-<name>/report.html + per-step screenshots. Quote the report path and the pass/fail counts in your summary.
  4. Report in the user's language. Scenario language: drives report labels; your summary to the user follows the conversation language (reference/report.md).
  5. Side effects are findings, not noise. Console errors, JS exceptions, failed requests, HTTP 4xx/5xx, unexpected dialogs/popups/tabs are collected on every run, deduped with counts, and diffed against the previous run (new types = regression signal). Declare known noise in ~/.superqa/sites/<site>/ignore.yaml instead of ignoring findings by hand (reference/side-effects.md).
  6. Popups and dialogs never block a run. Engine policy auto-accepts dialogs and follows new tabs by default; scenario policy: overrides (reference/scenario-format.md).
  7. A local copy of shared data is read-only at the source, subsetted, redacted, and never committed. Local config gets dummy secrets only - never a real shared-environment credential to make something boot (reference/local-offline.md).
  8. Reusable QA scripts get archived, not abandoned. Helper scripts (data discovery, fixture pickers, probes, harnesses) that proved useful go into the domain pack under <packs_home>/<domain>/<feature>/scripts/ with a provenance header. Check the pack BEFORE writing a new script. Pack location is asked once and stored in ~/.superqa/config.yaml (reference/domain-packs.md).
  9. Exploration engine follows the cascade. ego-browser (ego-lite) first on macOS, then Playwright MCP, then playwright-cli, then any other installed driver. Deterministic replay is always the superqa engine (reference/engines.md).

EXPLORE-QA loop (default when only a URL/prompt is given)

  1. Ground. Read ~/.superqa/sites/<site>/rules.md if present; ask for credentials only if login is required and vars are missing.
  2. Explore. Drive the live site with the selected engine (snapshot -> click -> snapshot; reference/engines.md), mapping entry flow, login, menus, popups/new tabs (reference/agent-qa.md).
  3. Generate cases. Write scenario YAMLs to ~/.superqa/scenarios/<site>/ covering: happy path, validation, error paths, edge cases, and every popup/tab transition you found (reference/scenario-gen.md).
  4. Run. python3 -m superqa_tui run --all --site <site> --headless (from this skill's root, or the installed superqa command).
  5. Report. Read the report, triage side effects, summarize for the user in their language with the report path. Update the local site rules file with what you learned.

Non-dev lane (what you tell users)

  • Web admin (most clickable): superqa serve opens a browser dashboard listing every scenario - recorded and agent-authored alike - with a Run button each, live progress, run history, and inline reports. Same data as the TUI/CLI.
  • Terminal TUI: bash scripts/superqa.sh - n record by clicking in a real browser, r run, a run all, u auto QA, s schedule, v accounts/vars, o open report.
  • While recording, a SuperQA panel floats in the browser (pause / add-assertion / save-and-finish; it re-mounts itself if the site re-renders). Typed passwords are stored as {{password}}, never as plain text.

Reference map

FileWhen
reference/domain-packs.mdDOMAIN-QA: per-domain/feature packs, script archiving, pack location config
reference/engines.mdexploration engine cascade (ego-browser -> Playwright MCP -> playwright-cli -> other)
reference/agent-qa.mdEXPLORE-QA / REGRESSION procedure for the agent
reference/scenario-gen.mdprompt -> scenario case design method
reference/scenario-format.mdYAML schema: actions, selectors, {{vars}}, policy
reference/side-effects.mdwhat is captured; triage rules
reference/site-rules.mdlocal per-site knowledge protocol (never commit)
reference/report.mdreport structure + language rules
reference/tui.mdTUI / record / schedule usage for humans
reference/local-offline.mdLOCAL-OFFLINE: local stack + data subset, DB-derived fixtures, differential proof

Done = mode stated; scenarios exist as YAML under ~/.superqa/scenarios/<site>/; run executed with report path quoted; side effects triaged; site rules updated; domain pack updated (feature map + any new reusable script archived); no site-specific data staged for commit.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.