HomeFrameworksE-Learning Platform Builder
EnterpriseFeaturedNewv2.0L5 Semantic FrameworkUpdated July 2026

E-Learning Platform Builder

Build a full-stack online course platform with AI — from curriculum to checkout to completion

4.9(167 reviews)2.2K installs56 prompts7 stagesSaaS
GPT-4ClaudeGoDaddy Airo

E-Learning Platform Builder is the most comprehensive AI framework for developers building online education products. It covers the full technical stack: React frontend with video player and progress tracking, Node.js backend with course management APIs, quiz and assessment engine, PDF certificate generation, Stripe payment integration, and an AI-powered course recommendation engine. Every prompt produces production-ready TypeScript code with proper error handling, database schemas, and deployment configurations.

Full Access Unlocked

All 56 prompts · All 7 modules

30-day money-back guarantee
Secure checkout via Stripe
Lifetime updates (currently v2.0)
Instant delivery after purchase

"We used this to build a custom platform for a corporate training client. The video player prompt alo..."

Dev Agency Lead · EdTech Client Projects

Need expert implementation?

Hire an Orchestrator

Connect with a certified Prompt.Doctor Orchestrator to deploy this framework for you.

How to use this framework

No coding required. You will use ChatGPT or Claude as your AI tool. Follow these steps in order — do not skip ahead.

1

Purchase & download the framework

Click the buy button on this page. After checkout, go to the and hit Download .zip. Unzip it — you'll get a .md file (the full framework) and a .pdf (easy to read reference). Keep both open.

2

Open your project — new or existing

This dashboard is designed to integrate into any existing project or be built as a standalone app. If you already have a site in Airo (or Cursor, Bolt, etc.), open that project. If you're starting fresh, create a new project. The Orchestrator Prompt handles both cases — it scans what's already there and adds only what's missing.

3

Paste the Orchestrator Prompt into your builder's chat

Open the on this page. Copy the Orchestrator Prompt and paste it into your AI builder's chat. It will scaffold the full admin system — secure login, email marketing module, booking engine, and CMS — on top of your existing codebase. This takes 2–5 minutes.

4

Add your API keys as secrets

Critical — Novice Users

In your builder, go to Settings → Secrets and add the keys your app needs. For this framework: STRIPE_SECRET_KEY (for booking payments — get it from your Stripe dashboard), ANTHROPIC_API_KEY (for AI-assisted content — get it from console.anthropic.com), and DATABASE_URL (your MySQL connection string). No key is needed for the admin login, CMS, or email modules — those run on your existing infrastructure.

Don't have a MySQL server?

You can purchase a shared hosting plan with cPanel and MySQL at host.esgwon.dev. Once your account is set up, follow the step-by-step guide to create your database and connect it to your AI website builder.

How to set up cPanel MySQL & connect to your AI website →

Need help with Stripe?

Get your STRIPE_SECRET_KEY and STRIPE_PUBLISHABLE_KEY from your Stripe dashboard. The guide covers test keys, webhook setup, and going live.

Stripe API keys — setup & testing guide →

Need help with Anthropic?

Get your ANTHROPIC_API_KEY from console.anthropic.com. The guide covers model selection, cost management, and troubleshooting.

Anthropic API key — setup & model guide →

Prompting Airo after setup — always name the file

When asking Airo to add tables, columns, or features to the admin dashboard, always include src/server/lib/admin-db.ts in your prompt. Without it, Airo may target the wrong database. Example: "Add a bookings table in the admin database (src/server/lib/admin-db.ts) — do not touch any other database connection in this project."

See safe prompting examples →
5

Run the framework prompts inside your live app

Your app is now running in the builder's preview panel. Open the on this page, copy each prompt one at a time, and paste it into your builder's chat. Replace every [BRACKET] with your real data before sending. Work through the stages in order — each stage output feeds the next.

6

Test end-to-end, then publish or hand off to your client

Walk through the admin as a real user: log in, create a booking, send a test email campaign, update a CMS image, and run the Safe-to-Publish gate. Once everything passes, click Publish in your builder. Because this is a white-label dashboard, your client accesses it at /admin on their own domain — no Prompt.Doctor branding, no third-party login required.

Who is this for?

Developers building custom e-learning platforms for clients
EdTech startups building their MVP
Enterprises building internal training platforms
Course creators who want a custom platform instead of Teachable/Thinkific

Everything you get

56 production-ready prompts across 7 platform components
Platform architecture: complete React + Node.js + MySQL schema
Video system: custom player with progress tracking, resume playback, and completion detection
Assessment engine: quiz builder, auto-grading, and results analytics
Certificate system: dynamic PDF generation with student name, course, and date
Payment system: Stripe one-time and subscription checkout with course access gating
AI recommendation engine: collaborative filtering for course suggestions

What's Inside

7 modules · 56 prompts · 7 workflow stages

Modules(7 total)

Platform Architecture

Complete system architecture: React frontend, Express API, MySQL schema for users/courses/progress/enrollments. Includes authentication, role system (student/instructor/admin), and deployment config.

8 prompts

Video Player & Progress System

Custom React video player with HLS streaming support, resume-from-last-position, completion percentage tracking, and lesson unlock logic based on sequential completion.

10 prompts

Quiz & Assessment Engine

Quiz builder (multiple choice, true/false, short answer), auto-grading system, attempt tracking, pass/fail thresholds, and results dashboard for instructors.

12 prompts

Certificate Generation

Dynamic PDF certificate generation using PDFKit or Puppeteer. Includes certificate template design prompts, student data injection, and download/share system.

6 prompts

Payment & Access Control

Stripe Checkout integration for one-time course purchases and subscription plans. Course access gating, enrollment management, and refund handling.

8 prompts

AI Recommendation Engine

Collaborative filtering recommendation system: "students who completed X also enrolled in Y." Includes content-based filtering using course tags and student learning history.

8 prompts

Analytics Dashboard

Student progress analytics, course completion rates, quiz performance trends, revenue reporting, and instructor dashboard with per-course metrics.

4 prompts
Sample Prompts(56 total)
Video Player with Progress Tracking·GPT-4

Build a React TypeScript video player component for an e-learning platform. Requirements: 1) Uses HTML5 video element (no external player library), 2) Custom controls: play/pause, seek bar, volume, playback speed (0.75x, 1x, 1.25x, 1.5x, 2x), fullscreen, 3) Progress tracking: saves current position to backend every 10 seconds via POST /api/progress with { lessonId, userId, position, completed }, 4) Resume playback: on mount, fetches last position from GET /api/progress/:lessonId and seeks to it, 5) Completion detection: fires onComplete callback when 90% of video watched, 6) Keyboard shortcuts: space (play/pause), arrow keys (seek 10s), 7) TypeScript with proper types. Include all state management with useState/useRef.

Certificate PDF Generator·GPT-4

Write a Node.js Express endpoint POST /api/certificates/generate that creates a PDF certificate of completion. Requirements: 1) Uses PDFKit (npm install pdfkit), 2) Certificate design: landscape A4, dark navy background (#0A1628), gold border, centered layout, 3) Content: "Certificate of Completion" heading, student full name (large, serif font), course title, completion date, instructor name and signature line, platform logo placeholder, unique certificate ID (UUID), 4) Saves PDF to /tmp/certificates/{certificateId}.pdf, 5) Returns { certificateId, downloadUrl } in response, 6) Separate GET /api/certificates/:id endpoint serves the PDF file, 7) TypeScript. Include full error handling.

Course Recommendation Engine·GPT-4

Build a Node.js course recommendation API endpoint GET /api/recommendations/:userId. Requirements: 1) Collaborative filtering: find users with similar enrollment history, recommend courses they completed that the target user hasn't started, 2) Content-based filtering: recommend courses sharing tags with the user's completed courses, 3) Combine both signals: 60% collaborative, 40% content-based, 4) Return top 6 recommendations with { courseId, title, reason, score }, 5) reason should be human-readable: "Students who completed X also loved this" or "Matches your interest in [TAG]", 6) Cache results in Redis for 1 hour (use ioredis), 7) Fallback: if insufficient data, return top-rated courses in user's enrolled categories. TypeScript + Drizzle ORM.

Workflow Architecture(7 stages)

architecture

8 prompts

Stage 1

system

18 prompts

Stage 2

prompts

16 prompts

Stage 3

templates

6 prompts

Stage 4

workflow

8 prompts

Stage 5

Everything included

Course platform architecture prompts (React + Node)
Video player with progress tracking system
Quiz & assessment engine prompts
Certificate generation system (PDF)
Stripe subscription & one-time payment integration
AI course recommendation engine
Student dashboard & progress analytics
Full Access Unlocked

What builders say

"We used this to build a custom platform for a corporate training client. The video player prompt alone saved 3 days of development. The certificate generator worked perfectly on first run."

DA

Dev Agency Lead

EdTech Client Projects

"Built my own Teachable alternative in 3 weeks using this framework. The architecture prompts gave me a solid foundation I could build on confidently."

SD

Solo Developer

Course Creator

You have full access

All 56 prompts across 7 modules are unlocked for your account.

$179$279

Lifetime access