AgentSkillsCN

Verify App

验证应用

SKILL.md

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:

  1. Build Check

    • Run build commands (npm run build, etc.)
    • Verify no compilation errors
    • Check for warnings
  2. Lint & Type Check

    • Run linter (eslint, etc.)
    • Run type checker (tsc, mypy, etc.)
    • Report any issues
  3. Unit Tests

    • Run test suite
    • Report failures and coverage
  4. Manual Verification (if Playwright MCP available)

    • Open the app in browser
    • Test key user flows
    • Take screenshots of important states
    • Verify UI renders correctly
  5. 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).