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
| Course | Category | Duration | Audience | Lessons | Certification |
|---|---|---|---|---|---|
| Automation Foundations | Foundation | 25 min | Public | 4 lessons + final assessment | Automation Foundations Certified |
| AI Orchestration Fundamentals | Foundation | 60 min | Public | 7 lessons + final assessment | AI Orchestration Fundamentals Certified |
| Sales Fundamentals | Sales | 64 min | Partner | 8 lessons + final assessment | None |
| Discovery & Value | Sales | 105 min | Partner | 11 lessons + final assessment | None |
| Closing Skills | Sales | 90 min | Partner | 11 lessons + final assessment | None |
| Agent Development | Technical | 120 min | Developer | 6 lessons (placeholder) | Coming soon |
| Advanced Orchestration | Technical | 90 min | Developer | 5 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
- Create course directory:
apps/command-center/src/features/training/content/courses/{slug}/ - Create
course.config.tswith CourseConfig - Create lesson components (Lesson01[Name].tsx, etc.)
- Create quiz components if needed (Lesson01[Name]Quiz.tsx)
- Export from
registry.ts - Add course documentation:
apps/docs/content/docs/training/courses/{slug}.mdx - Run
/training --syncto update documentation
Related Documentation
- LMS Features - Full LMS architecture
- Training Overview - Feature infrastructure
Last Updated: 2026-01-13