The Knowledge Portal screen is 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/knowledge and serves as the central hub for the organization’s knowledge base, with search, featured articles, recent articles, and a category browser.
Overview
TheKnowledgePortalPage loads featured articles via useFeaturedArticles(orgId), recent articles via useRecentArticles(orgId), and the category tree via useCategoryTree(orgId). The page header shows “Knowledge Portal” with a search bar (KnowledgeSearchBar) and two action buttons: “Manage Categories” (navigates to /lo/knowledge/categories) and “New Article” (navigates to /lo/knowledge/articles/new). The main content area shows featured articles and recent articles as KnowledgeArticleCard grids. The CategoryTree renders the category hierarchy in a sidebar. Selecting a category filters the displayed articles (via selectedCategory state). Selecting an article card navigates to /lo/knowledge/articles/:articleId.
Who it’s for
RequiresLO_PERMISSIONS.DASHBOARD_VIEW (lo.dashboard.view) via the shared LOViewGuard. Creating articles uses lo.knowledge.create.
Before you start
lo.dashboard.viewpermission required.- An active organization context is required.
Steps
View an article
Select a
KnowledgeArticleCard to open the article at /lo/knowledge/articles/:articleId.Key concepts
- CategoryTree: hierarchical category browser component.
- Featured articles: a curated subset loaded by
useFeaturedArticles. - Recent articles: recently accessed or created articles loaded by
useRecentArticles.
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/KnowledgePortalPage.tsx
- src/cores/lo/hooks/useKnowledgeArticles.ts
- src/cores/lo/hooks/useKnowledgeCategories.ts