
Build it yourself: Nettie
Learn step by step how to build Nettie yourself.
Step 1 of 4
Create contact database in Supabase
Create tables for contacts and interactions with tags, follow-up dates, and notes.
sql
create table contacts (
id uuid primary key default gen_random_uuid(),
user_id uuid references auth.users,
name text not null,
company text,
role text,
email text,
tags text[],
notes text,
last_contact timestamptz,
next_followup timestamptz
);
create table interactions (
id uuid primary key default gen_random_uuid(),
contact_id uuid references contacts(id),
type text check (type in ('meeting','email','call','event')),
summary text,
date timestamptz default now()
);Learn to build Nettie
Module 07: The Agent Family System
Design and build a complete agent family – multiple specialized agents that work together seamlessly. Learn orchestration, delegation, and system design.
4.5 hours12 Lessons
Go to course module