The Template Marketplace 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.
/fw/templates/marketplace displays workflow templates available from the cross-organization marketplace, with filtering by category and rating, sorting options, AI recommendations, and featured template sections.
Overview
The Template Marketplace fetches templates fromuseMarketplaceTemplates and useFeaturedMarketplaceTemplates. Featured templates are displayed in a highlighted section when no filters are active. AI recommendations (AITemplateRecommendations) are shown above the main grid when no filters are active and templates are loaded.
Selecting a template card opens a preview dialog (TemplatePreview). From the preview, users can choose to use the template, which opens the TemplateCustomizer dialog. On successful customization and clone, a new automation rule is created and the browser navigates to /fw/automations/:ruleId.
Who it’s for
No explicit permission gate on this route insrc/routes/fw.tsx. All authenticated users with access to the FW module can browse the marketplace.
Before you start
- No specific permissions are required to browse. Cloning a template creates an automation rule — confirm any permissions required for that action.
Steps
Browsing:- Navigate to
/fw/templates/marketplace. - Review featured templates (shown when no filters are active).
- Review AI recommendations if present.
- Browse the main template grid.
- Enter a search term in the search box.
- Select a Category from the dropdown.
- Select a minimum Rating threshold.
- Select a Sort option: Most Popular, Top Rated, or Newest.
- Click a template card to open the preview dialog.
- Review the template description and configuration.
- Select similar templates from the preview if available.
- From the template card or preview dialog, select Use Template.
- The
TemplateCustomizerdialog opens to configure the template for your organization. - On success, a new automation rule is created and the browser navigates to
/fw/automations/:ruleId.
Key concepts
- Marketplace template — A workflow template shared across organizations. Featured templates are curated by platform administrators.
- Clone — Creates a new automation rule in the current organization based on the template’s configuration.
- AI recommendations — Shown when no filters are active; suggests templates based on available template metadata. SME: confirm data sent to AI service.
- Template category — Classifies templates by domain (e.g., defined in
TEMPLATE_CATEGORIES).
Related
Forms & Workflow
Forms & Workflow core 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/fw.tsx
- src/cores/fw/pages/TemplateMarketplacePage.tsx
- src/cores/fw/hooks/useMarketplaceTemplates.ts
- src/cores/fw/components/templates/TemplateCard.tsx
- src/cores/fw/components/templates/TemplateCustomizer.tsx