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

Clawback: Hooks-based implementation of leaked Claude verification loops
Tools

Clawback: Hooks-based implementation of leaked Claude verification loops

Clawback is a GitHub project that reimplements the verification loops from the Claude source map leak as mechanical hooks instead of prompts. It includes stop hooks, PreToolUse, PostToolUse, and PostCompact hooks that can't be skipped by the model under context pressure.

OpenClawRadar
Benchmark Results: 331 GGUF Models Tested on Mac Mini M4 16GB
Tools

Benchmark Results: 331 GGUF Models Tested on Mac Mini M4 16GB

A benchmark of 331 GGUF models on a Mac Mini M4 with 16GB RAM reveals only 11 Pareto-optimal models, all Mixture-of-Experts architectures. Mixture-of-Experts models dominate performance with median 20.0 tokens/second versus 4.4 for dense models.

OpenClawRadar
Developer Builds Power Automate MCP Server with 108 Tools, Cross-Platform Support
Tools

Developer Builds Power Automate MCP Server with 108 Tools, Cross-Platform Support

A developer built a Power Automate MCP server that expanded from 12 to 108 tools, covering Dataverse CRUD via OData, SharePoint management via Graph, Power Apps versioning, environment administration, and cross-platform support for Windows, macOS, and Linux.

OpenClawRadar
Sentinel: Self-Hosted Agent Platform for Claude Code Subscribers
Tools

Sentinel: Self-Hosted Agent Platform for Claude Code Subscribers

Sentinel is a free, open-source agent platform that runs directly on your existing Claude Code OAuth token without API overhead. It provides a clean operator UI with real-time browser automation via built-in VNC and includes features like Git gating, session trace logs, and structured hierarchical memory.

OpenClawRadar