View Dashboard Command
Purpose
Open a finance dashboard in the default browser.
Arguments
$1: Date in natural language (e.g., "feb", "january 2026", "2026")
Workflow
- Parse the argument:
- If just a year (e.g., "2026"): Open yearly cumulative dashboard
- If month specified (e.g., "feb"): Find matching month's index.html
- Open in browser:
open <path>/index.html
Usage
/finance-view 2026 # Opens yearly cumulative dashboard
/finance-view feb # Opens February dashboard
/finance-view january 2026 # Opens January 2026 dashboard
Platform Commands
| Platform | Command |
|---|---|
| macOS | open -a "Google Chrome" <path> |
| Linux | xdg-open <path> |
| Windows | start <path> |
Related Components
- Command: /finance-dashboard