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

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
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
👀 See Also

Applying Claude Code's Architecture to Local 9B Models: Key Findings and Optimizations
A developer extracted architectural patterns from Claude Code's leaked source code and applied 10 optimizations to qwen3.5:9b running locally on an RTX 5070 Ti. The key discovery was that qwen3.5:9b has native structured tool_calls, and the biggest limitation for 9B models is self-discipline in knowing when to stop exploring and start producing output.

One-Command Docker Setup for OpenClaw with Full-Disk Encryption and Monitoring
A Docker setup for OpenClaw that provides full-disk encryption guides, Tini as PID 1, built-in monitoring tools, and data stored as plain files on the host. Deployment requires just two commands: git clone and ./shell.

RelayPlane Open Source Proxy Shows 73% Cost Reduction with Claude Model Routing
RelayPlane, an open source npm-native proxy for the Anthropic API, demonstrated 73.4% cost savings in benchmarks by routing requests to appropriate Claude models based on complexity. The tool reduced cost per 10 requests from $0.0323 to $0.0086 while improving p50 latency from 1.55s to 0.78s.

Crit: Local-first, single-binary CLI for reviewing agent plans and diffs
Crit is a single-binary CLI that opens files or diffs in a browser with a GitHub-inspired UI, allowing multi-round feedback loops with AI coding agents — no account needed.