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

test-execution-manager测试执行经理

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

247

周安装

10

GitHub Stars

3

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/javalenciacai/qaskills --skill test-execution-manager

简介

用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。
  • 使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑。
  • 涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。
  • 安装方式:github,需通过 npx skills add 命令从指定仓库添加。

SKILL.md

Test Execution Manager

Expert skill for executing tests systematically and managing the test execution lifecycle.

When to Use

Use this skill when you need to:

  • Execute test suites
  • Log defects with complete information
  • Perform exploratory testing
  • Monitor test execution progress
  • Report test results
  • Triage test failures

Test Execution Types

1. Smoke Testing

Purpose: Quick validation that critical functionality works When: After each build/deployment Scope: Core features only (15-30 minutes) Goal: Determine if further testing is viable

2. Regression Testing

Purpose: Verify existing functionality still works When: Before each release Scope: Previously working features Goal: Catch unintended side effects

3. Functional Testing

Purpose: Verify features work per requirements When: During development and QA cycles Scope: All functional requirements Goal: Validate business logic

4. Integration Testing

Purpose: Verify components work together When: After module completion Scope: Inter-system interfaces, APIs, data flow Goal: Validate system integration

5. Exploratory Testing

Purpose: Unscripted investigation to find edge cases When: Throughout testing cycle Scope: Areas prone to defects Goal: Discover unexpected behaviors

Test Execution Workflow

1. Prepare Test Environment
   - Verify environment setup
   - Load test data
   - Check system availability

2. Execute Test Suite
   - Follow test case steps exactly
   - Document actual results
   - Capture screenshots/logs for failures

3. Log Defects
   - Use defect template
   - Include reproduction steps
   - Attach evidence

4. Triage Results
   - Categorize: Pass/Fail/Blocked
   - Prioritize failures
   - Determine root cause

5. Report Status
   - Update test metrics
   - Communicate blockers
   - Provide recommendations

Defect Logging Template

Required Information:

Defect ID: BUG-XXX
Title: [Clear, specific title]
Severity: [Critical/High/Medium/Low]
Priority: [P0/P1/P2/P3]

Environment:
- OS: [Windows/Mac/Linux + version]
- Browser: [Chrome/Firefox/etc + version]
- App Version: [x.y.z]
- Test Environment: [Dev/QA/Staging]

Steps to Reproduce:
1. [Exact step]
2. [Exact step]
3. [Exact step]

Expected Result: [What should happen]
Actual Result: [What actually happened]

Attachments:
- Screenshots
- Error logs
- Network traces
- Video recording (if applicable)

Additional Info:
- Frequency: [Always/Intermittent]
- Related tickets: [Links]
- Workaround: [If any]

Severity Definitions

  • Critical: System crash, data loss, security breach
  • High: Major feature broken, no workaround
  • Medium: Feature partially broken, workaround exists
  • Low: Cosmetic issue, minor inconvenience

Priority Definitions

  • P0: Blocks release, fix immediately
  • P1: Must fix before release
  • P2: Should fix, can defer if needed
  • P3: Nice to have, can be backlogged

Test Execution Best Practices

During Execution

  • ✓ Execute tests exactly as written
  • ✓ Don't assume - verify every step
  • ✓ Capture evidence immediately
  • ✓ Note environment details
  • ✓ Report blockers immediately
  • ✓ Retest fixed defects promptly

Test Data Management

  • ✓ Use test accounts, not production
  • ✓ Reset data between test runs
  • ✓ Protect sensitive information
  • ✓ Document data dependencies

Communication

  • ✓ Daily test status updates
  • ✓ Flag risks early
  • ✓ Collaborate with developers
  • ✓ Provide clear reproduction steps

Test Execution Metrics

Track these metrics:

  • Test Pass Rate: Passed / Total executed
  • Defect Detection Rate: Defects found / Total tests
  • Test Coverage: Tests executed / Total planned
  • Execution Progress: Completed / Total
  • Blocked Tests: Tests unable to run
  • Flaky Tests: Inconsistent results

Exploratory Testing Charter Template

Mission: [What to explore]
Duration: 60-90 minutes
Areas:
- [Specific feature/flow to investigate]
- [Edge cases to try]
- [Integration points]

Notes:
- [Observations]
- [Interesting behaviors]
- [Potential defects]

Defects Found: [Count + IDs]
Coverage: [What was tested]
Risks: [Concerns identified]

Test Execution Report Template

Test Execution Summary
Date: [Date]
Sprint/Release: [Version]
Tester: [Name]

Overall Status: [On Track / At Risk / Blocked]

Test Results:
- Total Planned: XXX
- Executed: XXX
- Passed: XXX (XX%)
- Failed: XXX (XX%)
- Blocked: XXX (XX%)
- Remaining: XXX

Defects Summary:
- Critical: XX
- High: XX
- Medium: XX
- Low: XX
- Total: XX

Blockers:
1. [Description + impact]
2. [Description + impact]

Risks:
1. [Risk + mitigation]

Next Steps:
1. [Action item]
2. [Action item]

Completion Criteria

A test cycle is complete when:

  • ✓ All planned tests executed
  • ✓ Critical defects fixed and verified
  • ✓ Pass rate meets threshold (typically 95%+)
  • ✓ No blocking defects remain
  • ✓ Test evidence documented
  • ✓ Sign-off obtained from stakeholders

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.94%
按下载量换算29

Claude

29.37%
按下载量换算23

Cursor

20.65%
按下载量换算16

Gemini CLI

9.6%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills