$npx -y skills add firecrawl/firecrawl-workflows --skill firecrawl-dashboard-reportingPull metrics from analytics dashboards and internal web tools with Firecrawl browser. Use when the user needs dashboard reporting, cross-platform metric summaries, authenticated analytics extraction, date-range reports, or structured metrics from web dashboards.
| 1 | # Firecrawl Dashboard Reporting |
| 2 | |
| 3 | Use this to extract visible metrics from dashboards the user can legitimately access. |
| 4 | |
| 5 | ## Onboarding Interview |
| 6 | |
| 7 | Infer dashboard URLs, metrics, date range, and output format from context. If dashboard targets are clear and accessible, proceed immediately. |
| 8 | |
| 9 | Ask at most 1-3 concise questions only if blocked, such as the dashboard URLs, auth/profile requirement, or date range. |
| 10 | |
| 11 | ## Firecrawl Collection Plan |
| 12 | |
| 13 | Use Firecrawl browser for authenticated dashboards and UI interaction: |
| 14 | |
| 15 | - open each dashboard |
| 16 | - set or verify date range |
| 17 | - extract visible KPI cards, tables, and labels |
| 18 | - click tabs, expand sections, and scroll tables |
| 19 | - use export/download buttons only when appropriate and allowed |
| 20 | |
| 21 | If login has expired, ask the user to re-authenticate rather than attempting to bypass access controls. |
| 22 | |
| 23 | ## Parallel Work |
| 24 | |
| 25 | If appropriate, use sub-agents or equivalent parallel task runners. Split by dashboard platform or metric category. Each researcher should return metrics, units, period, source URL, and caveats. |
| 26 | |
| 27 | ## Final Deliverable |
| 28 | |
| 29 | ```markdown |
| 30 | # Dashboard Report |
| 31 | |
| 32 | ## Summary |
| 33 | [Highlights, alerts, trends] |
| 34 | |
| 35 | ## Metrics By Dashboard |
| 36 | [Platform, metric, value, unit, change, period] |
| 37 | |
| 38 | ## Tables Or Exports |
| 39 | [Captured tables/files and what they contain] |
| 40 | |
| 41 | ## Notes And Caveats |
| 42 | [Auth issues, chart-only data, unavailable metrics] |
| 43 | |
| 44 | ## Rerun Inputs |
| 45 | workflow: firecrawl-dashboard-reporting |
| 46 | dashboards: [urls] |
| 47 | date_range: [range] |
| 48 | metrics: [list] |
| 49 | output: [json/markdown] |
| 50 | ``` |
| 51 | |
| 52 | ## JSON Shape |
| 53 | |
| 54 | Use `reportedAt`, `dateRange`, `dashboards[]`, `metrics[]`, `tables[]`, `exports[]`, and `summary`. |
| 55 | |
| 56 | ## Quality Bar |
| 57 | |
| 58 | - Extract actual numbers, not just chart labels. |
| 59 | - Note when a chart cannot be read precisely. |
| 60 | - Preserve date ranges and source URLs. |