The Wizard 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/wizards/marketplace displays wizard templates shared through the cross-organization marketplace. Users can browse, preview, and clone templates into their own organization.
Overview
The Wizard Marketplace fetches listings fromuseMarketplaceListings and featured listings from useFeaturedListings. Featured templates are shown in a horizontally scrollable carousel when no search or module filter is active. All listings are shown in a responsive grid below. A MarketplacePreviewDialog allows users to inspect a template before cloning. Cloning uses useMarketplaceMutation.cloneListing and redirects to /fw/wizards/:id/edit on success.
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 wizard marketplace.
Before you start
- No specific browse permission is required. Cloning requires an active organization context.
- The current user ID and organization ID are required for the clone mutation.
Steps
Browsing:- Navigate to
/fw/wizards/marketplace. - Review featured templates in the horizontal carousel (when no filters are active).
- Browse all templates in the main grid.
- Use the
MarketplaceFilterscomponent to filter by search term and/or module. - Adjust the sort order (e.g., popular).
- Select a listing card to open the
MarketplacePreviewDialog. - Review the template details.
- Select Clone to proceed with cloning.
- From a card or preview, select Clone.
- The
CloneFromMarketplaceDialogopens for confirmation. - Confirm the clone. On success the wizard template is added to the organization and the browser navigates to
/fw/wizards/:id/edit.
Key concepts
- Marketplace listing — A wizard template made available by another organization for cloning.
- Featured listing — A curated marketplace listing shown prominently at the top of the page.
- Clone — Creates a copy of the marketplace listing’s wizard template in the current organization.
- Module filter — Filters listings by the platform core they are associated with (e.g.,
rh,hr,cl).
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/platform/wizards/pages/MarketplacePage.tsx
- src/platform/wizards/hooks/useMarketplace.ts
- src/platform/wizards/hooks/useMarketplaceMutation.ts