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

qa-process-improvement质量保证流程改进

Agent Skill

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

总安装

238

周安装

10

GitHub Stars

3

下载量

83
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/javalenciacai/qaskills --skill qa-process-improvement

简介

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

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

SKILL.md

QA Process Improvement

Expert skill for analyzing QA effectiveness and driving continuous improvement initiatives.

When to Use

Use this skill when you need to:

  • Analyze QA process effectiveness
  • Identify bottlenecks and inefficiencies
  • Implement process improvements
  • Adopt new tools and techniques
  • Reduce test maintenance burden
  • Improve team productivity
  • Enhance quality outcomes

Improvement Framework

1. Measure Current State

Collect baseline metrics:

  • Test coverage
  • Defect detection rate
  • Test execution time
  • Automation coverage
  • Defect escape rate
  • Time to feedback
  • Team velocity

2. Identify Problems

Common pain points:

  • Tests take too long to run
  • High maintenance burden
  • Too many escaped defects
  • Late defect discovery
  • Manual repetitive work
  • Unstable test environment
  • Unclear requirements

3. Analyze Root Causes

Use techniques:

  • 5 Whys
  • Fishbone diagram
  • Pareto analysis
  • Process mapping
  • Team retrospectives

4. Design Solutions

Improvement categories:

  • Process changes
  • Tool adoption
  • Automation expansion
  • Skill development
  • Communication improvements

5. Implement & Measure

Track impact:

  • Before/after metrics
  • ROI calculation
  • Team feedback
  • Stakeholder satisfaction

Key Metrics for Improvement

Quality Metrics

Defect Detection Efficiency (DDE)

DDE = (Defects in QA) / (Defects in QA + Production) × 100%
Goal: > 90%

Escaped Defect Rate

Rate = (Production defects) / (Total defects found)
Goal: < 5%

Defect Removal Efficiency

Efficiency = (Defects removed in phase) / (Total defects) × 100%

Efficiency Metrics

Test Automation Coverage

Coverage = (Automated tests) / (Total tests) × 100%
Goal: 70-80% for regression suite

Test Execution Time

Time = Total duration for test suite run
Track: Trend over time
Goal: Decreasing or stable

Time to Market

Time from code commit to production deployment
Goal: Reduce cycle time

Effectiveness Metrics

First Time Pass Rate

Rate = (Builds passing tests first time) / (Total builds)
Goal: > 80%

Test Flakiness Rate

Rate = (Flaky tests) / (Total automated tests)
Goal: < 2%

Mean Time to Detect (MTTD) Defects

Average time from defect introduction to discovery
Goal: Shift left, detect earlier

Common Improvement Initiatives

1. Shift-Left Testing

Problem: Defects found late, expensive to fix

Solution:

  • Involve QA in requirements review
  • Test during development, not after
  • Unit test coverage requirements
  • Automate tests incrementally
  • Continuous testing in CI/CD

Expected Impact:

  • 50% reduction in defect fix cost
  • Faster feedback to developers
  • Earlier defect detection

2. Test Automation Expansion

Problem: Too much manual regression testing

Solution:

  • Automate repetitive test cases
  • Implement test automation framework
  • Train team on automation tools
  • Start with smoke tests, then expand
  • Maintain automation suite health

Expected Impact:

  • 70% reduction in regression time
  • More time for exploratory testing
  • Consistent test execution

3. Reduce Test Flakiness

Problem: Unreliable automated tests causing trust issues

Solution:

  • Identify and quarantine flaky tests
  • Root cause analysis for each
  • Implement proper waits (not sleep)
  • Ensure test independence
  • Improve test data management

Expected Impact:

  • < 2% flakiness rate
  • Increased confidence in automation
  • Reduced investigation time

4. Improve Test Environments

Problem: Environment instability blocking testing

Solution:

  • Use containerization (Docker)
  • Infrastructure as Code
  • Self-service environment provisioning
  • Automated environment setup
  • Environment monitoring

Expected Impact:

  • Reduced blocked testing time
  • Faster environment recovery
  • Consistent configurations

5. Enhance Test Data Management

Problem: Insufficient or outdated test data

Solution:

  • Test data generation tools
  • Data refresh automation
  • Synthetic data creation
  • Production data masking
  • Data versioning

Expected Impact:

  • Better test coverage
  • Reduced data-related failures
  • Compliance with privacy regulations

6. Optimize Test Execution

Problem: Tests take too long to run

Solution:

  • Parallel test execution
  • Selective test execution
  • Test prioritization
  • Remove obsolete tests
  • Cache dependencies

Expected Impact:

  • 50-70% reduction in execution time
  • Faster feedback loops
  • More frequent testing

Retrospective Framework

Sprint Retrospective Template

What Went Well:
1. [Positive outcome]
2. [Success to replicate]

What Didn't Go Well:
1. [Problem encountered]
2. [Pain point]

What We Learned:
1. [Insight gained]
2. [New understanding]

Action Items:
1. [Who] will [what] by [when]
2. [Who] will [what] by [when]

Follow-up from Last Retro:
- [Previous action]: [Status]

Improvement Experimentation

Use hypothesis-driven improvements:

Hypothesis: If we [change X], then [metric Y] will improve by [Z]

Example:
If we parallelize our E2E tests across 4 machines,
then total execution time will reduce from 60min to <20min.

Experiment:
- Setup: Configure parallel execution
- Duration: 2 weeks
- Success criteria: <20min consistently
- Measure: Track daily execution times

Result: [Success / Partial / Failed]
Learning: [What we discovered]
Next: [Continue / Adjust / Abandon]

Knowledge Sharing

Team Enablement

Training Topics:

  • Test automation frameworks
  • New tool adoption
  • Testing techniques (ISTQB)
  • Domain knowledge
  • Best practices

Knowledge Transfer Methods:

  • Lunch & learn sessions
  • Pair testing
  • Documentation wiki
  • Code reviews
  • Demo sessions

Communities of Practice

Establish:

  • QA guild meetings (bi-weekly)
  • Testing best practices repository
  • Automation framework library
  • Troubleshooting guides
  • Lessons learned database

Tool Evaluation

When to Adopt New Tools

Evaluate based on:

  1. Problem Fit: Does it solve our specific pain?
  2. ROI: Cost vs benefit analysis
  3. Integration: Works with existing stack?
  4. Learning Curve: Can team adopt quickly?
  5. Support: Vendor support and community
  6. Scalability: Grows with our needs

Tool Categories for QA

  • Test Management: Jira, TestRail, Zephyr
  • Test Automation: Selenium, Playwright, Cypress
  • API Testing: Postman, REST Assured, SoapUI
  • Performance: JMeter, k6, Gatling
  • CI/CD: Jenkins, GitHub Actions, GitLab CI
  • Monitoring: Datadog, New Relic, Grafana

Process Documentation

Living Documentation

Maintain up-to-date:

  • QA process flowcharts
  • Test strategy document
  • Automation framework guide
  • Environment setup instructions
  • Defect management workflow
  • Release checklist
  • Runbooks for common issues

Process Review

Quarterly reviews:

  • Are documented processes followed?
  • Do they still make sense?
  • What's changed in our context?
  • Where are inefficiencies?
  • Update or retire outdated docs

Continuous Improvement Checklist

Monthly activities:

  • ✓ Review and analyze key metrics
  • ✓ Identify top 3 pain points
  • ✓ Conduct retrospective
  • ✓ Update action items
  • ✓ Share learnings with team

Quarterly activities:

  • ✓ Process health assessment
  • ✓ Tool evaluation
  • ✓ Skills gap analysis
  • ✓ Roadmap planning
  • ✓ Stakeholder feedback collection

Annually:

  • ✓ QA strategy review
  • ✓ Team maturity assessment
  • ✓ Industry trends research
  • ✓ Certification/training plan
  • ✓ Long-term improvement roadmap

Success Indicators

You know improvement is working when:

  • ✓ Defect escape rate decreasing
  • ✓ Test automation coverage increasing
  • ✓ Test execution time decreasing
  • ✓ Team velocity stable or increasing
  • ✓ Developer satisfaction with QA improving
  • ✓ Production incidents decreasing
  • ✓ Time to market decreasing
  • ✓ Team morale improving
  • ✓ Stakeholder confidence high

Best Practices

  • Start with data, not opinions
  • Focus on high-impact improvements
  • Involve the whole team
  • Experiment and iterate
  • Celebrate successes
  • Learn from failures
  • Share knowledge broadly
  • Measure everything
  • Never stop improving

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.86%
按下载量换算28

Claude

29.27%
按下载量换算24

Cursor

17.97%
按下载量换算15

Gemini CLI

9.99%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills