$npx -y skills add firecrawl/firecrawl-workflows --skill firecrawl-qaQA test a live website with Firecrawl browser and scrape evidence. Use when the user wants exploratory QA, form testing, navigation/link checks, responsive checks, performance observations, bug reports, or a pre-launch quality review.
| 1 | # Firecrawl QA |
| 2 | |
| 3 | Use this to test a live site and return a unified QA report. |
| 4 | |
| 5 | ## Onboarding Interview |
| 6 | |
| 7 | Infer the URL, QA focus, and output format from context. If the target URL is clear, proceed immediately. |
| 8 | |
| 9 | Ask at most 1-3 concise questions only if blocked, such as the URL, the focus area, or credentials/constraints for protected flows. |
| 10 | |
| 11 | ## Firecrawl Collection Plan |
| 12 | |
| 13 | Use Firecrawl map to discover pages. Use Firecrawl browser for interactions, forms, navigation, and responsive/manual checks when available. Use scrape for page content and link extraction. |
| 14 | |
| 15 | ## Parallel Work |
| 16 | |
| 17 | If appropriate, use sub-agents or equivalent parallel task runners: |
| 18 | |
| 19 | - Full: Navigation and Links, Forms and Interactions, Content and Visual, Error States. |
| 20 | - Forms: Form Discovery, Happy Path, Edge Cases, Validation. |
| 21 | - Navigation: Sitemap, Nav Testing, Link Checker, Routing. |
| 22 | - Responsive: Desktop, Tablet, Mobile, Interaction. |
| 23 | - Performance: Page Load, Asset Audit, Content Efficiency, Comparison. |
| 24 | |
| 25 | Each tester should return severity, URL, description, evidence, and reproduction steps. |
| 26 | |
| 27 | ## Final Deliverable |
| 28 | |
| 29 | ```markdown |
| 30 | # QA Report: [Site] |
| 31 | |
| 32 | ## Summary |
| 33 | - Health score: [x/10] |
| 34 | - Pages tested: [count] |
| 35 | - Issues found: [critical/major/minor] |
| 36 | |
| 37 | ## Critical Issues |
| 38 | [C-1] URL | Description | Steps to reproduce | Expected vs actual |
| 39 | |
| 40 | ## Major Issues |
| 41 | [M-1] URL | Description | Steps to reproduce |
| 42 | |
| 43 | ## Minor Issues |
| 44 | [m-1] URL | Description |
| 45 | |
| 46 | ## Positive Observations |
| 47 | [What works well] |
| 48 | |
| 49 | ## Pages Tested |
| 50 | [URLs] |
| 51 | |
| 52 | ## Agent/Test Summary |
| 53 | [Who tested what] |
| 54 | |
| 55 | ## Rerun Inputs |
| 56 | workflow: firecrawl-qa |
| 57 | url: [url] |
| 58 | focus: [full/forms/navigation/responsive/performance] |
| 59 | ``` |
| 60 | |
| 61 | ## Quality Bar |
| 62 | |
| 63 | - Include reproduction steps for functional issues. |
| 64 | - Do not report speculative bugs without evidence. |
| 65 | - Deduplicate findings across testers. |