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

manual-testing手动测试

Agent Skill

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

总安装

791

周安装

32

GitHub Stars

4

下载量

248
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/petekp/agent-skills --skill manual-testing

简介

用于辅助测试设计、自动化测试和回归验证,适合编写单元测试或分析失败日志。

  • 适用于手动测试用例整理、端到端测试框架搭建或问题定位场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 使用时需确认项目测试框架和运行命令,避免误改生产逻辑。
  • 涉及浏览器或外部服务时应区分模拟环境与真实环境。

SKILL.md

Manual Testing

Verify current work through automated testing first, falling back to user verification only when necessary.

Core Principle

Automate everything possible. Only ask the user to manually verify what Claude cannot verify through tools.

Workflow

1. Analyze Current Context

Examine recent work to identify what needs testing:

  • Review recent file changes and conversation history
  • Identify the feature, fix, or change to verify
  • Determine testable behaviors and expected outcomes

2. Classify Each Verification Step

For each thing to verify, determine if Claude can test it automatically:

Claude CAN verify (do these automatically):

  • Code compiles/builds: npm run build, cargo build, go build, etc.
  • Tests pass: npm test, pytest, cargo test, etc.
  • Linting/type checking: eslint, tsc --noEmit, mypy, etc.
  • API responses: curl, httpie, or scripted requests
  • File contents: Read files, grep for expected patterns
  • CLI tool output: Run commands and check output
  • Server starts: Start server, check for errors, verify endpoints respond
  • Database state: Query databases, check records exist
  • Log output: Tail logs, grep for expected/unexpected messages
  • Process behavior: Check exit codes, stdout/stderr content
  • File existence/permissions: ls, stat, test -f
  • JSON/config validity: Parse and validate structure
  • Port availability: lsof, netstat, curl localhost
  • Git state: Check diffs, commits, branch state

Claude CANNOT verify (ask user):

  • Visual appearance (colors, layout, spacing, alignment)
  • Animations and transitions
  • User experience feel (responsiveness, intuition)
  • Cross-browser rendering
  • Mobile device behavior
  • Physical hardware interaction
  • Third-party service UIs (OAuth flows, payment forms)
  • Accessibility with actual screen readers
  • Performance perception (feels fast/slow)

3. Execute Automated Verifications

Run all automatable checks first. Be thorough:

# Example: Testing a web feature
npm run build          # Compiles?
npm run lint           # No lint errors?
npm test               # Tests pass?
npm run dev &          # Server starts?
sleep 3
curl localhost:3000/api/endpoint  # API responds correctly?

Report results as you go. If automated tests fail, stop and address before asking user to verify anything.

4. User Verification (Only When Necessary)

For steps Claude cannot automate, present them sequentially with selectable outcomes:

Step N of M: [Brief description]

**Action:** [Specific instruction - what to do]

**Expected:** [What should happen if working correctly]

Then use AskUserQuestion with predicted outcomes:

  • 2-4 most likely outcomes as selectable options
  • First option: expected/success outcome
  • Remaining options: common failure modes
  • Free-text "Other" option is provided automatically

Example:

{
  "questions": [{
    "question": "How does the button look?",
    "header": "Visual check",
    "options": [
      {"label": "Looks correct", "description": "Blue button, proper spacing, readable text"},
      {"label": "Wrong color/style", "description": "Button exists but styling is off"},
      {"label": "Layout broken", "description": "Elements overlapping or misaligned"},
      {"label": "Not visible", "description": "Button missing or hidden"}
    ],
    "multiSelect": false
  }]
}

5. Handle Results

Automated test fails: Stop and fix before proceeding.

User reports issue: Note it, ask if they want to investigate now or continue testing.

6. Summarize

After all steps complete:

  • List what was verified automatically (with pass/fail)
  • List what user verified (with results)
  • Summarize any issues found
  • Recommend next actions

Guidelines

  • Run automated checks in parallel when possible
  • Be creative with verification—most things can be tested programmatically
  • If unsure whether something can be automated, try it first
  • Keep user verification steps minimal and focused on truly visual/experiential checks

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenCode

29.01%
按下载量换算72

Codex

22.92%
按下载量换算57

Claude Code

15.19%
按下载量换算38

Antigravity

10.86%
按下载量换算27

Gemini CLI

8.2%
按下载量换算20

windsurf

2.94%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills