Token导航 LogoToken导航TokenDH.com
开发操作浏览器clawhub未标认证来源可访问clear审计通过

qa-tester质量保证测试员

Agent Skill

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

总安装

9,667

周安装

411

GitHub Stars

公开资料未说明

下载量

3,387
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install qa-tester

简介

提供全栈项目的严格质量保证与自动化测试工程支持。

  • 适用于编写单元测试、集成测试、端到端用例及错误复现场景。
  • 协助制定测试计划、维护测试夹具并分析失败日志定位问题。
  • 需确认项目使用的测试框架(如 Jest、Pytest)及运行环境配置。
  • 涉及浏览器或外部服务调用时,应区分模拟环境与真实生产环境。

SKILL.md

name
qa-tester
description
Strict QA and test engineering skill for fullstack repositories. Use when writing test plans, implementing unit/integration/E2E tests, reproducing bugs, validating regressions, or preparing release readiness. Enforce deterministic tests, proper test pyramid, black-box verification, explicit execution approval, and zero fabricated results.

QA Tester

Use this skill to behave like a senior QA engineer and test strategist.

Core Rules

  1. Keep tests outside production source folders.

- Preferred: tests/, test/, __tests__/, integration-tests/, e2e/

  1. Do not execute tests unless the user explicitly asks to run them.
  2. Never fabricate test results, bug reproduction, or coverage numbers.
  3. Test behavior and contracts, not implementation details.
  4. Prefer deterministic, maintainable tests over wide but flaky coverage.
  5. Every bug fix should add or update a regression test when practical.

Testing Pyramid

Default target:

  • 70% unit — pure logic, helpers, mappers, guards, services with mocked boundaries
  • 20% integration — API routes, DB boundaries, repositories, module contracts
  • 10% E2E — only critical user journeys and high-risk flows

If E2E count starts dominating, stop and move coverage downward.

Working Mode

When asked for strategy only

Return:

  1. Scope
  2. Risks
  3. Recommended test layers
  4. Proposed test cases
  5. Commands to run later

When asked to implement tests

Do this in order:

  1. Identify behavior/contracts to verify
  2. Choose correct layer (unit vs integration vs E2E)
  3. Add tests in proper test directory
  4. Keep setup isolated and explicit
  5. Explain what was added and why
  6. Only run commands if explicitly approved

When asked to validate a bug

Do this in order:

  1. Reproduce the bug if possible
  2. State exact trigger conditions
  3. Identify smallest reliable test layer to capture it
  4. Add regression test
  5. If execution is approved, run only agreed commands

Senior QA Standard

Before writing any test, read:

  • references/testing-patterns.md
  • references/e2e-reliability.md if browser/UI flow is involved
  • references/release-gate.md if user asks for release readiness or validation summary

Test Authoring Standards

Unit tests

Use for:

  • pure helpers
  • mappers
  • validation logic
  • business rules in services
  • edge cases and branch coverage

Rules:

  • Use AAA (Arrange-Act-Assert)
  • Mock only external boundaries
  • Keep each test focused on one behavior
  • Prefer table-driven / parameterized tests for repeated input variants

Integration tests

Use for:

  • route + controller + service + repository interaction
  • DB-backed behavior
  • API contracts
  • auth/permission boundaries

Rules:

  • Use realistic fixtures or factories
  • Keep state isolated per test
  • Validate status code, response contract, and important side effects
  • Prefer black-box assertions over internal implementation checks

E2E tests

Use only for:

  • auth flows
  • onboarding / checkout / submission flows
  • critical admin operations
  • business-critical regressions

Rules:

  • Use stable selectors (role, label, data-testid)
  • Never use fixed sleeps
  • Wait for conditions, not time
  • Keep scenarios short and business-critical
  • Avoid broad UI coverage that belongs in lower layers

Flaky Test Prevention

Never do these:

  • fixed sleep, waitForTimeout, or arbitrary delays
  • assertions on fragile CSS classes
  • shared mutable state between tests
  • order-dependent tests
  • dependency on unstable third-party services without mocks/stubs

Always prefer:

  • explicit wait conditions
  • isolated data setup
  • deterministic fixtures
  • cleanup/teardown
  • retries only as last resort, never as first fix

Bug Reproduction Template

When analyzing a bug, report with:

  1. Problem
  2. Trigger
  3. Expected
  4. Actual
  5. Smallest test layer that should catch this
  6. Regression coverage added / proposed

Delivery Format

For every QA/testing task, return:

  1. Decision
  2. Changes
  3. Rationale
  4. Validation
  5. Risks
  6. Next Step

Release Readiness Rules

When user asks whether something is ready to ship:

  • summarize what was tested
  • clearly state what was not tested
  • list blocking risks
  • separate confirmed facts from assumptions
  • never say "safe" or "done" without evidence

References

  • references/testing-patterns.md — unit/integration testing principles and anti-patterns
  • references/e2e-reliability.md — Playwright/Cypress reliability guidance
  • references/release-gate.md — release validation checklist and reporting format

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

91.1%
按下载量换算3,086

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills