← Hacker News

Show HN: Hackobar – One feed for AI news

Hacker News · rahu_ · May 25, 2026
A developer built Hackobar, a consolidated news feed that aggregates artificial intelligence news from sources including Hacker News, arXiv, GitHub, HuggingFace, Reddit, Twitter, and newsletters using keyword filtering, machine learning classification, semantic deduplication, and engagement-based scoring. The platform presents the top 25 articles in a swipeable interface with Claude-generated summaries and recently added role-based filtering to highlight news impact for builders, researchers, founders, investors, policymakers, and healthcare workers.

Detailed Analysis

Hackobar, a new AI news aggregation platform built by an independent developer, consolidates content from Hacker News, arXiv, GitHub Trending, Hugging Face, multiple AI-focused subreddits, Twitter accounts, tech news outlets, major AI lab blogs, and AI newsletters into a single unified feed. The project arose from the developer's frustration with monitoring five or more sources simultaneously and still feeling behind on AI developments. The platform surfaces 25 top or new items in a swipeable card format, maintains no paywall, and requires no login. Notably, the summarization layer relies on Anthropic's Claude to generate single-line titles and 50-word summaries engineered to be hype-free, with emphasis on architecture, benchmarks, and practical relevance — a deliberate editorial stance that distinguishes it from much AI media coverage.

The technical architecture of Hackobar reflects meaningful engineering decisions that go beyond simple RSS aggregation. The developer implemented a three-layer deduplication pipeline combining URL normalization, Jaccard similarity on word tokens, and semantic matching via Gemma 4 26B, solving a real problem in multi-source aggregation where the same arXiv paper might appear independently through Hugging Face, Hacker News, and three newsletters on the same day. Rather than silently dropping duplicates, the system bumps the cross-platform score of the original item, effectively treating multi-source appearance as a signal of importance. A multi-factor scoring system incorporating engagement metrics, LLM signals, cross-platform frequency, and recency decay — with source-type weighting to prevent social media noise from burying research content — reflects a considered approach to information ranking that most consumer aggregators do not attempt.

The choice to use Claude specifically for summarization is significant in the context of how AI tools are being integrated into developer workflows. The developer used Claude Code to assist in building the application, then deployed Claude's API as a production component for content summarization, illustrating a pattern increasingly common in 2025 and 2026: AI models serving simultaneously as development assistants and as runtime infrastructure. The explicit prompt engineering to suppress hype and focus on technical substance suggests that the developer views Claude as a configurable editorial voice rather than a black-box text generator, and that the model's instruction-following capabilities are being treated as a feature with measurable product impact.

Hackobar's emergence speaks to a broader structural problem in AI information consumption. The pace of developments across research preprints, open-source releases, and industry announcements has accelerated to a point where even professionally attentive engineers and researchers cannot maintain coverage through manual monitoring. This has created demand for curation tools that apply machine intelligence to the meta-problem of tracking machine intelligence. The platform's recently added "lens" feature — which filters the feed by audience type including builders, researchers, founders, investors, policymakers, and healthcare workers — reflects an attempt to address the divergence in what different stakeholders need from AI news, though the developer's own uncertainty about whether this feature is useful or gimmicky signals that personalized AI curation remains an unsolved UX problem.

The technical constraints the developer navigated — particularly building initially within Cloudflare's free-tier limits of 50 subrequests per invocation and a 10-millisecond CPU limit — illustrate how infrastructure economics shape product design. The eventual migration to a paid Cloudflare worker tier was driven specifically by the computational demands of improved deduplication, suggesting that semantic similarity at scale remains expensive even when using inference APIs rather than self-hosted models. The entire stack, combining Next.js, Hono, Supabase, Anthropic's Claude, and Gemma via Cloudflare Workers AI, represents a characteristic 2026 architecture: polyglot AI integration across multiple model providers for different tasks, hosted on edge-native infrastructure, with commodity databases handling persistence.

Read original article →