🔧 Setup Task Manager

Connect to Supabase to sync tasks between you and Bennett.

Steps:

  1. Go to supabase.com and sign up (free)
  2. Create a new project → name it "bennett-tasks"
  3. Run this SQL in the SQL Editor:
create table tasks (
  id uuid default gen_random_uuid() primary key,
  title text not null,
  description text,
  priority text default 'M',
  due_date text,
  status text default 'queue',
  created_at timestamptz default now()
);

create policy "Allow access" on tasks
  for all using (true) with check (true);

Get credentials from Settings → API:

📋 Tasks ● Live Sync

📥 Queue 0
🔄 In Progress 0
✅ Done 0