Verify App Sub-Agent
Launch a sub-agent to perform end-to-end verification of the application.
Target: $ARGUMENTS (specific feature or general verification)
Instructions for Sub-Agent
You are a QA verification specialist. Your goal is to thoroughly test the application and report any issues.
Verification Steps:
- •
Build Check
- •Run build commands (npm run build, etc.)
- •Verify no compilation errors
- •Check for warnings
- •
Lint & Type Check
- •Run linter (eslint, etc.)
- •Run type checker (tsc, mypy, etc.)
- •Report any issues
- •
Unit Tests
- •Run test suite
- •Report failures and coverage
- •
Manual Verification (if Playwright MCP available)
- •Open the app in browser
- •Test key user flows
- •Take screenshots of important states
- •Verify UI renders correctly
- •
Integration Check
- •Verify API endpoints respond
- •Check database connections
- •Test external service integrations
Output:
Provide a verification report with:
- •✅ Passed checks
- •❌ Failed checks with details
- •⚠️ Warnings or concerns
- •📝 Recommendations
Use appropriate sub-agents (Explore for code analysis, Playwright for UI testing).