The Dashboard is the main landing screen of the Leadership Operating System, accessible atDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/lo/dashboard. It aggregates current-quarter metrics, goal progress, issues, to-dos, meetings, and assessments into a single view.
Overview
The Dashboard (LOOverview) loads metrics from useLODashboardMetrics and renders a page header with the current organization name, the current quarter/year label, and a set of stat cards. Below the stats, it displays a grid of lazily loaded widgets: Goals Progress, Open Issues, My To-Dos, Accountability Summary, Goal Quality, Scorecards Trend, Upcoming Meetings, 1-on-1 Summary, and Pending Assessments. A Quick Actions section provides navigation shortcuts to create new items. Keyboard shortcuts (Cmd/Ctrl+T, +I, +M) open creation flows for to-dos, issues, and meetings respectively.
Who it’s for
RequiresLO_PERMISSIONS.DASHBOARD_VIEW (lo.dashboard.view) via the shared LOViewGuard.
Before you start
- The
lo.dashboard.viewpermission must be granted. - An organization context must be active (
useOrganization).
Steps
Review metric summary cards
The stat cards at the top display counts sourced from
useLODashboardMetrics for the current quarter.Check widgets
Scroll to view widgets for goals, issues, to-dos, scorecards, meetings, 1-on-1s, and assessments. Widgets load asynchronously.
Key concepts
- Current quarter: computed from the current date as
Q${Math.ceil((month + 1) / 3)}. - Widget lazy-loading: each dashboard widget is loaded via
React.lazy+Suspensewith aWidgetSkeletonfallback, per constitution.md §6.5.
Related
Leadership
Leadership core overview.
Governance & parity
Documentation coverage and governance.
This page documents shipped product behavior. It is not medical, legal, or
billing advice. Verify against your organization’s policies and applicable
regulations before using it for clinical, compliance, or billing decisions.
Protected health information (PHI) shown in the product is governed by your
tenant’s access controls and is never exposed in this documentation.
Documentation sources
Documentation sources
- src/routes/lo.tsx
- src/cores/lo/pages/LOOverview.tsx
- src/cores/lo/hooks/useLODashboardMetrics.ts