What problem does it solve?
Turning financial data into a live, interactive web dashboard normally requires scaffolding a server, wiring charts, and deploying somewhere users can view it. This Skill handles the full pipeline inside the sandbox: fetching market data, building the dashboard at the right complexity tier, verifying it renders, and exposing it through a preview URL.
Core Features & Use Cases
- Three architecture tiers: self-contained HTML with CDN chart libraries, FastAPI serving static HTML with fetch() polling for live data, or a full FastAPI + Vite/React app in Docker for multi-page routed apps.
- Financial data integration: built-in guidance for Yahoo Finance MCP tools covering prices, fundamentals, analyst estimates, screeners, and sector data, with yfinance fallback inside Docker.
- Ready-made references: copy-paste chart patterns (candlestick, treemap, KPI cards, tables), theme-aware UI components, Dockerfile, start.sh, and FastAPI server templates.
- Use Case: Ask for a live portfolio monitor tracking your holdings; the agent fetches quotes, builds a dashboard with allocation charts and a P&L table, verifies it with Playwright, and returns a preview URL that auto-recovers after workspace restarts.
Quick Start
Ask the agent to build a live stock dashboard for AAPL with price chart, key metrics, and recent news served at a preview URL.