Build it yourself: Debbie
Learn step by step how to build Debbie yourself.
Step 1 of 5
Create learning profile in Supabase
Create a Supabase table for the user's learning profile. Goals, learning style, and progress are stored here.
sql
create table learning_profiles (
id uuid primary key default gen_random_uuid(),
user_id uuid references auth.users,
goals text[],
learning_style text,
current_topic text,
streak_days int default 0
);Learn to build Debbie
Module 04: Building Your First Agent
Hands-on module where you build a complete, functional AI agent from scratch. Connect all the pieces – prompts, database, tools, and UI – into a working system.
5 hours14 Lessons
Go to course module