惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog
Microsoft Security Blog
Microsoft Security Blog
Jina AI
Jina AI
博客园 - 叶小钗
J
Java Code Geeks
博客园 - 聂微东
博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
美团技术团队
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
罗磊的独立博客
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
小众软件
小众软件

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built an AI that filters what actually needs your atten...
yongrean · 2026-05-18 · via DEV Community

I used to start every morning the same way: open Gmail, feel immediately overwhelmed, spend 40 minutes triaging emails that turned out not to matter — and then miss the one thing that actually did.

So I built Jigeum — an AI Chief of Staff that reads your inbox, scores every signal by urgency, and surfaces only what needs you. This is the architecture, the honest failures, and what actually changed my routine.


The first version completely failed

My original product was called EVE. The pitch: "AI employee — connect your tools, EVE handles the rest."

It was too broad. Every demo, people nodded politely. Nobody knew what to do with it. I shipped features — Slack integration, task management, autonomous agent loops — but the core value proposition was muddy. Four months in, I was the only person using it daily.

Every morning I'd open it and quietly ask myself: why am I actually using this?

That question cracked it open.


The real problem: attention is the bottleneck

The problem isn't having too many emails. It's that every notification competes for the same finite resource: your decision-making capacity.

A GDPR newsletter. A contract waiting for signature. A customer reporting a critical bug. A LinkedIn request. Your inbox treats them identically.

I renamed the product Jigeum (지금 — Korean for right now) and rebuilt around a single question: what needs my attention right now, and what doesn't?


Architecture: the Attention OS

The core model is a 5-tier escalation system. Every incoming signal — email, calendar event, extracted commitment — gets classified before it ever reaches me:

SILENT    → don't surface, don't notify
QUEUE     → add to review list, no interrupt
PUSH      → mobile push notification
CALL      → urgent interrupt (not yet built)
AUTO      → handle automatically without asking

Enter fullscreen mode Exit fullscreen mode

I call this the Attention Firewall. Before anything reaches my conscious attention, it passes through classification.

Trust Score

Each sender gets a Trust Score (0–100). Higher score means more likely to escalate. It's derived from:

  • Historical reply frequency
  • Whether I've responded before, and how fast
  • Explicit feedback ("always notify me from this person")
  • Domain-level signals (my own domain scores higher than cold outreach)
interface TrustScore {
  userId: string;
  contactEmail: string;
  score: number;               // 0–100
  interactionCount: number;
  avgResponseMinutes: number | null;
  lastInteractionAt: Date | null;
}

Enter fullscreen mode Exit fullscreen mode

A newsletter I've never replied to scores ~10. My co-founder scores 95. The escalation tier is calculated from trust score combined with content analysis of the email itself.

Voice Profile

The AI needs to know how I communicate, not just what to do. Voice Profile stores the patterns extracted from my sent mail:

interface VoiceProfile {
  userId: string;
  tone: string;                // "direct", "warm", "formal"
  signatureStyle: string;
  preferredLength: "short" | "medium" | "long";
  phrases: string[];           // things I actually say
  avoidPhrases: string[];      // things I never say
}

Enter fullscreen mode Exit fullscreen mode

When drafting a reply suggestion, the AI pulls this profile. The goal is that a suggested reply reads like me — not like a generic AI assistant.

Commitment Ledger

This is the feature that made me realize the product had real value.

Every email where I wrote "I'll send this by Friday" or "Let me get back to you next week" — those are commitments. They disappear into threads. I forget them. The other person doesn't.

The commitment extractor runs on every processed email and populates a ledger:

interface Commitment {
  id: string;
  userId: string;
  title: string;
  kind: "DELIVERABLE" | "MEETING" | "FOLLOW_UP" | "DECISION";
  owner: "USER" | "COUNTERPART";
  dueAt: Date | null;
  dueText: string | null;      // "by Friday", "next week"
  confidence: number;          // 0–1
  status: "OPEN" | "DONE" | "OVERDUE";
}

Enter fullscreen mode Exit fullscreen mode

The confidence field matters a lot. "Let's sync sometime" → confidence 0.3, stays quiet. "Please send the NDA by Tuesday EOD" → confidence 0.9, surfaced immediately in the Command Center.


The Command Center

The UI is a single page. This replaced my inbox as the first screen I open each morning.

Layout (left → right on desktop):

  • Morning Briefing — AI summary of what happened overnight and what needs attention today, full width at top
  • Approval Queue — actions Jigeum wants to take but needs my sign-off first
  • Commitment Ledger — things I promised, things others promised me
  • Reply Needed — emails where someone asked a direct question

The Reply Needed surface was the hardest to get right. Naive approach (detect ? in email body) had terrible precision — questions in automated receipts, rhetorical questions, quoted threads all triggered false positives.

What actually works: question detection + sender trust weighting + thread position analysis (a question in the first email of a thread means something different than the same question in reply #5).

// GET /api/inbox/reply-needed
const rows = await prisma.emailMessage.findMany({
  where: { userId, needsReply: true },
  orderBy: [
    { needsReplyConfidence: "desc" },
    { receivedAt: "desc" }
  ],
  take: 8,
  select: {
    id: true,
    subject: true,
    from: true,
    snippet: true,
    needsReplyReason: true,
    needsReplyConfidence: true,
    receivedAt: true,
  },
});

Enter fullscreen mode Exit fullscreen mode


Tech stack

Layer Choice
API Fastify + TypeScript + Prisma
Database PostgreSQL (Supabase)
Web Next.js 15 App Router
AI OpenRouter — Claude Sonnet for analysis, Haiku for classification
Email Gmail API (OAuth2, incremental sync via historyId)
Push Web Push API + service workers
Deploy Render (API) + Vercel (web)

One thing I'd do differently: Gmail sync architecture. I built polling with historyId-based incremental sync when I should have used Gmail Push Notifications from day one. The polling works but introduces ~30s latency on new emails. That latency matters when something urgent arrives.


What failed (honestly)

Notification flood. The early version pushed a notification for every signal classified as PUSH tier. Within 24 hours I had disabled push notifications on my own app. Had to rebuild with rate limiting — same-sender notifications within 15 minutes now collapse into one.

Over-trusting AUTO. The autonomous tier where Jigeum acts without asking me — I thought I wanted this. Turns out I don't trust it yet. I've pulled AUTO back to only unsubscribes and read-receipts. Anything that involves sending a message or making a decision goes through the Approval Queue.

The rebrand was a distraction. Spent a full week renaming EVE → Jigeum across the codebase, updating marketing copy, redoing the landing page. The code ran identically after. Should have shipped instead.

Mobile doesn't exist yet. It's web-only. For something meant to filter morning attention, the fact that you have to open a browser tab is a real friction point. Working on it.


Four weeks of dogfooding — what actually changed

  • I check the Commitment Ledger before every morning standup. It's caught 3 things I would have genuinely dropped.
  • Reply Needed reduced my inbox-zero anxiety. If something actually needs me, it surfaces there. If it's not there, I'm not missing anything.
  • Morning Briefing saves roughly 20 minutes of triage per day.
  • The AI still occasionally misclassifies cold outreach as high-priority. Trust Score calibration is ongoing.

Try it

Jigeum is in private beta at hire-eve-web.vercel.app. Connect Gmail + Calendar, initial sync takes about 30 seconds.

If you're a founder, solo operator, or anyone who feels like their attention is being managed by their inbox rather than by themselves — I'd genuinely value the feedback. Especially where it gets the classification wrong.

Happy to answer architecture questions in the comments.


Built solo. Stack: Next.js, Fastify, PostgreSQL, Gmail API, and a lot of OpenRouter credits.