Skip to main content

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.

The Wizard Marketplace page at /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 from useMarketplaceListings 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 in src/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:
  1. Navigate to /fw/wizards/marketplace.
  2. Review featured templates in the horizontal carousel (when no filters are active).
  3. Browse all templates in the main grid.
Filtering and sorting:
  1. Use the MarketplaceFilters component to filter by search term and/or module.
  2. Adjust the sort order (e.g., popular).
Previewing a template:
  1. Select a listing card to open the MarketplacePreviewDialog.
  2. Review the template details.
  3. Select Clone to proceed with cloning.
Cloning a template:
  1. From a card or preview, select Clone.
  2. The CloneFromMarketplaceDialog opens for confirmation.
  3. 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).

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.
  • src/routes/fw.tsx
  • src/platform/wizards/pages/MarketplacePage.tsx
  • src/platform/wizards/hooks/useMarketplace.ts
  • src/platform/wizards/hooks/useMarketplaceMutation.ts