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

manual-testing手动测试

Agent Skill

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

总安装

552

周安装

23

GitHub Stars

35

下载量

184
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/petekp/claude-code-setup --skill manual-testing

简介

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

  • 适合编写单元测试、端到端测试或定位失败日志。
  • 需要确认项目测试框架和运行命令。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 涉及浏览器服务时应区分本地模拟和测试环境。
  • manual-testing 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Manual Testing

Finish work with a tight verification loop: prove everything possible with tools first, then ask the user to verify only what requires human eyes, hands, devices, or judgment.

Do not make the user invent the test plan. Lead them through it.

Quality Bar

Before asking the user to do anything, know:

  • What changed
  • What the expected behavior is
  • What can be verified automatically
  • What still needs a human check
  • What nearby behavior could have regressed

Never ask the user to "poke around" or "let me know if it works." Give concrete actions, a specific screen or command, the expected result, and a short set of likely outcomes to reply with.

Workflow

1. Build a Verification Matrix

Translate the change into a short verification plan before running anything.

For each changed behavior, capture:

  • Primary success path
  • Most likely failure or edge case
  • One nearby regression check
  • Verification owner: tool or user

Use a simple internal checklist like:

BehaviorHappy pathEdge/regressionVerified by
Save settingsForm savesValidation error still worksTool + user

Keep the matrix small and focused on the current change.

2. Run Tool-Verifiable Checks First

Exhaust automated verification before involving the user.

Prefer to verify these yourself:

  • Build, compile, typecheck, lint, test
  • API responses and status codes
  • File output, database state, logs, and side effects
  • CLI behavior, exit codes, and generated artifacts
  • Browser automation, screenshots, DOM text, or network behavior when tools can prove it

Only hand work to the user when the result depends on:

  • Visual correctness
  • Motion, timing, or feel
  • Real-device behavior
  • Cross-browser differences
  • Screen reader behavior
  • Third-party flows that require human interaction

If an automated check fails, stop and address it before asking for manual verification.

3. Prepare the User Path

Set the user up so they can perform the check with minimal effort.

Provide:

  • Exact route, URL, screen, or command
  • Any required setup state
  • The single action to take
  • The expected result
  • What to reply with

If the user needs an already-running app, point them to the exact place to open. If you can safely prepare state, data, or fixtures first, do that yourself.

4. Lead the User Through Atomic Steps

Run manual verification as a guided sequence, not a dump of vague instructions.

Prefer one atomic step at a time. For a tiny smoke test, bundle at most 2-3 closely related checks.

Use this structure:

Testing: [feature or fix]
Progress: Step N of M

Action: [exact thing to click, type, or inspect]
Expected: [what should happen]
Reply with one:
1. [expected outcome]
2. [common failure mode]
3. [second common failure mode]
4. Other

If structured question tools are available, convert those reply options into a structured prompt. Otherwise ask the question in plain text with the options inline.

Example:

Testing: profile photo upload
Progress: Step 2 of 3

Action: Open `/settings/profile`, upload a PNG under 2 MB, and wait for the save state to finish.
Expected: The new avatar appears in the header and no error message is shown.
Reply with one:
1. Upload worked and the new avatar is visible
2. Upload finished but the avatar did not update
3. I saw an error message or spinner got stuck
4. Other

5. Cover the Right Surface Area

Always test the changed path first, then cover the most likely place it could fail.

Use these prompts as a calibration checklist.

For UI changes:

  • Check initial render
  • Check loading, empty, error, disabled, and success states when relevant
  • Check keyboard/focus path for interactive controls
  • Check mobile or narrow-width layout if the change is layout-sensitive
  • Check copy, spacing, and obvious visual regressions

For bug fixes:

  • Reproduce the original bug path
  • Verify the bug no longer occurs
  • Verify a nearby path still behaves correctly

For API or backend changes:

  • Verify happy-path response
  • Verify invalid-input or failure-path behavior
  • Verify the persisted side effect or downstream state change
  • Verify logs or errors do not show new breakage

For CLI or local-tool changes:

  • Verify the success path
  • Verify a common failure path and exit code
  • Verify output files, stdout/stderr, and help text when relevant

6. Handle Failures Like a Debugger

When the user reports a problem:

  • Capture the exact step that failed
  • Record expected versus actual behavior
  • Note any visible error text, logs, or screenshots available
  • Decide whether to stop and investigate immediately or finish the remaining checks only if that still adds value

Before changing code, generate 2-3 plausible hypotheses for the failure so the next debugging step is deliberate instead of guess-driven.

If the failure blocks confidence in the change, stop the manual test and switch into diagnosis.

7. Summarize With Confidence and Gaps

Close with a short verification summary that separates what is proven from what is still assumed.

Include:

  • Automated checks run and their results
  • Manual steps completed and their results
  • Bugs or regressions found
  • Remaining unverified areas
  • Recommended next action

Guidelines

  • Minimize user effort; maximize agent effort
  • Keep the user in one context at a time
  • Prefer concrete reply options over open-ended questions
  • Check one happy path, one failure path, and one nearby regression when practical
  • Use tools aggressively before asking for human verification
  • Keep the running narrative clear so the user remembers what is being tested and what has already passed

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.95%
按下载量换算62

Claude

33.4%
按下载量换算61

Cursor

18.18%
按下载量换算33

Gemini CLI

8.93%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills