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

qa-report质量保证报告

Agent Skill

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

总安装

1,493

周安装

61

GitHub Stars

323

下载量

478
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pedronauck/skills --skill qa-report

简介

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

  • 它支持基于关键词或任务场景的信息匹配,适用于报告生成前的资料准备。
  • 通过安装命令 npx skills add https://github.com/pedronauck/skills --skill qa-report 添加技能,具体用法可参考仓库中的 SKILL.md。
  • 安装前请确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • qa-report 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

QA Test Planner

Plan and document QA deliverables — test plans, test cases, regression suites, Figma validations, and bug reports — in a structured format compatible with qa-execution execution.

Required Inputs

  • qa-output-path (optional): Directory where all QA artifacts are stored. When provided, create the directory if it does not exist. When omitted, use the current working directory. This path must match the same argument passed to qa-execution when both skills are used together.

Shared Output Structure

All artifacts follow this directory layout, shared with qa-execution:

<qa-output-path>/qa/
├── test-plans/          # Test plan documents
├── test-cases/          # Individual test case files (TC-*.md)
├── issues/              # Bug reports (BUG-*.md)
├── screenshots/         # Visual evidence and Figma comparisons
└── verification-report.md  # Generated by qa-execution

Procedures

Step 1: Resolve Output Directory

  1. If the user provided a qa-output-path argument, use that path.
  2. Otherwise, default to the current working directory.
  3. Create the qa/ subdirectory under the resolved path, then create qa/test-plans/, qa/test-cases/, qa/issues/, and qa/screenshots/ if they do not exist.

Step 2: Identify the Deliverable Type

Parse the user request to determine which deliverable to generate:

Request PatternDeliverableOutput Path
"Create test plan for..."Test Plantest-plans/
"Generate test cases for..."Test Casestest-cases/
"Build regression suite..."Regression Suitetest-plans/
"Compare with Figma..."Figma Validationtest-cases/ (TC-UI-*)
"Document bug..."Bug Reportissues/

Step 3: Generate Test Plans

  1. Read references/test_case_templates.md for the test plan structure.
  2. Generate a test plan document with these mandatory sections:

- Executive summary with objectives and key risks. - Scope definition (in-scope and out-of-scope). - Test strategy and approach. - Automation strategy covering which flows should become E2E, which remain manual-only, and which are blocked by environment gaps. - Environment requirements (OS, browsers, devices). - Entry criteria (what must be true before testing begins). - Exit criteria (what must be true before testing ends, including pass-rate thresholds and automation follow-up expectations for critical flows). - Risk assessment table (Risk, Probability, Impact, Mitigation). - Timeline and deliverables.

  1. Write the plan to <qa-output-path>/qa/test-plans/<feature-slug>-test-plan.md.

Step 4: Generate Test Cases

  1. Read references/test_case_templates.md to select the appropriate template variant (Functional, UI, Integration, Regression, Security, Performance).
  2. Assign each test case an ID following the naming scheme: Type Prefix Example Functional TC-FUNC- TC-FUNC-001 UI/Visual TC-UI- TC-UI-045 Integration TC-INT- TC-INT-012 Regression TC-REG- TC-REG-089 Security TC-SEC- TC-SEC-005 Performance TC-PERF- TC-PERF-023 Smoke SMOKE- SMOKE-001
  3. Each test case must include:

- Priority: P0 (Critical) | P1 (High) | P2 (Medium) | P3 (Low). - Objective: What is being validated and why. - Preconditions: Setup requirements and test data. - Test Steps: Numbered actions with an **Expected:** result for each. - Edge Cases: Boundary values, null inputs, special characters. - Automation Target: E2E, Integration, or Manual-only. - Automation Status: Existing, Missing, Blocked, or N/A. - Automation Command/Spec: Existing spec path or command when known. - Automation Notes: Why the case should be automated, remain manual, or is blocked.

  1. Write each test case to <qa-output-path>/qa/test-cases/<TC-ID>.md.
  2. When generating test cases interactively, execute scripts/generate_test_cases.sh <qa-output-path>/test-cases.

Step 5: Build Regression Suites

  1. Read references/regression_testing.md for suite structure and execution strategy.
  2. Classify tests into tiers: Suite Duration Frequency Coverage Smoke 15-30 min Daily/per-build Critical paths only Targeted 30-60 min Per change Affected areas Full 2-4 hours Weekly/Release Comprehensive Sanity 10-15 min After hotfix Quick validation
  3. Prioritize test cases using the shared priority scale:

- P0: Business-critical, security, revenue-impacting — must run always. - P1: Major features, common flows — run weekly or more. - P2: Minor features, edge cases — run at releases.

  1. Mark automation candidates explicitly:

- Tag changed or regression-critical P0 and P1 public flows as Automation Target: E2E when the repository already has an E2E harness. - Tag bug-driven public regressions as Automation Status: Missing until qa-execution confirms the spec was added or updated. - Tag exploratory, visual-judgment, or unsupported flows as Manual-only or Blocked with a reason.

  1. Define execution order: Smoke first (if fails, stop) → P0 → P1 → P2 → Exploratory.
  2. Define pass/fail criteria:

- PASS: All P0 pass, 90%+ P1 pass, no critical bugs open. - FAIL: Any P0 fails, critical bug discovered, security vulnerability, data loss. - CONDITIONAL: P1 failures with documented workarounds, fix plan in place.

  1. Write the suite document to <qa-output-path>/qa/test-plans/<suite-name>-regression.md.

Step 6: Validate Against Figma Designs

Skip this step if Figma MCP is not configured.

  1. Read references/figma_validation.md for the validation workflow.
  2. Extract design specifications from Figma using MCP queries:

- Dimensions (width, height). - Colors (background, text, border — exact hex values). - Typography (font family, size, weight, line-height, color). - Spacing (padding, margin). - Border radius, shadows. - Interactive states (default, hover, active, focus, disabled).

  1. Generate UI test cases (TC-UI-*) that compare each property against the implementation.
  2. Test responsive behavior at these standard viewports:

- Mobile: 375px. - Tablet: 768px. - Desktop: 1280px.

  1. When validation reveals discrepancies, generate a bug report following Step 7.
  2. Use agent-browser (from the qa-execution companion skill) when browser-based verification is needed. The core loop is: open → snapshot → interact → re-snapshot → verify.

Step 7: Create Bug Reports

  1. Use the unified bug report format from assets/issue-template.md, shared with qa-execution.
  2. Assign a bug ID with the BUG- prefix (e.g., BUG-001).
  3. Every bug report must include:

- Severity: Critical | High | Medium | Low. - Priority: P0 | P1 | P2 | P3. - Environment: Build, OS, Browser, URL. - Reproduction: Exact steps to reproduce. - Expected vs Actual: Clear descriptions. - Impact: Users affected, frequency, workaround. - Related: TC-ID if discovered during test case execution, Figma URL if UI bug.

  1. Write each bug report to <qa-output-path>/qa/issues/<BUG-ID>.md.
  2. When creating bug reports interactively, execute scripts/create_bug_report.sh <qa-output-path>/issues.

Step 8: Validate Completeness

  1. Verify all generated test cases have an expected result for each step.
  2. Verify all bug reports have reproducible steps.
  3. Verify traceability: test cases reference requirements, bugs reference test cases.
  4. Verify every planned critical flow has an explicit automation annotation and that Missing or Blocked states include a reason.
  5. Cross-reference against ../qa-execution/references/checklist.md for coverage gaps when planning for later execution.

Severity Definitions

LevelCriteriaExamples
CriticalSystem crash, data loss, security breachPayment fails, login broken
HighMajor feature broken, no workaroundSearch not working, checkout fails
MediumFeature partial, workaround existsFilter missing option, slow load
LowCosmetic, rare edge caseTypo, minor alignment

Priority vs Severity Matrix

Low ImpactMediumHighCritical
RareP3P3P2P1
SometimesP3P2P1P0
OftenP2P1P0P0
AlwaysP2P1P0P0

Companion Skill: qa-execution

The qa-report and qa-execution skills share a common output directory and artifact format. The intended workflow:

  1. Plan first with qa-report: generate test plans, test cases, and regression suites.
  2. Execute with qa-execution: run verification gates, exercise flows end-to-end, discover bugs, and add or update E2E coverage when the repository already supports it.
  3. Document with qa-report: create structured bug reports for issues found during execution.

When qa-execution runs after qa-report, it reads test cases from <qa-output-path>/qa/test-cases/ to inform its execution matrix, automation priorities, and reporting fields, then writes bugs to <qa-output-path>/qa/issues/ using the same unified template.

Error Handling

  • If the qa-output-path directory cannot be created, report the error and fall back to the current working directory.
  • If Figma MCP is not configured, skip Figma validation steps and note the gap in the test plan.
  • If agent-browser is not available for UI validation, generate test cases as documentation for manual execution and note the limitation.
  • If the repository does not have a known E2E harness, mark affected cases as Manual-only or Blocked instead of inventing automation commands.
  • If the user provides a feature description that is too vague to generate test cases, ask for specific requirements, user flows, or acceptance criteria before proceeding.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.2%
按下载量换算178

Claude

27.1%
按下载量换算130

Cursor

18.25%
按下载量换算87

Gemini CLI

10.07%
按下载量换算48

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills