Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计提醒

test-and-break测试和打破

Agent Skill

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

总安装

306

周安装

13

GitHub Stars

228

下载量

107
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rohunj/claude-build-workflow --skill test-and-break

简介

test-and-break 用于辅助测试设计、自动化测试和用例整理。

  • 适合编写单元测试、端到端测试或根据失败日志定位问题。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 使用时需确认测试框架、运行命令,并区分模拟环境与生产环境。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Test and Break

Systematically test a deployed application by going through user flows, trying edge cases, and attempting to break things. Outputs structured bug reports that can be converted to user stories for autonomous fixing.


Prerequisites

  • agent-browser installed (npm install -g agent-browser && agent-browser install)
  • App deployed to a URL (staging/preview)
  • Basic understanding of what the app should do (read the PRD)

The Job

  1. Read the PRD to understand what the app should do
  2. Open the deployed app in agent-browser
  3. Go through each major user flow
  4. Try to break things at each step
  5. Document all bugs and issues found
  6. Output structured bug reports

Testing Process

Step 1: Understand the App

Read tasks/prd.md and tasks/architecture.md to understand:

  • What user flows exist
  • What the app should do
  • What the expected behavior is

Step 2: Open the App

agent-browser open [DEPLOYMENT_URL]
agent-browser snapshot -i

Step 3: Test Each User Flow

For each major feature/flow in the PRD:

A. Happy Path Testing

  1. Go through the flow as a normal user would
  2. Verify each step works as expected
  3. Check that success states appear correctly

B. Edge Case Testing

Try these at each input/interaction point:

Input Edge Cases:

  • Empty inputs (submit with nothing)
  • Very long text (500+ characters)
  • Special characters (<script>alert('xss')</script>, '; DROP TABLE users;--)
  • Unicode/emojis (🎉, 中文, العربية)
  • Negative numbers where positive expected
  • Zero where non-zero expected
  • Future dates, past dates, invalid dates
  • Invalid email formats
  • Spaces only
  • Leading/trailing whitespace

Interaction Edge Cases:

  • Double-click buttons rapidly
  • Click back button during operations
  • Refresh page mid-flow
  • Open same page in multiple tabs
  • Submit form twice quickly

State Edge Cases:

  • Log out mid-operation (if auth exists)
  • Let session expire
  • Navigate directly to URLs that require prior steps
  • Use browser back/forward buttons

Visual/UX Issues:

  • Check mobile responsiveness (resize browser)
  • Look for overlapping elements
  • Check loading states exist
  • Verify error messages are helpful
  • Look for console errors

Step 4: Document Each Bug

For each issue found, document:

## BUG-XXX: [Short descriptive title]

**Severity:** Critical | High | Medium | Low
**Type:** Functional | UI/UX | Security | Performance | Accessibility

**Steps to Reproduce:**
1. Go to [URL]
2. Do [action]
3. Enter [input]
4. Click [button]

**Expected Behavior:**
[What should happen]

**Actual Behavior:**
[What actually happens]

**Screenshot:** [if applicable]

**Console Errors:** [if any]

**Notes:** [any additional context]

Severity Guidelines

SeverityDefinitionExamples
CriticalApp broken, data loss, security issueCrash, XSS vulnerability, data not saving
HighMajor feature broken, bad UXCan't complete main flow, confusing errors
MediumFeature works but has issuesMinor validation missing, UI glitches
LowPolish/minor issuesTypos, slight misalignment, minor UX

Output Format

Save bug report to tasks/bug-report-[date].md:

# Bug Report: [App Name]
**Tested:** [Date]
**URL:** [Deployment URL]
**Tester:** Claude (Automated)

## Summary
- Total bugs found: X
- Critical: X
- High: X
- Medium: X
- Low: X

## Critical Bugs
[List critical bugs first]

## High Priority Bugs
[List high bugs]

## Medium Priority Bugs
[List medium bugs]

## Low Priority Bugs
[List low bugs]

## Positive Findings
[List things that worked well - important for context]

## Recommendations
[Overall suggestions for improvement]

Converting Bugs to User Stories

After generating the bug report, convert each bug to a user story format:

{
  "id": "BUG-001",
  "title": "Fix: [Bug title]",
  "description": "As a user, I expect [expected behavior] but currently [actual behavior].",
  "acceptanceCriteria": [
    "Specific fix criterion 1",
    "Specific fix criterion 2",
    "Regression test: [original bug steps] no longer reproduces",
    "Typecheck passes"
  ],
  "priority": 1,
  "passes": false,
  "notes": "Original bug: [reference]"
}

Priority mapping:

  • Critical bugs → priority 1-2
  • High bugs → priority 3-5
  • Medium bugs → priority 6-10
  • Low bugs → priority 11+

Integration with Ralph

After generating bug stories, they can be:

  1. Added to existing prd.json - Append bug fixes to current project
  2. Create new prd.json - Start a bug-fix-only Ralph run

To add to existing prd.json:

# Read current max priority
MAX_PRIORITY=$(cat prd.json | jq '[.userStories[].priority] | max')

# Add bug stories starting after max priority
# (Claude should do this programmatically)

Example Testing Session

# 1. Open the app
agent-browser open https://my-app-staging.vercel.app

# 2. Take initial snapshot
agent-browser snapshot -i

# 3. Test login flow
agent-browser fill @e1 "test@example.com"
agent-browser fill @e2 "password123"
agent-browser click @e3
agent-browser wait --load networkidle
agent-browser snapshot -i

# 4. Try to break it
agent-browser fill @e1 ""  # empty email
agent-browser click @e3    # submit anyway
agent-browser snapshot -i  # check error handling

# 5. Try XSS
agent-browser fill @e1 "<script>alert('xss')</script>"
agent-browser snapshot -i

# Continue testing other flows...

Checklist

Before finishing testing:

  • Tested all user flows from PRD
  • Tried empty inputs on all forms
  • Tried special characters/XSS on all inputs
  • Checked mobile responsiveness
  • Looked for console errors
  • Verified error messages are helpful
  • Documented all bugs with reproduction steps
  • Assigned severity to each bug
  • Saved bug report to tasks/bug-report-[date].md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.08%
按下载量换算29

OpenCode

25.86%
按下载量换算28

Codex

18.9%
按下载量换算20

Antigravity

13.66%
按下载量换算15

Gemini CLI

7.53%
按下载量换算8

windsurf

4.06%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills