Agent skill
test
Runs unit and browser tests on latest changes. Use after implementing features or fixing bugs.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/test-djnsty23-claude-auto-dev
SKILL.md
Test
Run unit tests AND browser tests. All steps are mandatory.
Step 1: Unit Tests
npm test # or npm run test
If tests fail, report failures but CONTINUE to browser tests.
Step 2: Identify Latest Changes
# What was recently modified?
git diff --name-only HEAD~3
git log --oneline -5
Focus browser tests on:
- New/modified pages
- Changed components with UI
- Updated forms or flows
If no UI changes found, STILL run Step 3 on the main page (smoke test).
Step 3: Browser Tests
Check prerequisites first:
# 1. Is agent-browser installed?
command -v agent-browser || npm install -g agent-browser
# 2. Is dev server running?
curl -s http://localhost:3000 > /dev/null 2>&1 || \
curl -s http://localhost:3001 > /dev/null 2>&1 || \
curl -s http://localhost:5173 > /dev/null 2>&1
If no dev server is running, check if a deploy URL exists:
- Check
vercel.jsonor.vercel/for production URL - Check git remote for Vercel/Netlify deploy
- If found, test against production URL instead
Run browser tests:
# Test the changed feature (or main page as smoke test)
agent-browser open http://localhost:3000/[path]
agent-browser snapshot -i
# Verify: no console errors, elements render, no 404s
If agent-browser is not available and cannot be installed, report it as a gap (do NOT silently skip).
Step 4: Report
Test Results
════════════
Unit Tests: ✓ 47 passed, 0 failed
Browser Tests: ✓ 3 flows verified
Tested Flows:
1. /dashboard - ✓ Loads, shows data
2. /settings - ✓ Form saves correctly
3. /login - ✓ Auth flow works
Console Errors: none (or list)
404s Found: none (or list)
Issues Found:
- None (or list issues)
Ready for: deploy / needs fixes
Do not report results after Step 1 alone. The report should include both unit and browser test results.
Test Patterns
Auth Flow
agent-browser open http://localhost:3000/login
agent-browser fill @email "$TEST_USER_EMAIL"
agent-browser fill @password "$TEST_USER_PASSWORD"
agent-browser click @submit
agent-browser snapshot -i # Verify dashboard
Form Submission
agent-browser open http://localhost:3000/form
agent-browser snapshot -i
agent-browser fill @name "Test"
agent-browser click @submit
agent-browser snapshot -i # Verify success
Error States
agent-browser open http://localhost:3000/page?error=true
agent-browser snapshot -i # Verify error UI
Auto-Start Dev Server
If dev server not running, start it on an available port:
# Find first available port (3000, 3001, 3002...)
find_port() {
for port in 3000 3001 3002 3003; do
if ! curl -s http://localhost:$port > /dev/null 2>&1; then
echo $port
return
fi
done
echo 3000 # fallback
}
PORT=$(find_port)
echo "Starting on port $PORT"
# Start in background (no context cost)
Bash({ command: "npm run dev -- -p $PORT", run_in_background: true })
# Wait for startup
sleep 5
# Use detected port for all tests
export TEST_BASE_URL="http://localhost:$PORT"
agent-browser open http://localhost:$PORT
PowerShell version:
$port = 3000
while ((Test-NetConnection -ComputerName localhost -Port $port -WarningAction SilentlyContinue).TcpTestSucceeded) {
$port++
}
Write-Host "Starting on port $port"
Background servers don't fill context - output goes to file, only read if needed.
Note: OAuth flows may fail on non-3000 ports unless redirect URIs are registered. For testing auth, ensure port 3000 is free or use test accounts that bypass OAuth.
Create Stories from Failures
If tests reveal issues, auto-create stories:
TaskCreate({
subject: "Fix failing test: [test name]",
description: "Test output: [error]\nExpected: [X]\nActual: [Y]",
metadata: { type: "fix", priority: 1, category: "qa" }
})
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?