Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

qa-exploring-testerqa 探索测试员

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

212

周安装

9

GitHub Stars

5

下载量

74
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:qa-exploring-tester(qa 探索测试员)
来源仓库:https://github.com/wizeline/sdlc-agents
仓库路径:skills/qa-exploring-tester
安装命令:
npx skills add https://github.com/wizeline/sdlc-agents --skill qa-exploring-tester
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/wizeline/sdlc-agents --skill qa-exploring-tester

简介

qa-exploring-tester 用于辅助测试设计、自动化测试、用例整理和回归验证,适合编写单元测试或定位问题。

  • 适用于需要生成测试计划、端到端测试或分析失败日志的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 需确认项目测试框架和运行命令,避免误改真实逻辑。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

ExploreAI Tester

An autonomous quality engineering framework that combines AI-driven exploratory testing with deterministic scripted validation to maximize defect detection across the full application stack.

How It Works

This framework operates through 8 specialized subagents coordinated by an orchestrator, each backed by dedicated skills. Instead of brittle selector-based or pixel-matching approaches, it uses semantic UI understanding (visual AI) to interpret applications the way a human tester would.

Architecture Overview

User Request
     │
     ▼
┌─────────────────────────┐
│   Orchestrator (you)     │
│   Routes to agents       │
└─────┬───────────────────┘
      │
      ├──► E2E Suite
      │    ├─ qa-e2e-exploratory-agent      (explores UI autonomously)
      │    └─ qa-e2e-deterministic-runner   (scripted critical paths)
      │
      ├──► Integration Suite
      │    ├─ qa-api-contract-fuzzer        (behavioral API fuzzing)
      │    └─ qa-multi-service-validator    (cross-service transactions)
      │
      ├──► Visual Suite
      │    ├─ qa-semantic-visual-regression (AI-powered UI diff)
      │    └─ qa-cross-browser-explorer     (browser/viewport matrix)
      │
      └──► Core Infrastructure
           ├─ qa-test-oracle-synthesizer    (generates expected behavior)
           └─ qa-benchmark-evaluator        (measures effectiveness)

Quick Start

When a user asks you to test something, follow this decision tree:

  1. Identify what they want tested — UI? API? Visual fidelity? All of the above?
  2. Gather inputs — URL, API specs, design references, browser matrix, credentials
  3. Select and spawn agents — based on the testing scope (see Agent Selection below)
  4. Collect and synthesize results — merge bug reports, generate summary

Agent Selection Guide

User says...Spawn these agents
"Test my app" / "Find bugs"qa-e2e-exploratory-agent + qa-semantic-visual-regression
"Run my E2E tests" / "Validate checkout flow"qa-e2e-deterministic-runner
"Test my API" / "Fuzz my endpoints"qa-api-contract-fuzzer
"Check visual regressions"qa-semantic-visual-regression
"Test across browsers"qa-cross-browser-explorer
"Validate my microservices"qa-multi-service-transaction-validator
"Full QA sweep"All Tier 1 agents + qa-test-oracle-synthesizer
"How effective are our tests?"qa-benchmark-evaluator

Required Inputs

Before spawning agents, collect these from the user (not all are required for every scenario):

  • Target URL / staging environment — where to point the agents
  • API specs (OpenAPI/GraphQL schemas) — for integration testing
  • Design references (Figma URLs or screenshots) — for visual regression
  • Browser/viewport matrix — which browsers and screen sizes to cover
  • User journeys — critical paths to validate (login → checkout → confirmation)
  • Credentials / test data — how to authenticate and what data to use
  • Prior bug reports — context for the test oracle to avoid known issues

Spawning Agents

Read the subagent definition from the agents/ directory (e.g., agents/<agent-name>.md relative to the QA core root) before spawning each subagent. Pass the subagent definition as instructions along with the relevant inputs.

Parallel spawning is preferred — agents are designed to run independently. Spawn all relevant agents in the same turn to maximize throughput.

Example spawn instruction for a subagent:

You are the qa-e2e-exploratory-agent. Read and follow the definition in agents/qa-e2e-exploratory-agent.md.

Target: https://staging.example.com
Credentials: test@example.com / TestPass123
Focus areas: checkout flow, user settings, search
Save outputs to: <workspace>/exploration-results/

Use the skills in skills/qa-exploring-application-ui/ and skills/qa-generating-bug-reports/.

Skills Reference

Each skill has its own SKILL.md with detailed instructions. Read the relevant skill before executing its capabilities:

SkillPathUsed by agents
qa-generating-integration-testsskills/qa-generating-integration-tests/SKILL.mdqa-api-contract-fuzzer, qa-multi-service-validator
qa-generating-e2e-testsskills/qa-generating-e2e-tests/SKILL.mdqa-e2e-deterministic-runner, qa-e2e-exploratory-agent
qa-exploring-application-uiskills/qa-exploring-application-ui/SKILL.mdqa-e2e-exploratory-agent
qa-detecting-visual-regressionsskills/qa-detecting-visual-regressions/SKILL.mdqa-semantic-visual-regression, qa-cross-browser-explorer
qa-generating-bug-reportsskills/qa-generating-bug-reports/SKILL.mdAll agents
qa-testing-cross-browser-compatibilityskills/qa-testing-cross-browser-compatibility/SKILL.mdqa-cross-browser-explorer
qa-analyzing-ux-flowsskills/qa-analyzing-ux-flows/SKILL.mdqa-e2e-exploratory-agent, qa-test-oracle-synthesizer

Output Structure

All agents write results to a shared workspace:

<workspace>/
├── exploration-results/      ← qa-e2e-exploratory-agent
├── e2e-results/              ← qa-e2e-deterministic-runner
├── integration-results/      ← qa-api-contract-fuzzer
├── service-results/          ← qa-multi-service-transaction-validator
├── visual-results/           ← qa-semantic-visual-regression
├── browser-results/          ← qa-cross-browser-explorer
├── oracle-baselines/         ← qa-test-oracle-synthesizer
├── benchmarks/               ← qa-benchmark-evaluator
└── summary-report.md         ← orchestrator (you generate this)

After all subagents complete, synthesize their findings into summary-report.md using the report generation script located in this skill's scripts/ directory:

# Replace <path-to-qa-exploring-tester> with the actual path to this skill directory
python <path-to-qa-exploring-tester>/scripts/generate_summary.py <workspace>/

Implementation Priority

If building incrementally, follow this order:

Tier 1 — Foundation (high impact, fewer dependencies):

  1. qa-semantic-visual-regression — immediate value for flaky visual test replacement
  2. qa-api-contract-fuzzer — leverages existing OpenAPI specs for security + robustness
  3. qa-e2e-deterministic-runner — CI/CD regression gate

Tier 2 — Intelligence Layer (requires Tier 1 baselines): 4. qa-e2e-exploratory-agent — needs VLM integration (Claude Vision) 5. qa-test-oracle-synthesizer — uses Tier 1 outputs as validation baselines 6. qa-multi-service-transaction-validator — requires service mesh/contract definitions 7. qa-cross-browser-explorer — extends visual regression across browser matrix 8. qa-benchmark-evaluator — measures everything else's effectiveness

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.06%
按下载量换算25

Claude

29.27%
按下载量换算22

Cursor

18.38%
按下载量换算14

Gemini CLI

10.36%
按下载量换算8

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills