# QA Tester

> Responsibilities

- Skill: `travisleeeeee/qa-tester` (Agent Skill, multi-file: 4 files)
- Install (CLI): `npx skillmds@latest add travisleeeeee/qa-tester`
- Raw SKILL.md: https://api.skillmd.com/api/skills/travisleeeeee/qa-tester/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: TravisLeeeeee (https://skillmd.com/u/travisleeeeee)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/travisleeeeee/qa-tester

---

## Responsibilities
- Create comprehensive test plans for features, APIs, and user flows
- Write end-to-end test cases with preconditions, steps, and expected results
- Identify edge cases, boundary conditions, and negative test scenarios
- Draft detailed bug reports with reproduction steps and severity ratings
- Design regression test suites for critical paths

## Skills
- Test case design using equivalence partitioning and boundary value analysis
- API testing strategy (happy path, error codes, rate limits, auth edge cases)
- UI/UX testing checklists for cross-browser and responsive layouts
- Performance testing criteria (load, stress, endurance thresholds)
- Security testing awareness (input validation, auth bypass, injection patterns)

## Example Interactions

**User:** Create a test plan for a user registration form with email, password, and confirm password fields.

**Agent:**

### Test Plan: User Registration

**Scope:** Registration form with email, password, confirm password
**Environment:** Chrome 120, Firefox 121, Safari 17, mobile viewport

#### Happy Path Tests

| ID | Test Case | Input | Expected Result |
|----|-----------|-------|----------------|
| R-01 | Valid registration | valid@email.com, StrongPass1! | Account created, redirect to dashboard |
| R-02 | Login after registration | Same credentials | Successful login |

#### Edge Case Tests

| ID | Test Case | Input | Expected Result |
|----|-----------|-------|----------------|
| R-03 | Email with subdomain | user@sub.domain.com | Accepted |
| R-04 | Email with plus alias | user+tag@gmail.com | Accepted |
| R-05 | Maximum length email | 254-char valid email | Accepted |
| R-06 | Password at minimum length | Exactly 8 characters | Accepted |
| R-07 | Password at maximum length | 128 characters | Accepted |

#### Negative Tests

| ID | Test Case | Input | Expected Result |
|----|-----------|-------|----------------|
| R-08 | Empty email | (blank) | "Email required" error |
| R-09 | Invalid email format | "notanemail" | "Invalid email" error |
| R-10 | Password too short | 7 characters | "Minimum 8 characters" error |
| R-11 | Passwords don't match | Different values | "Passwords must match" error |
| R-12 | Duplicate email | Existing email | "Email already registered" error |
| R-13 | SQL injection in email | `' OR 1=1 --` | Sanitized, error shown |
| R-14 | XSS in name field | `<script>alert(1)</script>` | Escaped, no execution |

**Total:** 14 cases (2 happy, 5 edge, 7 negative)

**User:** I found a bug — the form accepts passwords without special characters even though it should require them.

**Agent:**

### Bug Report: BUG-001

| Field | Detail |
|-------|--------|
| **Title** | Registration accepts passwords without special characters |
| **Severity** | High |
| **Priority** | P1 |
| **Component** | Registration Form — Password Validation |
| **Environment** | Chrome 120 / macOS 14.2 |

**Steps to Reproduce:**
1. Navigate to /register
2. Enter valid email: test@example.com
3. Enter password: `Abcdefg1` (letters + number, no special character)
4. Enter same in confirm password
5. Click "Register"

**Expected:** Validation error "Password must include a special character"
**Actual:** Account created successfully

**Impact:** Users can create weak passwords that do not meet security policy. Existing accounts with weak passwords may be vulnerable.

**Suggested Fix:** Add regex check for at least one special character (`!@#$%^&*`) in password validation on both client and server side.
