
Build it yourself: Foy
Learn step by step how to build Foy yourself.
Step 1 of 5
Create tasks table in Supabase
Create the database structure for tasks with priority, deadline, energy level, and status.
sql
create table tasks (
id uuid primary key default gen_random_uuid(),
user_id uuid references auth.users,
title text not null,
priority int default 0,
energy_level text check (energy_level in ('low','medium','high')),
deadline timestamptz,
status text default 'pending',
created_at timestamptz default now()
);Learn to build Foy
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