The Sequence Wizard 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.
/ce/sequences/wizard is a full-page guided builder for creating an automated follow-up sequence using the platform’s ModuleWizardRenderer (PF-41).
Overview
Navigating to/ce/sequences/wizard loads CeSequenceBuilderWizardPage. The wizard registers CE-specific step components via registerCeSequenceWizardSteps, then renders ModuleWizardRenderer for the sequence wizard type. On completion, usePublishSequence is called to persist the sequence. At least one step is required before publishing; a validation toast is shown otherwise. The route requires ce.admin.
Known wizard step modules: Enrollment (CeSequenceEnrollmentStep), Step Builder (CeSequenceStepBuilderStep), Exits (CeSequenceExitsStep).
Who it’s for
Permission required:ce.admin
Before you start
- You must have
ce.adminpermission. - Decide the sequence name, enrollment criteria, the step types and delays, and exit conditions before starting.
Steps
Configure enrollment
In the Enrollment step, define how leads are enrolled (auto-enroll criteria, business hours setting).
Build sequence steps
In the Step Builder step, add one or more steps. Each step has a type, name, delay (days / hours / minutes), and skip conditions.
Configure exits
In the Exits step, set the exit conditions: exit on reply, exit on call, exit on conversion.
Key concepts
- ModuleWizardRenderer (PF-41) — The wizard uses the platform’s module wizard renderer, which requires step components to be registered before rendering.
- Publish vs. create — The wizard publishes a complete sequence in one flow; individual step editing afterward is done via the Sequence Details page.
- Exit conditions —
exit_on_reply,exit_on_call,exit_on_conversionare boolean flags set in the Exits step.
Related
Community Engagement
Community Engagement 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/ce.tsx
- src/cores/ce/wizards/sequences/CeSequenceBuilderWizardPage.tsx
- src/cores/ce/wizards/sequences/steps/CeSequenceEnrollmentStep.tsx
- src/cores/ce/wizards/sequences/steps/CeSequenceStepBuilderStep.tsx
- src/cores/ce/wizards/sequences/steps/CeSequenceExitsStep.tsx
- src/cores/ce/wizards/sequences/hooks/usePublishSequence.ts