> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Staff Operations

> Navigation grouping for staff-facing operational tools including assignments, training records, and shift notes under /rh/staff-operations.

`/rh/staff-operations` is a URL namespace that groups staff-facing operational sub-routes within the Recovery Housing module. There is no dedicated page rendered at this exact path; navigating to `/rh/staff-operations` directly will reach a Not Found state.

## Overview

`src/routes/rh.tsx` defines three child routes under the `/rh/staff-operations` namespace, all wrapped by the outer `RHViewGuard` (`rh.dashboard.view`), with no additional permission gate at the namespace level:

| Path                               | Component              |
| ---------------------------------- | ---------------------- |
| `/rh/staff-operations/assignments` | `StaffAssignmentsPage` |
| `/rh/staff-operations/training`    | `StaffTrainingsPage`   |
| `/rh/staff-operations/shift-notes` | `ShiftNotesPage`       |

No route is registered for `/rh/staff-operations` itself.

## Who it's for

Access follows your organization's role and module configuration. All sub-routes are accessible to users holding `RH_PERMISSIONS.DASHBOARD_VIEW` (`rh.dashboard.view`). `RH_PERMISSIONS.STAFF_OPERATIONS_VIEW` (`rh.staff-operations.view`) and `RH_PERMISSIONS.STAFF_OPERATIONS_CREATE` (`rh.staff-operations.create`) exist in the permission constants but are not applied as route-level guards on the individual sub-route pages observed in the code.

## Before you start

* Hold `rh.dashboard.view` to access the RH module.
* Navigate directly to one of the sub-routes listed in the Overview table.

## Steps

<Steps>
  <Step title="Navigate to a staff-operations sub-route">
    Choose one of the three sub-routes: `/rh/staff-operations/assignments`, `/rh/staff-operations/training`, or `/rh/staff-operations/shift-notes`. There is no landing page at `/rh/staff-operations` itself.
  </Step>

  <Step title="Staff Assignments">
    `/rh/staff-operations/assignments` — manage staff-to-residence assignments. See the Assignments documentation for details.
  </Step>

  <Step title="Training">
    `/rh/staff-operations/training` — track staff certifications and training expirations. See the Training documentation for details.
  </Step>

  <Step title="Shift Notes">
    `/rh/staff-operations/shift-notes` — review and create daily shift notes. See the Shift Notes documentation for details.
  </Step>
</Steps>

## Related

<Columns cols={2}>
  <Card title="Recovery Housing" icon="house" href="/rh/references">
    Recovery Housing references and overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" href="/governance/index">
    Documentation coverage and governance.
  </Card>
</Columns>

<Note>
  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.
</Note>

<Accordion title="Documentation sources">
  * src/routes/rh.tsx
  * src/cores/rh/pages/StaffAssignmentsPage.tsx
  * src/cores/rh/pages/StaffTrainingsPage.tsx
  * src/cores/rh/pages/ShiftNotesPage.tsx
</Accordion>
