Elevasis LogoElevasis Docs
Courses

Course Catalog

All training courses available in the Elevasis platform

Implementation: apps/command-center/src/features/training/content/courses/

Overview

Training provides structured learning content through React component-based courses. Each course consists of lessons with inline quizzes, optional assessments, and can award certifications upon completion.

Course Registry: apps/command-center/src/features/training/content/registry.ts


Available Courses

CourseCategoryDurationAudienceLessonsCertification
Automation FoundationsFoundation25 minPublic4 lessons + final assessmentAutomation Foundations Certified
AI Orchestration FundamentalsFoundation60 minPublic7 lessons + final assessmentAI Orchestration Fundamentals Certified
Sales FundamentalsSales64 minPartner8 lessons + final assessmentNone
Discovery & ValueSales105 minPartner11 lessons + final assessmentNone
Closing SkillsSales90 minPartner11 lessons + final assessmentNone
Agent DevelopmentTechnical120 minDeveloper6 lessons (placeholder)Coming soon
Advanced OrchestrationTechnical90 minDeveloper5 lessons (placeholder)Coming soon

Courses by Category

Foundation

  • Automation Foundations - Understand business data, system connections, events, and AI basics. Foundation for AI Orchestration Fundamentals. (25 min, certified)
  • AI Orchestration Fundamentals - Master AI orchestration fundamentals. Learn the 5 building blocks, the 4 orchestration principles, and how systems deliver ROI. (60 min, certified)

Sales

  • Sales Fundamentals - Build the sales mindset and master the complete sales journey. (64 min)
  • Discovery & Value - Run effective discovery calls and communicate compelling value. (105 min)
  • Closing Skills - Handle objections with confidence and close deals effectively. (90 min)

Technical

  • Agent Development - Learn to build, test, and deploy intelligent agents. Covers prompt engineering, tool integration, memory systems, and production deployment patterns. (120 min)
  • Advanced Orchestration - Master complex multi-agent systems, workflow optimization, and enterprise-scale automation patterns. (90 min)

Course Structure

Each course follows this file structure:

apps/command-center/src/features/training/content/courses/{course-slug}/
├── course.config.ts          # Course metadata and configuration
├── Lesson01[Name].tsx        # Lesson components
├── Lesson01[Name]Quiz.tsx    # Inline quiz for lesson
├── Lesson02[Name].tsx
├── FinalAssessment.tsx       # Final assessment (if certified)
└── ...

Configuration Type:

interface CourseConfig {
  slug: string
  title: string
  description: string
  category: 'foundation' | 'sales' | 'technical'
  audience: 'internal' | 'partner' | 'developer' | 'customer' | 'public'
  estimatedDuration: string
  learningObjectives?: string[]
  lessons: LessonConfig[]
  assessments?: AssessmentConfig[]
  certification?: CertificationRequirement
}

Adding a New Course

  1. Create course directory: apps/command-center/src/features/training/content/courses/{slug}/
  2. Create course.config.ts with CourseConfig
  3. Create lesson components (Lesson01[Name].tsx, etc.)
  4. Create quiz components if needed (Lesson01[Name]Quiz.tsx)
  5. Export from registry.ts
  6. Add course documentation: apps/docs/content/docs/training/courses/{slug}.mdx
  7. Run /training --sync to update documentation


Last Updated: 2026-01-13