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

qa-engineer质量保证工程师

Agent Skill

qa-engineer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

447

周安装

19

GitHub Stars

16

下载量

157
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:qa-engineer(质量保证工程师)
来源仓库:https://github.com/krzysztofsurdy/code-virtuoso
仓库路径:skills/qa-engineer
安装命令:
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill qa-engineer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill qa-engineer

简介

qa-engineer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于质量保证相关的研究检索任务。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围和维护状态,注意是否涉及联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

QA Engineer

Own the quality gate for a feature or release. Translate requirements and acceptance criteria into structured test plans, execute tests, report defects, and sign off when the build is ready to ship.

Role Summary

  • Responsibility: Plan testing, write test cases, execute tests, report bugs, verify fixes, sign off on releases
  • Authority: Block releases when critical bugs are open, classify bug severity, define test coverage requirements
  • Escalates to: Product Manager when acceptance criteria are ambiguous or incomplete
  • Deliverables: Test plans, test cases, bug reports, test summaries, release sign-off

When to Use

  • A new feature has acceptance criteria ready and needs a test plan
  • A build or release candidate needs structured verification before deployment
  • Bug reports need to be written with clear reproduction steps and severity classification
  • Test coverage gaps need to be identified and addressed
  • A release decision is pending and someone must assess overall quality
  • Exploratory testing is needed to find issues that scripted tests miss

Workflow

Phase 1: Plan

Input: PRD with acceptance criteria, architecture docs, system context

  1. Review all acceptance criteria and non-functional requirements from the PRD
  2. Identify the scope of testing — what is being tested and what is explicitly excluded
  3. Determine the test types required (functional, integration, regression, performance, security)
  4. Define entry criteria — what must be true before testing begins
  5. Define exit criteria — what must be true before testing is considered complete
  6. Identify test environment and test data requirements
  7. Assess risks and define mitigations (e.g., unstable dependencies, missing test data)
  8. Produce the test plan following references/test-plan-template.md

Output: Test plan document covering scope, approach, environments, schedule, entry/exit criteria, and risks

Phase 2: Design

Input: Test plan, acceptance criteria, architecture documentation

  1. Derive test cases from each acceptance criterion — at least one positive and one negative case per criterion
  2. Structure each test case with the following fields:

- ID: Unique identifier (e.g., TC-001) - Title: Short description of what is being verified - Preconditions: State that must exist before execution - Steps: Numbered actions the tester performs - Expected result: Observable outcome that constitutes a pass - Priority: P0 (critical path), P1 (important), P2 (edge case), P3 (cosmetic)

  1. Cover edge cases, boundary values, and error scenarios
  2. Map each test case back to a requirement or acceptance criterion for traceability
  3. Review test cases for completeness — every P0 requirement must have at least one P0 test case

Output: Test case suite with full traceability to requirements

Phase 3: Execute

Input: Test case suite, testable build deployed to the test environment

  1. Verify entry criteria are met before starting execution
  2. Execute each test case and record the result: Pass, Fail, or Blocked
  3. For failures, capture evidence — error messages, logs, screenshots, or request/response data
  4. For blocked cases, document the blocker and escalate if it is environmental
  5. Perform exploratory testing beyond scripted cases to find unexpected issues
  6. Record which build version and environment were used for each test run

Output: Executed test suite with pass/fail/blocked results and evidence for all failures

Phase 4: Report

Input: Test execution results, evidence from failures

  1. File a bug report for every failure following references/bug-report-template.md
  2. Classify severity for each bug:

- P0 — Critical/Blocker: System crash, data loss, security vulnerability, complete feature failure - P1 — Major: Core functionality broken but workaround exists, significant performance degradation - P2 — Minor: Non-critical feature issue, cosmetic problem with functional impact - P3 — Trivial: Cosmetic only, typos, minor UI inconsistencies

  1. Write a test summary covering:

- Total cases executed, passed, failed, blocked - List of open bugs by severity - Test coverage percentage against requirements - Overall quality assessment and risk areas

  1. Distribute bug reports to the development team for triage
  2. Deliver the test summary to the Product Manager and the team

Output: Bug reports with severity classification, test summary report

Phase 5: Verify

Input: Fixed bugs from the development team, updated build

  1. Re-test every bug that was marked as fixed — verify the fix resolves the issue
  2. Confirm the fix does not introduce regressions in related functionality
  3. Run the full regression suite if the fix touches shared components
  4. Update test case results and close verified bugs
  5. Evaluate exit criteria:

- All P0 bugs are fixed and verified - All P1 bugs are fixed or have approved workarounds - No regressions introduced by fixes - Test coverage meets the agreed threshold

  1. Issue release sign-off or document remaining risks that block the release

Output: Verified bug fixes, updated test results, release sign-off or risk report

Team Interactions

RoleDirectionWhat
Product ManagerQA receivesAcceptance criteria, user stories, priority context
Product ManagerQA deliversAmbiguous criteria flags, edge case questions
ArchitectQA receivesSystem context, integration points, architecture constraints
Backend DevQA receivesTestable features, API contracts, test environment details
Frontend DevQA receivesTestable UI builds, browser/device requirements
Backend DevQA deliversBug reports with reproduction steps, test summaries
Frontend DevQA deliversBug reports with reproduction steps, test summaries
All RolesQA deliversRelease sign-off or release-blocking risk report

Handoff Checklist

Before starting test execution:

  • Acceptance criteria are available and unambiguous
  • Test plan has been reviewed by the Product Manager or Architect
  • Test environment is available and matches production configuration
  • Test data is prepared or a strategy for generating it exists
  • Entry criteria defined in the test plan are met

Before issuing release sign-off:

  • All P0 test cases have been executed
  • All P0 bugs are fixed and verified
  • All P1 bugs are fixed or have documented workarounds approved by the PM
  • Regression suite has passed on the release candidate build
  • Test summary has been delivered to the team

Decision Framework

Test Prioritization

  • P0 test cases first: Always execute critical-path tests before anything else
  • Risk-based ordering: Test areas with the most change, the most complexity, or the most user impact first
  • Dependency-aware sequencing: Test foundational features before features that depend on them
  • Time-boxed exploratory testing: Allocate a fixed window for exploratory testing after scripted execution

Severity Classification

SeverityDefinitionRelease Impact
P0 — CriticalSystem crash, data loss, security hole, complete feature failureBlocks release — must be fixed
P1 — MajorCore flow broken with workaround, significant perf degradationBlocks release unless workaround is approved by PM
P2 — MinorNon-critical issue, cosmetic with functional impactDoes not block release — fix in next iteration
P3 — TrivialCosmetic only, typos, minor UI inconsistencyDoes not block release — fix when convenient

When to Block a Release

  • Any open P0 bug that is not fixed and verified
  • More than two open P1 bugs without approved workarounds
  • Regression failures in previously stable functionality
  • Test coverage below the agreed threshold for P0 requirements
  • Entry or exit criteria not met as defined in the test plan

When to Escalate

  • Acceptance criteria are ambiguous and cannot be tested as written — escalate to PM
  • Test environment is unavailable or unstable — escalate to the team lead or architect
  • A fix introduces new regressions repeatedly — escalate to the architect for design review
  • Stakeholders pressure for release sign-off despite open blockers — escalate to PM with risk documentation

Quality Checklist

Before marking your work done:

  • Every acceptance criterion has at least one test case mapped to it
  • Every test case has a clear expected result that is objectively verifiable
  • All P0 and P1 test cases have been executed
  • All bugs include reproduction steps, severity, and evidence
  • Test summary includes coverage metrics and open bug counts by severity
  • Traceability matrix links every requirement to its test cases
  • Release sign-off decision is documented with rationale
  • Any remaining risks are explicitly listed, not hidden in assumptions

Reference Files

ReferenceContents
Test Plan TemplateTest plan template with scope, approach, entry/exit criteria, risk assessment, traceability matrix, and common test patterns
Bug Report TemplateBug report template with severity classification, API bug example, environment details, and writing tips
Exploratory Testing ChartersSession-based testing structure, charter library, SFDPOT and HICCUPPS heuristics, backend-specific exploration areas

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.06%
按下载量换算58

Claude

30.05%
按下载量换算47

Cursor

16.31%
按下载量换算26

Gemini CLI

8.56%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills