Open-source tool for AI-curated Reddit feeds using Cloudflare, Supabase, and Vercel

✍️ OpenClawRadar📅 Published: April 14, 2026🔗 Source
Open-source tool for AI-curated Reddit feeds using Cloudflare, Supabase, and Vercel
Ad

A developer has open-sourced a self-hosted tool that creates AI-curated Reddit feeds, specifically designed to filter out low-quality content about AI-assisted development and vibecoding. The tool removes posts like "I made $1M with AI in 2 hours," low-effort screenshots, and repeated beginner questions.

How it works

Every 15 minutes, a Cloudflare Worker triggers the pipeline. It fetches Reddit JSON through a Cloudflare proxy because Reddit often blocks Vercel/AWS IPs. A pre-filter removes low-signal posts before any AI processing. Remaining posts receive engagement scoring with community-size normalization, comment boosts, and controversy penalties. Top posts can optionally go through an LLM for quality rating, categorization, and one-line summaries. A diversity pass prevents one subreddit from dominating the feed.

Technical stack

  • Supabase for storage
  • Cloudflare Workers for cron jobs and Reddit proxy
  • Vercel for the frontend
  • AI scoring is optional and costs about $1-2/month with Claude Haiku
Ad

Features

The tool provides a dark-themed feed with AI summaries and category badges, daily archives, RSS, weekly digest via Resend, anonymous upvotes, and a feedback form.

Setup process

Setup involves cloning the repository, editing one config file, running one SQL migration, deploying two Workers, then deploying to Vercel.

Configuration example

const config = {
  name: "My ML Feed",
  subreddits: {
    core: [
      { name: "MachineLearning", minScore: 20, communitySize: 300_000 },
      { name: "LocalLLaMA", minScore: 15, communitySize: 300_000 },
    ],
  },
  keywords: ["LLM", "transformer model"],
  communityContext: `Value: papers with code, benchmarks, novel architectures.
  Penalize: hype, speculation, product launches without technical depth.`,
};

The tool was built with Claude Code and is available on GitHub at github.com/solzange/reddit-signal.

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

vllm-mlx fork adds tool calling and prompt cache for local AI coding agents
Tools

vllm-mlx fork adds tool calling and prompt cache for local AI coding agents

A developer has modified vllm-mlx to fix tool calling issues and add prompt caching, reducing TTFT from 28s to 0.3s for OpenClaw on Apple Silicon. The fork supports Qwen3-Coder-Next at 65 tok/s on M3 Ultra with working function calling.

OpenClawRadar
Qure: Desktop App for Generating E2E Tests from Recorded Browser Flows
Tools

Qure: Desktop App for Generating E2E Tests from Recorded Browser Flows

Qure is a desktop application from JetBrains (currently in closed beta) that generates end-to-end web test code from recordings made in its built-in browser. Instead of describing test flows in text for AI agents, developers record their manual QA scenarios by interacting with their product, and the AI produces working test code that matches their existing codebase.

OpenClawRadar
Revdiff: Terminal Diff Viewer with Inline Annotations for AI Agents
Tools

Revdiff: Terminal Diff Viewer with Inline Annotations for AI Agents

Revdiff is a TUI diff reviewer built specifically for reviewing AI-generated code changes without leaving terminal sessions. It outputs structured annotations to stdout that can be piped directly back to AI agents like Claude Code, creating a continuous review loop.

OpenClawRadar
NerfGuard: A Classifier That Routes Coding Requests to Cheaper Models, Cutting Spend 3x
Tools

NerfGuard: A Classifier That Routes Coding Requests to Cheaper Models, Cutting Spend 3x

NerfGuard uses a fast classifier to route coding agent requests to the least expensive model and reasoning depth needed, yielding 3x usage for the same spend. Includes token optimizations.

OpenClawRadar