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

qa-manual-istqb质量保证手册 istqb

Agent Skill

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

总安装

1,320

周安装

55

GitHub Stars

123

下载量

440
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/fugazi/test-automation-skills-agents --skill qa-manual-istqb

简介

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

  • 它支持基于关键词或任务场景的信息匹配,适用于手动测试与 ISTQB 标准相关的资料准备。
  • 通过安装命令 npx skills add https://github.com/fugazi/test-automation-skills-agents --skill qa-manual-istqb 添加技能,具体用法可参考仓库中的 SKILL.md。
  • 安装前请确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

ISTQB Manual & Automation QA Toolkit

Complete ISTQB Foundation Level (CTFL) aligned workflow for QA test engineers covering: Test Planning → Test Analysis → Test Design → Test Implementation → Test Execution → Test Completion

When to Use This Skill

  • Creating or reviewing test plans and test strategies
  • Generating test conditions and test cases from requirements
  • Applying test design techniques (EP, BVA, decision tables, state transitions, use cases)
  • Writing bug reports and managing defect lifecycle
  • Building regression suites with risk-based selection
  • Creating traceability matrices (requirements ↔ tests ↔ defects)
  • Conducting exploratory testing sessions with charters
  • Estimating test effort using ISTQB techniques
  • Reviewing testware through static testing practices
  • Implementing automation with Playwright (TypeScript)

Prerequisites

RequirementNotes
Node.js 18+Required for CLI script and Playwright
Playwrightnpm init playwright@latest for automation
Text editorFor creating/editing markdown and CSV artifacts
GitRecommended for testware version control

Quick Start (choose one)

  • Create a test plan: use templates/test-plan.md as a starting point.
  • Create a test summary report: use templates/test-summary-report.md.
  • Generate test cases: use templates/test-cases.csv and fill it from the test basis (requirements, user stories, acceptance criteria).
  • Create a bug report: use templates/bug-report.md.
  • Create a bug log: use templates/bug-log.csv.
  • Create traceability: use templates/traceability-matrix.csv.
  • Build a regression suite definition: use templates/regression-suite.md.
  • Scaffold Playwright tests: use templates/playwright-spec.ts and adapt to the system under test.
  • Run exploratory testing: use templates/exploratory-charter.md to timebox and capture outcomes.

If running locally, generate artifacts with the bundled CLI:

node scripts/qa_artifacts.mjs list
node scripts/qa_artifacts.mjs create test-plan --out specs --project "My App" --release "R1"
node scripts/qa_artifacts.mjs create test-cases --out specs --feature "Checkout"
node scripts/qa_artifacts.mjs create bug-report --out specs/bugs --title "Search returns 500"

Inputs to collect (ask if missing)

  • Test basis: requirements, user stories, acceptance criteria, designs, risk register, defect history.
  • Scope: in-scope/out-of-scope features, target platforms/browsers/devices, locales, accessibility, integrations.
  • Quality risks: what can fail, impact, likelihood, regulatory/compliance, critical user journeys.
  • Constraints: deadlines, environments, data availability, tooling, access/roles, CI/CD expectations.
  • Definitions: severity vs priority scale, test levels and test types to cover, entry/exit criteria.

Workflows

1) Create a test plan (and/or test strategy)

  1. Identify test objectives, scope, assumptions, and constraints from the test basis.
  2. Define test levels and types (functional + change-related + key non-functional, as applicable).
  3. Choose test design techniques per area (see references/test-design-techniques.md).
  4. Specify environments, test data, tooling, and configuration management needs.
  5. Define entry/exit criteria, deliverables, and reporting cadence/metrics.
  6. Add a risk matrix and mitigation actions; prioritize testing accordingly (risk-based testing).

Use: templates/test-plan.md (detailed sections + checklists).

2) Generate test conditions and test cases

  1. Convert the test basis into test conditions (what to test) before writing step-by-step cases.
  2. For each condition, pick a technique:

- Equivalence partitions and boundary values for inputs/validation. - Decision tables for rule combinations. - State transitions for lifecycle/flows. - Use-case/scenario tests for end-to-end journeys. - Exploratory testing sessions to learn quickly (see templates/exploratory-charter.md).

  1. Write test cases that are atomic, unambiguous, and traceable to requirement/user story IDs.
  2. Add expected results that are observable and measurable (define the test oracle).
  3. Add priority and risk tags to support risk-based regression selection.
  4. Mark automation candidates using stability + value criteria (see references/automation-playwright-best-practices.md).

Use: templates/test-cases.csv.

3) Implement automation test scripts (Playwright-first)

  1. Keep tests readable and aligned with test cases (include test case IDs in titles).
  2. Prefer stable locators (e.g., getByTestId) over brittle selectors.
  3. Avoid arbitrary sleeps; rely on Playwright auto-waits and explicit assertions.
  4. Make tests independent (setup preconditions explicitly; avoid order dependencies).
  5. Use tagging in test titles (e.g., @smoke, @regression) so suites are runnable via --grep.
  6. Capture artifacts for triage (screenshots/video/trace) when debugging failures.

Use: templates/playwright-spec.ts and references/automation-playwright-best-practices.md.

4) Build and maintain regression suites

  1. Define suite tiers (example): smoke (critical paths), sanity (build verification), regression (broad), full (release).
  2. Select tests using risk + frequency + criticality + defect history (not only coverage).
  3. Tag tests consistently and document selection rules and ownership.
  4. Review the suite regularly: remove obsolete coverage, add coverage for escaped defects and high-risk changes.

Use: templates/regression-suite.md and references/regression-suite-strategy.md.

5) Create bug reports and document bugs effectively

  1. Reproduce reliably; reduce to minimal steps; note variability (frequency) and scope.
  2. Capture environment details (build/app version, OS, browser/device, account/role, data conditions).
  3. Describe expected vs actual behavior; include impact; set severity and priority consistently.
  4. Attach evidence (screenshots, console logs, network traces, Playwright trace) and link related tests/requirements.
  5. Track lifecycle: triage notes, owner, fix version, verification steps and results, closure criteria.

Use: templates/bug-report.md and references/bug-report-quality.md.

6) Conduct static testing (reviews)

  1. Schedule reviews early (shift-left): requirements, designs, test plans, test cases.
  2. Use checklists for consistency (see references/static-testing.md).
  3. Document findings with severity and actionability.
  4. Track defects found in static testing separately (prevention vs detection).

Use: references/static-testing.md for review checklists and techniques.

7) Estimate test effort

  1. Identify factors: scope, complexity, risk, team experience, tool maturity.
  2. Apply estimation techniques (see references/test-estimation.md):

- Expert judgment / historical data - Test point analysis - Work breakdown structure

  1. Add contingency for risks and unknowns.
  2. Review and refine estimates as the project progresses.

Use: references/test-estimation.md for techniques and formulas.

8) Monitor test progress and metrics

  1. Track execution metrics: planned vs executed vs passed vs failed vs blocked.
  2. Monitor defect metrics: found vs fixed vs open, by severity/priority.
  3. Calculate test coverage: requirements covered, risk areas tested.
  4. Report status regularly and escalate blockers early.

Use: references/test-monitoring-metrics.md for metrics definitions and dashboards.

Quality Gates (self-check)

  • Test plan includes scope, approach, risks, environments, entry/exit criteria, deliverables, and metrics.
  • Test cases are traceable, atomic, deterministic, and include clear oracles and data.
  • Automation is maintainable (stable locators, minimal flake, independent tests, clear assertions).
  • Regression is risk-based, tagged, and curated with clear add/remove rules.
  • Bug reports are reproducible, actionable, and contain evidence + environment + impact.
  • Static testing reviews are documented with findings tracked to resolution.
  • Estimates include contingency and are refined as scope clarifies.

Troubleshooting

ProblemCauseSolution
Test cases lack traceabilityMissing requirement IDsAdd requirement_id column; link to user stories/ACs
Bug reports get rejectedInsufficient reproduction stepsUse minimal steps; include exact data and environment
Regression suite too slowToo many tests, no prioritizationApply risk-based selection; tier into smoke/sanity/full
Flaky automated testsUnstable locators or timingUse data-testid; avoid sleeps; use Playwright auto-waits
Test estimates are wrongScope creep, missing risksAdd contingency; re-estimate when scope changes
Reviews find no defectsSuperficial reviewUse checklists; allocate sufficient time; rotate reviewers
Unclear test oraclesMissing expected resultsDefine oracles from requirements, rules, or reference systems

Bundled Resources

Templates (templates/)

TemplatePurpose
test-plan.mdISTQB-aligned test plan structure
test-summary-report.mdEnd-of-cycle summary and sign-off
test-cases.csvTest case repository with traceability
test-conditions.mdTest conditions derived from test basis
traceability-matrix.csvRequirements ↔ tests ↔ defects mapping
bug-report.mdDetailed defect report
bug-log.csvDefect tracking log
regression-suite.mdSuite definition and selection rules
exploratory-charter.mdSession-based exploratory testing
playwright-spec.tsPlaywright test scaffold
test-environment-checklist.mdEnvironment readiness verification
risk-assessment-matrix.mdQuality risk identification and prioritization

References (references/)

ReferenceContent
test-design-techniques.mdEP, BVA, decision tables, state transitions, use cases
experience-based-techniques.mdError guessing, checklist-based, exploratory
static-testing.mdReviews, walkthroughs, inspections
test-levels-types.mdUnit, integration, system, acceptance; functional, non-functional
test-estimation.mdEstimation techniques and factors
test-monitoring-metrics.mdProgress tracking and quality metrics
risk-based-testing.mdRisk identification, analysis, mitigation
istqb-glossary.mdKey ISTQB terminology
test-process-and-deliverables.mdTest process phases and outputs
automation-playwright-best-practices.mdPlaywright implementation guidance
regression-suite-strategy.mdSuite management and optimization
bug-report-quality.mdEffective defect reporting
defect-lifecycle.mdDefect states and workflow

Scripts (scripts/)

ScriptPurpose
qa_artifacts.mjsCLI tool to generate QA artifacts from templates

Common Rationalizations

Common shortcuts and "good enough" excuses that erode test quality — and the reality behind each.
RationalizationReality
"ISTQB theory doesn't apply in practice"Equivalence partitioning and boundary value analysis directly reduce test count while maintaining coverage.
"We don't need test plans for small projects"Even small projects benefit from structured testing. A lightweight test plan prevents scope creep.
"Exploratory testing isn't real testing"Exploratory testing finds bugs that scripted tests never will. It's a disciplined technique, not ad-hoc clicking.
"Risk-based testing means testing less"It means testing smarter — focusing effort where failure impact is highest, not testing everything equally.
"Traceability matrices are bureaucratic overhead"They prove coverage, support audit readiness, and reveal gaps between requirements and tests.
"Manual testing is obsolete"Manual testing catches usability, visual, and accessibility issues that automation misses entirely.

Verification

After completing this skill's workflow, confirm:

  • Test cases follow ISTQB structure — Each case has: ID, description, preconditions, steps, expected result, actual result
  • Coverage matrix maintained — Requirements mapped to test cases; no uncovered requirements
  • Priority levels assigned — Each test case has a priority (Critical, High, Medium, Low)
  • Positive and negative scenarios — Both valid and invalid inputs tested
  • Edge cases documented — Boundary values, empty inputs, and extreme values covered
  • Test data documented — Specific test data values listed, not just "valid data"
  • Traceability maintained — Each test case links to a requirement or user story

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.08%
按下载量换算159

Claude

29.23%
按下载量换算129

Cursor

19.89%
按下载量换算88

Gemini CLI

9.28%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills