Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

helpmetest-validator帮助测试验证器

Agent Skill

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

总安装

643

周安装

26

GitHub Stars

公开资料未说明

下载量

202
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/help-me-test/skills --skill helpmetest-validator

简介

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

  • 适用于需要编写测试计划或根据失败日志定位问题的开发场景。
  • 使用时需确认项目测试框架、运行命令和夹具数据,避免为通过测试而修改核心逻辑。
  • 涉及外部服务时应区分本地模拟与生产环境,确保操作安全。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Who you are: If .helpmetest/SOUL.md exists in this project, read it before starting — it defines your character and shapes how you work.
No MCP? The CLI has full feature parity — use helpmetest <command> instead of MCP tools. See the CLI reference.

QA Validator

Validates and scores test quality. Rejects tests that don't meet quality standards.

Prerequisites

how_to({ type: "context_discovery" })
how_to({ type: "test_quality_guardrails" })

context_discovery identifies the Feature artifact the test should link to. After validation passes, add the test_id to the scenario's test_ids array so future sessions know this scenario is covered.

Input

  • Test ID or test content to validate
  • Feature artifact it should test

Validation Workflow

Step 1: The Business Value Question (MOST IMPORTANT)

Before checking anything else, answer these two questions:

  1. "What business capability does this test verify?"
  2. "If this test passes but the feature is broken, is that possible?"

If answer to #2 is YES → IMMEDIATE REJECTION

This is the ONLY question that truly matters. A test that passes when the feature is broken is worthless.

Examples of worthless tests:

  • Test only counts form fields → REJECT (form could be broken, test still passes)
  • Test clicks button, waits for same element → REJECT (button could do nothing, test still passes)
  • Test navigates, verifies title → REJECT (navigation works, feature could be broken)

Step 2: Check for Anti-Patterns (Auto-Reject)

Check for these bullshit patterns:

  • ❌ Only navigation + element counting (no actual feature usage)
  • ❌ Click + Wait for element that was already visible (no state change)
  • ❌ Form field presence check without filling + submission
  • ❌ Page load + title check (no business transaction)
  • ❌ UI element verification without verifying element WORKS

If ANY anti-pattern found → IMMEDIATE REJECTION

Step 3: Check Minimum Quality Requirements

  • Step count >= 5 meaningful steps?
  • Has >= 2 assertions (Get Text, Should Be, Wait For)?
  • Verifies state change (before/after OR API response OR data persistence)?
  • Tests scenario's Given/When/Then, not just "page loads"?
  • Uses stable selectors?
  • Has [Documentation]?
  • Tags use category:value format (priority:high)?
  • Has required tags: priority:?
  • Tags include feature:?
  • No invalid tags?

If ANY requirement fails → REJECT with specific feedback

Step 4: Generate Validation Report

Output either:

  • ✅ PASS: Test verifies feature works, would fail if feature broken
  • ❌ REJECT: [Specific reason] - Test doesn't verify feature functionality

Include:

  • Test ID
  • Feature ID
  • Scenario name
  • Status (PASS/REJECT)
  • If REJECT: specific feedback on what needs to be fixed
  • If PASS: any optional recommendations for improvement

Output

  • Validation status: PASS or REJECT
  • Specific feedback (why rejected OR recommendations if passed)
  • Updated Feature artifact if PASS (add test_id to scenario.test_ids)

Rejection Examples

REJECT: Element Counting

Go To  /profile
Get Element Count  input[placeholder='John']  ==  1
Get Element Count  button[type='submit']  ==  1

Reason: Only counts elements, doesn't test if form works. Test passes even if form submission broken.

REJECT: Click Without Verification

Go To  /videos
Click  [data-testid='category-python']
Wait For Elements State  [data-testid='category-python']  visible

Reason: Waits for element that was already visible. Doesn't verify videos were filtered. Test passes even if filter broken.

REJECT: Navigation Only

Go To  /checkout
Get Title  ==  Checkout
Get Element Count  input[name='address']  ==  1

Reason: Only navigation + element existence. Doesn't test checkout works. Test passes even if checkout endpoint broken.

REJECT: Form Display Without Submission

Go To  /register
Get Element Count  input[type='email']  ==  1
Get Element Count  input[type='password']  ==  1

Reason: Only checks form exists, doesn't test registration. Test passes even if registration endpoint returns 500.

PASS: Complete Workflow

Go To  /profile
Fill Text  input[name='firstName']  John
Click  button[type='submit']
Wait For Response  url=/api/profile  status=200
Reload
Get Attribute  input[name='firstName']  value  ==  John

Reason: Tests complete workflow - user can update AND data persists. Would fail if feature broken.

Version: 0.1

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.65%
按下载量换算66

Claude

29.75%
按下载量换算60

Cursor

20.06%
按下载量换算41

Gemini CLI

8.8%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills