
Build it yourself: Newji
Learn step by step how to build Newji yourself.
Step 1 of 4
RSS feed aggregation
Build an n8n workflow that regularly fetches RSS feeds from your favorite sources and stores them in Supabase.
sql
create table articles (
id uuid primary key default gen_random_uuid(),
user_id uuid references auth.users,
title text not null,
url text not null unique,
source text,
summary text,
priority int default 0,
read boolean default false,
fetched_at timestamptz default now()
);Learn to build Newji
Module 08: Proactive Agents
Transform your agents from reactive responders to proactive assistants. Learn triggers, scheduling, context awareness, and anticipatory actions.
3 hours9 Lessons
Go to course module