Knowledge Base is the admin page 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.
/settings/knowledge-base where authorized users manage the organization’s library of knowledge articles. Articles can be created, searched, filtered by status and category, published, archived, and deleted.
Overview
The page renders a searchable, filterable card grid ofKnowledgeArticle records fetched via useKnowledgeArticles. Search is debounced and URL-synced. Filters include status (KnowledgeArticleStatus) and category (KnowledgeArticleCategory). Bulk operations (publish, archive, delete) are available via useBulkKnowledgeOperations. Individual articles support publish, archive, and delete. Navigation to create and edit pages is provided.
The individual article page is at /settings/knowledge-base/:id.
Who it’s for
Requires permissionpf.ai_skills.view.
Before you start
- You must hold
pf.ai_skills.viewto access this page. - To create or publish articles, additional write permissions may apply (confirm with SME).
Steps
- Navigate to Settings → Knowledge Base (
/settings/knowledge-base). - Use the search input to filter articles by title or content.
- Use the Status and Category dropdowns to narrow results.
- To create a new article, click New Article.
- To publish a draft article, click the publish action on its card.
- To archive an article, use the archive action.
- For bulk operations, select multiple articles and choose a bulk action (publish, archive, or delete).
Key concepts
Knowledge article status — values include draft, published, and archived (fromSTATUS_OPTIONS). Only published articles are available to AI skills.
Category — articles are tagged with a category from CATEGORY_OPTIONS. Confirm values with an SME.
Related
Platform Foundation
Platform Foundation overview.
Governance & parity
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/platform.tsx
- src/platform/knowledge/pages/KnowledgeBaseListPage.tsx
- src/platform/knowledge/hooks/use-knowledge-articles.ts