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

qa-report-humanizer质量保证报告人性化

Agent Skill

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

总安装

297

周安装

12

GitHub Stars

4

下载量

93
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 它支持基于关键词或任务场景的信息匹配,适用于将技术性内容转化为可读性更强的报告。
  • 通过安装命令 npx skills add https://github.com/petrkindlmann/qa-skills --skill qa-report-humanizer 添加技能,具体用法可参考仓库中的 SKILL.md。
  • 安装前请确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Check for .agents/qa-project-context.md first.

When to use this

  • Writing or editing test execution summaries
  • Sprint/release quality reports for stakeholders
  • Bug reports that need to be read and acted on
  • Slack messages about test results or failures
  • PR review comments from QA
  • Postmortem and retrospective writeups
  • Any QA communication that sounds robotic or generic

Core principles

  1. Specific beats comprehensive. "Login fails when email has a plus sign" beats "Various authentication edge cases were identified."
  2. Say what actually happened, not what category it falls into.
  3. If the reader can't tell what broke or what to do, the report failed.
  4. Write for the person who has to fix it at 4pm on a Friday.
  5. Skip the parts nobody reads.

QA-specific AI patterns to detect and fix

1. The template opener

Every AI-generated test report starts the same way.

Bad:

Test execution was completed successfully for Sprint 47. A total of 342 test cases were executed across 5 test suites, achieving a 97.4% pass rate. The following sections provide detailed results.

Better:

Sprint 47: 342 tests run, 9 failed. 6 of the failures are in checkout (payment form validation). The other 3 are flaky timing issues we've seen before.

Why: the first version buries the signal. The second tells you what happened and where to look.

2. Inflated severity language

Bad:

A critical defect was identified in the authentication module that could potentially impact the user experience across multiple touchpoints, underscoring the need for immediate remediation.

Better:

Login breaks if your email has a "+" in it. Around 8% of our users have plus-sign emails (checked analytics). Needs a fix before release.

Why: "critical defect in the authentication module" is a category. "Login breaks if your email has a plus sign" is something you can fix.

3. The pass rate obsession

Bad:

The overall pass rate increased from 94.2% to 97.1%, demonstrating significant improvement in test suite reliability and showcasing the team's commitment to quality.

Better:

Pass rate went from 94% to 97%. Most of that was fixing the 3 flaky Playwright tests that kept timing out on the dashboard load. Real bugs found: 2 (both in the new export feature).

Why: pass rates are vanity metrics without context. What actually changed?

4. Generic risk language

Bad:

Several high-risk areas have been identified that require careful monitoring. The team recommends continued vigilance and proactive testing to mitigate potential issues.

Better:

The payment flow has no E2E coverage for 3D Secure cards. We've had two production incidents from this in the past 6 months. I'd prioritize this over the admin panel work.

Why: "high-risk areas" and "continued vigilance" mean nothing. Name the area, name the risk, say what to do about it.

5. Synonym cycling for test results

Bad:

The authentication tests passed successfully. The login verification suite completed without issues. The credential validation checks returned positive results. The sign-in workflow tests executed as expected.

Better:

All auth tests passed (login, registration, password reset, SSO).

Why: four ways to say "auth tests passed" is four times too many.

6. The "despite challenges" closer

Bad:

Despite several challenges encountered during the testing phase, the team successfully completed all planned test activities. Moving forward, the focus will be on continuous improvement and enhanced test coverage.

Better:

We didn't get to the mobile browser tests this sprint. Carry those to next sprint. Everything else is done.

7. Vague stakeholder updates

Bad:

Quality metrics continue to trend positively. The team is aligned on priorities and committed to delivering a high-quality release. Stakeholders can feel confident in the current trajectory.

Better:

The release looks fine. 4 bugs open, all P2 or lower. The login plus-sign bug (P1) was fixed yesterday. Smoke tests pass on staging.

8. PR review comments that say nothing

Bad:

Great work on this implementation! I noticed a few potential areas for improvement that might enhance the overall test coverage and robustness of the test suite.

Better:

This test only checks the happy path. What happens when the API returns a 429? And the selector .btn-submit will break if anyone changes the CSS class. Use getByRole('button', {name: 'Submit'}) instead.

9. Bug report padding

Bad:

While conducting comprehensive regression testing of the user management module, a significant defect was discovered that impacts the core functionality of the system. This issue has the potential to affect a substantial number of users.

Better:

Deleting a user doesn't revoke their API tokens. They can still make requests after deletion. Found while testing the user management API.

10. The rule-of-three summary

Bad:

This sprint we improved quality, velocity, and confidence. The team demonstrated strong collaboration, technical excellence, and customer focus.

Better:

This sprint we fixed the checkout flakiness (was failing 12% of the time, now <1%) and added E2E coverage for the new export feature.

How to rewrite QA reports

Step 1: Cut the opening paragraph

Most test report intros are throat-clearing. Delete everything before the first useful fact.

Step 2: Lead with what matters

What broke? What's risky? What should someone do? Put that first.

Step 3: Replace categories with specifics

"Authentication module" → "login with plus-sign emails" "Performance degradation" → "dashboard takes 8 seconds to load (was 2)" "Several edge cases" → "empty cart, expired coupon, and currency mismatch"

Step 4: Kill the filler

Remove: "It is worth noting that," "Moving forward," "In conclusion," "The team is committed to," "Stakeholders can feel confident," "Despite challenges," "This underscores the importance of"

Step 5: Add what's actually useful

  • What should the reader do next?
  • What's the risk if they don't?
  • How confident are you? (Be honest. "I'm not sure this is stable yet" is fine.)

Step 6: Read it out loud

If you wouldn't say it in standup, rewrite it.

Format-specific guidance

Test execution summary

Lead with: failures count, where they are, whether they're new. Skip: total counts, pass percentages (unless someone asked for them). End with: what's not covered yet, what to watch.

Bug report

Lead with: what breaks, how to reproduce it, who's affected. Skip: "while performing comprehensive testing of the module..." Include: actual error message, screenshot, or console output.

Sprint quality update (for stakeholders)

Lead with: release readiness (yes/no/conditional), open blockers. Skip: methodology, process descriptions, team morale statements. End with: what you'd want to know if you were deciding whether to ship.

Slack test result message

Keep it to 2-3 lines. Link to the full report. Bad: "Hello team, I wanted to share the results of our latest test execution..." Better: "E2E run passed. 2 flaky failures (both dashboard timeout, known issue). Full report: [link]"

Postmortem writeup

Lead with: what broke, when, how long, who was affected. Skip: "This postmortem aims to provide a comprehensive analysis..." Be honest about what you missed and why.

Anti-patterns

  • Opening with "Test execution was completed successfully" when tests failed
  • Using "potential impact" instead of describing the actual impact
  • Writing "the team is aligned" in any context
  • Padding 3 bullet points into 12 by rewording the same thing
  • Closing with optimistic statements that add no information
  • Using passive voice to avoid naming what broke ("an issue was identified")
  • Starting bug reports with context about the testing session instead of the bug

Done When

  • AI-pattern checklist applied to the report (hedging language, passive voice, synonym cycling, template openers, and filler phrases removed)
  • Report reviewed for natural flow and authentic voice — reads like a specific engineer wrote it, not a template
  • Technical accuracy preserved: no facts, numbers, bug descriptions, or test results altered during the rewrite
  • Output reviewed by a human before sending to stakeholders or submitting as a PR comment
  • The version without AI patterns is the deliverable — the original draft is discarded or archived

Related skills

  • For bug report templates and severity matrices, see bug-reporting
  • For QA metrics and what to track, see qa-metrics
  • For dashboard setup and stakeholder reports, see qa-dashboard
  • For postmortem structure and root cause analysis, see quality-postmortem

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.83%
按下载量换算31

Claude

28.04%
按下载量换算26

Cursor

19.51%
按下载量换算18

Gemini CLI

8.7%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills