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

helpmetest-discover帮助测试发现

Agent Skill

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

总安装

563

周安装

23

GitHub Stars

公开资料未说明

下载量

180
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

Explores a website to understand what it does and who uses it.

Prerequisites

Before creating artifacts, load the authentication guidance and tag schema. These define how to set up test users and how to tag scenarios consistently.

Call these first:

how_to({ type: "authentication_state_management" })
how_to({ type: "tag_schema" })

Workflow

Phase 0: Context Discovery

Check for existing work before asking the user for input. This prevents recreating Persona artifacts that already exist and lets you extend existing ProjectOverview artifacts.

Call how_to({type: "context_discovery"}) to see what's already been done.

  • Reuse existing Persona artifacts (don't recreate auth)
  • Extend existing ProjectOverview if found
  • Only ask for URL if no artifacts exist

Phase 1: Initial Discovery

  1. Navigate to the URL with helpmetest_run_interactive_command: Go To <url> timeout=10000
  2. Read the page - What does this site do?

- Look at headline, navigation, content - Identify the business domain

  1. Check for authentication: If the site has login/signup, set up authentication. Call how_to({type: "authentication_state_management"}) for complete setup process. Summary:

- Check for existing Persona artifacts with credentials - If none exist, consult user about registration strategy - Create maintaining test based on strategy chosen - Validate authentication works before continuing - BLOCK discovery until auth is proven working

Phase 1.5: Understand What SHOULD Exist

After identifying the industry, think about what a complete product in this domain needs:

Ask yourself:

  1. What is the PRIMARY user goal? (buy something, get work done, learn something)
  2. What is the CORE TRANSACTION? (purchase, subscription, booking, submission)
  3. What steps are needed to complete that transaction from start to finish?
  4. What would a user EXPECT to find in a product like this?

Expected capabilities by industry type:

Transactional sites (e-commerce, booking, marketplace):

  • User needs: Discover → Evaluate → Decide → Transact → Confirm
  • Expected features: Search, Browse, Details, Cart, Checkout, Payment, Confirmation, History

SaaS/productivity tools:

  • User needs: Onboard → Use Core Feature → Manage Settings → Pay
  • Expected features: Registration, Dashboard, Core Feature, Settings, Billing

Content/media platforms:

  • User needs: Discover → Consume → Engage → Subscribe
  • Expected features: Search, Browse, View, Comments, Share, Subscribe

Social platforms:

  • User needs: Profile → Connect → Share → Engage
  • Expected features: Profile, Feed, Post, Follow, Message, Notifications

For each expected capability:

  1. Try to find it (check navigation, footer, user menu, follow CTAs)
  2. If found: create Feature artifact
  3. If NOT found: add to ProjectOverview expected_features with status: "missing"

Phase 1.6: Walk the Critical User Journey

Don't just discover pages - complete the PRIMARY user goal end-to-end.

Think: "What does a user come here to DO, and what steps get them there?"

Process:

  1. Identify the primary goal (e.g., "buy a product", "sign up for service")
  2. Start as a new user and try to complete that goal
  3. Document each step as a JourneyStep:

- What action did you take? - Did it work? (status: found/missing/blocked) - What feature does this represent?

  1. When you get BLOCKED, that's a missing feature

Journey Schema:

{
  "name": "<Primary Goal> Flow",
  "persona_id": "persona-<who>",
  "steps": [
    { "action": "<What user does>", "feature_id": "feature-<x>", "status": "found|missing|blocked" }
  ],
  "completion": "complete|partial|blocked",
  "critical": true
}

Critical journeys must be complete for product to work:

  • If journey is "partial" or "blocked" → major coverage gap
  • Missing steps = missing features to flag in report

Phase 2: Create Persona Artifacts

For each user type discovered, create a Persona artifact:

{
  "type": "Persona",
  "id": "persona-<name>",
  "name": "Persona: <Name>",
  "content": {
    "persona_type": "primary|secondary|admin",
    "description": "Who they are",
    "goals": ["What they want"],
    "pain_points": ["Frustrations"],
    "username": "<generated-by-Create-Fake-Email>",
    "password": "SecureTest123!",
    "auth_state": "AdminState",
    "permissions": ["what they can do"],
    "environment": "staging"
  }
}

Phase 3: Create ProjectOverview

Use helpmetest_upsert_artifact:

{
  "type": "ProjectOverview",
  "id": "project-<domain>",
  "name": "ProjectOverview: <Site Name>",
  "content": {
    "url": "<url>",
    "summary": "What this site does and who it's for",
    "industry": "e-commerce|saas|healthcare|etc",
    "persona_ids": ["persona-admin", "persona-user"],
    "features": [
      { "feature_id": "feature-search", "name": "Search", "status": "working" },
      { "feature_id": "feature-cart", "name": "Cart", "status": "partial" },
      { "name": "Checkout", "status": "missing", "priority": "critical", "reason": "Cannot complete purchases" },
      { "name": "Payment", "status": "missing", "priority": "critical", "reason": "No payment integration found" }
    ],
    "user_journeys": [
      {
        "name": "Purchase Flow",
        "persona": "customer",
        "steps": [
          { "action": "Search for product", "feature_id": "feature-search", "status": "found" },
          { "action": "View product details", "feature_id": "feature-product-details", "status": "found" },
          { "action": "Add to cart", "feature_id": "feature-cart", "status": "found" },
          { "action": "Checkout", "status": "missing" },
          { "action": "Payment", "status": "missing" },
          { "action": "Confirmation", "status": "missing" }
        ],
        "completion": "partial"
      }
    ],
    "tech_stack": [],
    "auth_methods": [],
    "notes": []
  }
}

Phase 4: Create Feature Artifacts with Scenario Enumeration

Start with transaction features before page-level features

Before breaking down pages into individual features, identify and create features for complete end-to-end user flows. These critical flows prove the core business value works.

Ask: "What multi-step processes exist that users need to complete from start to finish?"

Examples:

  • Multi-page forms (registration, checkout, booking) → Create ONE feature for "complete registration/purchase/booking"
  • Wizards or workflows → Create ONE feature for the entire workflow
  • Any process spanning multiple pages → Create ONE feature for the complete flow, mark as priority:critical

Then enumerate page-level features (individual buttons, filters, searches, etc.)

This is a two-step process:

  1. Create Feature artifact with basic info
  2. Explore feature interactively to enumerate ALL test scenarios

Why two steps? You need the artifact to store what you discover, and you need interactive exploration to find all the scenarios (happy paths, error cases, edge conditions). Skipping the exploration means tests will be blind guesses.

For each capability:

Step 4.1: Create Feature artifact skeleton

{
  "type": "Feature",
  "id": "feature-<name>",
  "name": "Feature: <Name>",
  "content": {
    "goal": "What business outcome",
    "non_goals": ["What this is NOT"],
    "status": "untested",
    "persona_ids": ["persona-user"],
    "functional": [],
    "non_functional": [],
    "edge_cases": [],
    "bugs": [],
    "notes": []
  }
}

Step 4.2: Explore feature to enumerate ALL scenarios

Use helpmetest_run_interactive_command to systematically explore every possibility:

A. Discover ALL functional scenarios (happy paths):

For each way users can successfully use this feature:

As  <auth_state>
Go To  <feature-url>
# Try action - observe outcome
<action steps>
# Document what worked and what the result was

Registration/email features — full flow:

If the feature involves creating an account or submitting an email, use Create Fake Email. Never hardcode emails — they fail on second run (account already exists).

# Create a unique email for this exploration run
${email}=    Create Fake Email
# or fill the field in one step:
${email}=    Create Email And Fill    input[name='email']

# Complete registration
Fill Text    input[name='password']    SecureTest123!
Click    button[type='submit']

# If email verification is required, retrieve the code:
${code}=    Get Email Verification Code    ${email}
Fill Text    input[name='code']    ${code}
Click    button >> "Verify"

# Cleanup (optional during exploration, required in tests)
Delete Email    ${email}

Create scenario for each discovered path:

{
  "name": "User can <accomplish goal>",
  "given": "User on <page> with <precondition>",
  "when": "User <performs action>",
  "then": "<Expected successful outcome>",
  "url": "<feature-url>",
  "auth": ["<auth_state>"],
  "priority": "critical|high|medium|low",
  "test_ids": []
}

B. Discover ALL edge case scenarios (error handling):

Try EVERY way the feature should fail gracefully:

Empty inputs:

As  <auth_state>
Go To  <feature-url>
# Try submitting with empty required fields
Fill Text  <selector>  ${EMPTY}
Click  <submit-button>
# Document: What error? Input preserved? State corrupted?

Invalid formats:

# Try invalid email format
Fill Text  input[type=email]  notanemail
# Try non-numeric in number field
Fill Text  input[type=number]  abc
# Document error handling

Boundary values:

# Try too long
Fill Text  <selector>  ${'x' * 1000}
# Try too short (if min length exists)
Fill Text  <selector>  a
# Try negative numbers (if applicable)
Fill Text  <selector>  -1
# Document validation errors

Duplicate entries:

# Register once with a fake email, then try again with the same email
${email}=    Create Fake Email
Create Email And Fill    input[name='email']
Click    button[type='submit']
# Now try to register again with the same email — observe conflict error
Create Email And Fill    input[name='email']    # reuse same ${email}
Fill Text    input[name='email']    ${email}
Click    button[type='submit']
# Document: What error appears? Is it clear? Does state stay consistent?

Permission errors:

# Try accessing without proper role
As  <lower-privilege-state>
Go To  <restricted-page>
# Document access denial

Create scenario for EACH discovered error case:

{
  "name": "<Error scenario name>",
  "given": "User on <page> with <state>",
  "when": "User <performs invalid action>",
  "then": "Error shown: <expected message>, input preserved, state unchanged",
  "url": "<feature-url>",
  "auth": ["<auth_state>"],
  "priority": "high|medium|low",
  "test_ids": []
}

C. Non-functional scenarios (if feature is performance/security critical):

{
  "name": "Search responds within 2 seconds",
  "given": "User on search page",
  "when": "User searches for common term",
  "then": "Results displayed within 2000ms",
  "url": "<search-url>",
  "auth": ["<auth_state>"],
  "priority": "medium",
  "test_ids": []
}

Step 4.3: Update Feature artifact with ALL discovered scenarios

{
  "functional": [<all happy path scenarios>],
  "edge_cases": [<all error handling scenarios>],
  "non_functional": [<performance/security scenarios if applicable>]
}

Each feature should have 10+ scenarios (5+ functional, 5+ edge cases minimum).

Phase 5: Link Everything

  1. Add features to ProjectOverview.features with status: {"feature_id": "feature-checkout", "name": "Checkout", "status": "working"} {"name": "Payment", "status": "missing", "priority": "critical", "reason": "No Stripe integration"}
  2. For missing features: set status="missing", add priority and reason (no feature_id yet)

Output

  • Persona artifacts for each user type
  • ProjectOverview artifact with persona_ids, capabilities
  • Feature artifacts for each capability
  • Summary of what was discovered

Critical Rules

  1. Create Persona artifacts - Don't embed personas in ProjectOverview
  2. Use persona_ids - Reference personas by ID, not embedded
  3. Given/When/Then - All scenarios use this format
  4. Explore authenticated AND unauthenticated - Some features need login
  5. Tag scenarios properly - All scenarios need priority: tag minimum

Version: 0.1

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.35%
按下载量换算62

Claude

28.1%
按下载量换算51

Cursor

18.45%
按下载量换算33

Gemini CLI

10.24%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

未通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills