* add trigger * small fixes * add missing workflow DTOs * small fixes * use activeOnWithChildren * fix active on when switching trigger type * remove add variable dropdown * feat: lang support * fix: type errors * feat: select voice agent * refactor: address feedback * refactor: address feedback * refactor: missing import * fix: types * add getAllWorkflowsFromRoutingForm to WorkflowService * fix error caused by undefined evt * fix type error * fix type error * fix tests * feat: add inbound calls * chore: formatting * chore * feat: finish inbound call * chore: formatting * fix: update bug * fix: types * code clean up * final fixes and clean up * remove console.log * remove template text form from triggers * add routing form repoditory function * refactor: Agent Configuration Sheet (#23930) * refactor: agent configuration sheet * chore: use default phone numbre * refactor: improvements * refactor: improvements * fix: types * fix: feedback * fix bug with key * chore: * fix: feedback * fix: prompt * add comments * fix: review * fix: review * refactor: class * refactor: class * fix test * allow cal ai action on form triggers * move any reusable code to scheduleAIPhoneCall * add missing await * use predefined FormSubmissionData type * add .trim() to sms message * pass contextData instead * finish base setup * add missing trigger in update-workflow.input.ts * allow cal.ai action for form triggers in handler * chore: add support for form workflows on api v2 * fixup! chore: add support for form workflows on api v2 * ai phone call on form submissions (WIP) * use existing type for Option array * pass chosen event type id * refactor: rename * Update apps/web/public/static/locales/en/common.json * Update apps/web/public/static/locales/en/common.json * add missing imports * chore: update set value * fix: remove index * fix: type error * fix: update tetss * use only repository functions in update handler * move all prisma queries from list.handler * review suggestions * fix: use logger * chore: handle workflows api v2 * chore: handle workflows api v2, split in 2 endpoints * fix workflow step creation * remove connect agent and fixes types * add type to workflow * chore: use workflow type in apiv2 WorkflowsOutputService * update worklfow type on update * chore: use workflow type in apiv2 WorkflowsOutputService * fix template body for torm trigger * some UI fixes for email subject/body * resetting email body when changing form triggers * use type field to query workflows * clean up all old active on values * remove responseId from all funciton calls * remove undefined from updateTemplate * refactor: don't use static * fix: type * refactor: split routing form and event-type workflows code * refactor: split routing form and event-type workflows code * fix template text when adding action * chore: don't rename WorkflowActivationDto to avoid ci blocking * refine update schedule to use only allowed actions * fix type error * don't allow whatsapp action with form trigger * fix type error * return early if activeOn array is empty * fix: from step type in BaseFormWorkflowStepDto * fixup! fix: from step type in BaseFormWorkflowStepDto * api v2 updates * move all prisma calls to repository (service/workflows.ts) * use FORM_TRIGGER_WORKFLOW_EVENTS for form queries * use userRepository * use FORM_TRIGGER_WORKFLOW_EVENTS in isFormTrigger * code clean up * code clean up * use repository functions in formSubmissionValidation.ts * fix: schema * refactor: * remove action check in update handler * add event type selection * event type selector improvements * adjust update.handler * set outboundEventTypeId * add back trpc import * fix agent repository functions * clean up * fix bugs caused by merge * pass eventTypeId to updateToolsFromAgentId * add migration for outboundEventTypeId * add SMS actions to allowed form action constants * add cal ai to allowed form actions * pick correct event type for web call * pass correct routed event type id * remove unsued import * fixes for offset api v2 * add missing responseId * fix failing test * fix failing test * improve error message * remove unused imports * chore: handle sms step action for form worklfow in dtos * fix typo * missing missing newStep * minor fixes * remove changes * add routedEventTypeId * fix type error * fix type error * fix typ error in executAPIPhoneCall.tsx * add back inboundEventTypeId * remove console.log * remove outdated code * small fixes * don't throw error for missing phone number * add back filtered triggerOptions * fix eventTypeId in testCall handler * fix type error * update migration * fix trigger is not defined * convert eventTypeId to string * only use outboundEventTypeId for FORM_SUBMITTED trigger * show toast when no event type selected * fix type errors * add missing translation * fix type error * remove callType * fix tests * small fixes * clean up AgentConfigurationSheet * remove EventTypeSelector file * code clean up * clean up * clean up * use resusable function for TestPhoneCallDialog and WebCallDialog * rename result * fix types for event type id * use repository runction in workflowReminder.ts * fix type error * pass eventTypeIds correctly * fix typo * Update apps/web/public/static/locales/en/common.json Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> * use watch instead of getValues * change to z.record(z.unknown()) instead of any() * fix type of eventTypeId * check permissinon for outBoundEventTypeId * add isNaN check * improve function name * update tools when outbound agent event type id changes * pass missing outboundEventTypeId * update migration * fix test * remove cal-ai step from test --------- Co-authored-by: CarinaWolli <wollencarina@gmail.com> Co-authored-by: Udit Takkar <udit222001@gmail.com> Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Co-authored-by: Benny Joo <sldisek783@gmail.com> Co-authored-by: cal.com <morgan@cal.com> Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>
Cal.com AI Phone Service Architecture
This package provides a comprehensive, provider-agnostic architecture for AI phone services in Cal.com, offering easy integration with different AI service providers, template management, and self-service UI components.
Architecture Overview
The architecture implements multiple design patterns to create a maintainable, scalable, and flexible system:
Layered Architecture
┌─────────────────────────────────────────────┐
│ Frontend (React/Next.js) │
│ - UI Components (Agent/Phone Management) │
├─────────────────────────────────────────────┤
│ TRPC API Layer │
│ - Type-safe RPC endpoints │
│ - Request/Response validation │
├─────────────────────────────────────────────┤
│ Service Layer │
│ - Business logic orchestration │
│ - Provider abstraction │
├─────────────────────────────────────────────┤
│ Repository Layer │
│ - Data access abstraction │
│ - Query optimization │
├─────────────────────────────────────────────┤
│ Prisma ORM / Database │
│ - PostgreSQL with optimized queries │
└─────────────────────────────────────────────┘
Design Patterns Implemented
- Repository Pattern: Encapsulates data access logic
- Factory Pattern: Creates provider instances dynamically
- Strategy Pattern: Allows switching between AI providers
- Service Pattern: Orchestrates business logic
- Registry Pattern: Manages provider registration
- Template Pattern: Provides reusable conversation templates
- Mapper Pattern: Transforms data between layers
Key Components
1. Generic Interfaces (interfaces/AIPhoneService.interface.ts)
AIPhoneServiceProvider- Main interface that all providers must implementAIPhoneServiceConfiguration- Configuration for setting up AI servicesAIPhoneServiceProviderFactory- Factory interface for creating providers- Common data types (
AIPhoneServiceModel,AIPhoneServiceCall,AIPhoneServiceAgent, etc.) - Phone number management interfaces
- Agent and LLM management interfaces
2. Provider Registry (AIPhoneServiceRegistry.ts)
AIPhoneServiceRegistry- Central registry for managing providerscreateAIPhoneServiceProvider()- Helper function to create providerscreateDefaultAIPhoneServiceProvider()- Convenience function for default provider- Provider registration and management system
3. Template System
- Template Types:
CHECK_IN_APPOINTMENTandCUSTOM_TEMPLATE - Prompt Templates (
promptTemplates.ts): Pre-defined conversation templates with placeholders - Field Mapping (
template-fields-map.ts): Dynamic field definitions for different template types - Schema Validation (
zod-utils.ts): Comprehensive validation schemas for all data types - Template Field Schema (
getTemplateFieldsSchema.ts): Dynamic schema generation based on template type
4. Provider Implementations (providers/)
retellAI/- Complete Retell AI implementation with:- Provider class with full interface implementation
- Factory for provider creation
- SDK client for API communication
- Service layer for business logic
- Error handling and type definitions
example-future-provider/- Example showing how to add new providers
5. UI Components (components/)
CreateAgentStep.tsx- Step-by-step agent creation wizardCreateWorkflowAgent.tsx- Workflow-based agent setupAgentsListPage.tsx- Agent management and listingSkeletonLoaderList.tsx- Loading states for better UX
6. Pages (pages/)
agent.tsx- Agent management pageindex.tsx- Main AI phone service dashboard
7. Data Layer Components
- Repository Classes (
/packages/lib/server/repository/)PrismaAgentRepository- Manages agent data accessPrismaPhoneNumberRepository- Handles phone number operations
- Service Classes (
providers/retellAI/RetellAIService.ts)- Business logic orchestration
- External API integration
- Mapper Functions
- Transform between database models and DTOs
- Handle data serialization/deserialization
Architecture Patterns in Detail
Repository Pattern
The repository pattern provides an abstraction layer over data access, making the system database-agnostic and testable.
Benefits:
- Separation of Concerns: Business logic separated from data access
- Testability: Easy to mock for unit tests
- Flexibility: Can switch between Prisma ORM and raw SQL
- Reusability: Common queries centralized in one place
Factory Pattern
The factory pattern enables dynamic creation of provider instances without exposing instantiation logic.
Benefits:
- Loose Coupling: Client code doesn't depend on concrete classes
- Extensibility: Easy to add new providers
- Configuration Management: Centralized provider setup
Service Pattern
Service layer orchestrates business operations and coordinates between multiple repositories and external services.
Benefits:
- Business Logic Encapsulation: Complex operations in one place
- Transaction Management: Coordinates multiple operations
- Reusability: Common workflows available to all consumers
Registry Pattern
The registry pattern manages provider registration and lookup, acting as a service locator.
Benefits:
- Dynamic Provider Management: Add/remove providers at runtime
- Centralized Configuration: Single point for provider management
- Dependency Injection: Supports IoC principles
Mapper Pattern
Mappers transform data between different representations (database models, DTOs, API responses).
Benefits:
- Data Transformation: Clean separation between layers
- Flexibility: Different representations for different contexts
- Maintainability: Changes in one layer don't affect others
Strategy Pattern
The strategy pattern allows switching between different AI providers seamlessly.
Benefits:
- Provider Independence: Switch providers without changing client code
- Extensibility: Add new providers easily
- Testing: Mock providers for testing
Integration with Cal.com Workflows
The AI Phone system is designed specifically for Cal.com's workflow automation, enabling AI-powered phone calls as part of scheduling workflows.
Workflow Integration Architecture
┌─────────────────────────────────────────────┐
│ Cal.com Workflow Engine │
├─────────────────────────────────────────────┤
│ Workflow Step: AI Phone Call │
├─────────────────────────────────────────────┤
│ AI Phone Service (via Registry) │
├─────────────────────────────────────────────┤
│ Agent + Phone Number Setup │
└─────────────────────────────────────────────┘
Workflow Step Configuration
AI Phone calls are configured as workflow steps with specific triggers.
Supported Workflow Triggers
AI Phone calls can be triggered by various workflow events:
- BEFORE_EVENT: Call attendees before appointments
- AFTER_EVENT: Follow up after meetings
- NEW_EVENT: Welcome calls for new bookings
- RESCHEDULE_EVENT: Notify about schedule changes
- CANCELLED_EVENT: Handle cancellation calls
Workflow Execution Flow
1. Workflow Trigger (e.g., 24 hours before event)
↓
2. Workflow Engine schedules AI Phone Call task
↓
3. Task Runner (executeAIPhoneCall) executes
↓
4. AI Phone Service creates call with dynamic data
↓
5. Call connects and AI handles conversation
↓
6. Call results logged back to workflow
Rate Limiting for Workflows
To prevent abuse, workflow AI calls are rate-limited.
Data Flow Architecture
Workflow-Specific Data Flow
1. Workflow Trigger Event
↓
2. Workflow Step Configuration Retrieved
↓
3. Booking & Attendee Data Fetched
↓
4. Dynamic Variables Prepared
↓
5. AI Agent & Phone Number Selected
↓
6. Phone Call Initiated
↓
7. Results Logged to Workflow
Usage Examples
For complete usage examples, please refer to:
- Basic Usage: See commented examples in
index.ts - Provider Setup: Check provider factories in
providers/ - Workflow Integration: Review
packages/features/handleCreatePhoneCall.ts
Field Types
Supported field types include:
text,textarea,number,email,phoneaddress,multiemail,select,multiselectcheckbox,radio,radioInput,boolean
Template Variables
Templates support dynamic variables:
{{scheduler_name}}- Name of the scheduler{{name}}- Guest name{{email}}- Guest email{{company}}- Guest company{{current_time}}- Current timestamp- And many more
Adding New Providers
For detailed instructions on adding new providers, see the example provider implementation.
Environment Variables
RETELL_AI_KEY- API key for Retell AI (required when using Retell AI provider)STRIPE_PHONE_NUMBER_MONTHLY_PRICE_ID- Stripe price ID for monthly phone number subscriptions (required for billing)NODE_ENV- Controls logging behavior (logging disabled in production)
Stripe Integration
The AI Phone system integrates with Stripe for phone number billing. When users purchase phone numbers through the workflow system, they're redirected to Stripe checkout.
The STRIPE_PHONE_NUMBER_MONTHLY_PRICE_ID should be set to your Stripe price ID that represents the monthly subscription cost for AI phone numbers. This price ID is created in your Stripe dashboard and determines how much customers are charged monthly for each phone number.
Credit System and Billing
Webhook-Based Credit Deduction
The AI Phone system automatically deducts credits from user or team accounts when calls are completed. This is handled by the webhook at apps/web/app/api/webhooks/retellAI/route.ts.
Credit Deduction Flow
1. AI Phone Call Completes
↓
2. Provider sends "call_analyzed" webhook
↓
3. Webhook verifies signature for security
↓
4. System looks up phone number owner (user/team)
↓
5. Calculates credits based on usage factors
↓
6. Verifies sufficient credits available
↓
7. Deducts credits from account
↓
8. Logs transaction for audit
Credit Calculation
Credits are deducted based on multiple factors including:
- Call Duration: Longer calls consume more credits
- Prompt Complexity: Advanced prompts and conversation templates affect cost
- Voice Configuration: Different voice models and settings impact pricing
- Features Used: Additional AI capabilities and tools increase credit usage
The system calculates the total cost and converts it to credits for deduction from the user or team account.
Webhook Setup
The webhook requires proper configuration:
- Webhook URL: Add the webhook endpoint to your AI provider dashboard
- Environment Variables: Set appropriate API keys for webhook verification
- Security: Webhook signatures are verified to ensure authenticity
Credit Service Integration
The webhook integrates with Cal.com's credit system to check and deduct credits appropriately.
Error Handling
The webhook includes comprehensive error handling:
- Invalid Signatures: Returns 401 Unauthorized
- Missing Phone Number: Logs error, cannot deduct credits
- Insufficient Credits: Logs warning but doesn't block (call already completed)
- Missing Cost Data: Logs error and skips credit deduction
Supported Events
The webhook processes call completion events that contain the final usage data and cost information. Other events are acknowledged but not processed for billing purposes.
Provider-Specific Documentation
- Retell AI Provider - Complete Retell AI integration
- Example Provider - Template for new providers
Future Enhancements
- Multi-language template support
- Advanced workflow builder UI
- Provider health checks and automatic failover
- Real-time call monitoring and analytics
- Integration with Cal.com's webhook system
- Custom field type plugins
- Template marketplace and sharing
- Advanced agent training and optimization tools
- Integration with more AI service providers
- Voice cloning and customization options