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

推荐订阅源

U
Unit 42
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
有赞技术团队
有赞技术团队
B
Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
Martin Fowler
Martin Fowler
H
Hackread – Cybersecurity News, Data Breaches, AI and More
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
博客园 - Franky
小众软件
小众软件

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
How I Built an AI Morning Briefing That Runs Itself Every...
Esteban · 2026-05-11 · via DEV Community

The Problem

I'm a solopreneur. My work depends on knowing what's happening in tech: new frameworks, Product Hunt launches, funding rounds, AI tools. But I was spending 45 minutes every morning jumping between Hacker News, Reddit, Product Hunt, Substack, and Twitter. By the end of the day, I'd consumed a lot and acted on little.

I needed something that filtered the noise and told me: "this is what you need to know today, and this is why it matters for your business."

Not a link aggregator. An editor.

The Architecture (v5.0)

The system is called Tavily Intel Pulse. It runs as a cron job at 7 AM (Colombia time) and delivers a structured briefing in 5 sections:

  1. In 2 minutes — executive summary
  2. What really matters — top 3 news items with 3-part LLM analysis: The Fact / Why It Matters / Opportunity for You
  3. The ecosystem moves — 5 additional signals with quick impact
  4. An idea to steal — cross-signal insight connecting 2-3 signals
  5. Question of the day — provocation to reflect on your own work

Resilient 4-Phase Pipeline

PHASE 1: COLLECTION    → tmp/f1_items_YYYYMMDD.json
PHASE 2: LLM ANALYSIS  → tmp/f2_enriched_YYYYMMDD.json
PHASE 3: NOTION DELIVERY → tmp/f3_notion_id_YYYYMMDD.txt
PHASE 4: NOTIFICATION  → tmp/f4_telegram_sent_YYYYMMDD.txt

Enter fullscreen mode Exit fullscreen mode

Key: Each phase saves its output before moving to the next. If the pipeline fails, the next run resumes from the failed phase, not from zero.

Phase 1 — Collection

Uses Tavily API (1,000 credits/month free tier) to search 20 daily sources:

  • Product Hunt launches
  • Hacker News front page
  • Reddit (r/AI_Agents, r/webdev, r/SaaS)
  • GitHub trending
  • Tech news (TechCrunch, The Verge)
  • Funding rounds (Crunchbase signals)

Phase 2 — LLM Analysis with Scoring

Each item goes through a scoring engine that extracts real metrics from content:

+45  MRR ≥ $5K/mo        +35  Upvotes ≥ 100        +30  Stars ≥ 1000
+25  Funding ≥ $10M       +20  Users ≥ 10K          +25  Mentions SaaS
+20  Mentions agent/MCP   +15  Mentions solopreneur  -12  Generic content

Enter fullscreen mode Exit fullscreen mode

Caps prevent overflow: max 100 points. Threshold: 20/100.

Top 3 items get analyzed with GPT-4o-mini (cheap, fast, enough for editorial analysis) with Tavily deep extraction extract_depth="advanced".

Phase 3 — Notion Delivery

The briefing gets saved to a Notion database with:

  • Structured headline
  • Agent summary
  • Source, date, relevance, expected impact
  • Child blocks with the 5 formatted sections

Phase 4 — Telegram Notification

Short Markdown message:

📰 *Morning Briefing: YYYY-MM-DD*

*{headline}*

❓ {question_of_the_day}

→ [View in Notion](https://notion.so/{page_id})

Enter fullscreen mode Exit fullscreen mode

What I Learned Building It

1. Phase architecture is non-negotiable

In v4.0, if the LLM failed, everything crashed. In v5.0, each phase leaves a temp file. If Phase 2 fails, Phase 1 is still saved. The next run resumes from Phase 2. This saved me when Tavily rotated its API key at 6 AM.

2. Scoring must be transparent

It's not "magic AI that decides." It's a point system with clear rules I can adjust. If I want MRR to weigh more, I change a number. No model retraining.

3. Editorial format matters more than data volume

An aggregator gives you 50 links. An editor tells you: "This agent framework has 4,000 upvotes and solves exactly the problem you have with your Notion pipeline." The difference is analysis, not collection.

4. Cost is ridiculously low

  • Tavily: free tier (1,000 credits/month)
  • OpenAI GPT-4o-mini: ~$0.15 per briefing
  • Notion API: free
  • Telegram Bot: free

Total: less than $5/month for a daily personalized briefing.

The Skill That Orchestrates It

All of this is documented as a Hermes Agent skill (tavily-intel-pulse). The skill includes:

  • Full Python script (morning_briefing.py)
  • Cron job configuration
  • Notion database schema
  • Scoring system with caps
  • Error handling per phase
  • API key rotation

File structure:

~/.hermes/scripts/
├── morning_briefing.py          # Main script v5.0
├── data/
│   └── dedup_history.json        # URL hash seen (3-day window)
└── tmp/
    ├── f1_items_YYYYMMDD.json
    ├── f2_enriched_YYYYMMDD.json
    ├── f3_notion_id_YYYYMMDD.txt
    └── f4_telegram_sent_YYYYMMDD.txt

Enter fullscreen mode Exit fullscreen mode

Why This Matters for Solopreneurs

As independent builders, we don't have market intelligence teams. But we make product, pricing, and stack decisions every day. We need context, not just information.

This system gives me context in 2 minutes. It tells me which Product Hunt launch could be a competitor. It flags when an agent framework gains traction. It asks me things like: "Could your current product benefit from an MCP server?"

It doesn't replace thinking. It accelerates it.

Question of the Day

How much time do you spend every morning consuming information you don't act on?