跪拜 Guibai
← All articles
Agent · AI Programming

Build an AI Hot Radar in Two Hours with Codex and RedFox Data Skills

By 沉默王二 ·
Read original on juejin.cn ↗ Google Translate ↗ Alt translation
Why it matters

This project shows that the gap between having an idea and shipping a production-grade AI-powered data pipeline can be measured in hours, not weeks. For Western developers, it signals that the Chinese ecosystem now offers pluggable 'Skills' for social media data that rival or exceed what's available from Western platforms — and that Codex-style agentic coding is becoming the default way to build, not just prototype.

Summary

A new project called AI Hot Radar (aihot.paicoding.com) demonstrates how quickly a developer can build a cross-platform content monitoring tool using Codex and the RedFox Data API platform. Every day at midnight, a GitHub Actions workflow runs a Python script that loads pre-built Skills from RedFox Data, searches for AI-related trending content across Douyin, Xiaohongshu, and WeChat Official Accounts, then sends the collected data to an LLM (defaulting to DeepSeek v4-pro) for structured analysis.

The resulting dashboard shows a daily summary, Agent-curated top picks with opportunity scores (0-100), and raw data panels for each platform. The scoring system is hybrid: the script calculates a base score from engagement metrics before the LLM fine-tunes it. The entire pipeline — from data collection to static site generation to deployment — took roughly two hours to set up, including debugging.

RedFox Data itself offers over 40 ready-to-use Skills and a set of REST APIs for multiple Chinese social platforms. These Skills can be downloaded and run in local Agent tools like Codex, Claude Code, or PaiCLI. The project's architecture is deliberately simple: no database, pure static HTML/JS frontend, and GitHub Actions for automation.

Key takeaways
AI Hot Radar scrapes Douyin, Xiaohongshu, and WeChat Official Accounts daily for AI-related trending content.
The entire project, from idea to deployment, took about two hours using Codex and RedFox Data Skills.
RedFox Data provides over 40 pre-built Skills and REST APIs for multiple Chinese social media platforms.
The pipeline runs automatically via GitHub Actions at midnight every day.
Data is collected in parallel from three platforms, then sent to an LLM (default DeepSeek v4-pro) for structured analysis.
Opportunity scores are calculated using a hybrid approach: a base score from engagement metrics, then fine-tuned by the LLM.
The frontend is a pure static HTML/CSS/JS single-page application with no framework or database.
Skills can be downloaded and used in Codex, Claude Code, or PaiCLI locally.
Cost is minimal: 15-20 API calls per day, 2000-3000 LLM tokens per analysis, and shared server hosting.
The project includes fault tolerance: platform failures are isolated, backup Skills exist, and API calls have rate-limit delays.
Our take

The two-hour build time is the real story here — it suggests that agentic coding with pre-built Skills is collapsing the time from concept to production for data-intensive tools.

The hybrid scoring system (script-calculated base + LLM fine-tuning) is a pragmatic compromise that prevents LLM hallucination while still leveraging its judgment.

RedFox Data's Skill marketplace model is a notable innovation: it turns social media APIs into composable, agent-ready modules that any developer can plug into their workflow.

The choice of a static site with no database is a deliberate cost and complexity optimization — it works because the data is ephemeral and the update cycle is daily.

The project's resume-ready framing (including a dedicated section on how to write it up) reveals a cultural pattern: Chinese developers often build side projects with explicit career signaling in mind.

Using GitHub Actions as both the scheduler and deployment pipeline is a clever way to avoid managing a separate CI/CD system for a small project.

Concepts & terms
Codex
An AI-powered coding assistant by OpenAI that can generate, debug, and deploy code based on natural language instructions. In this context, it was used to rapidly build the entire AI Hot Radar project.
RedFox Data Skills
Pre-built, downloadable modules that encapsulate data collection logic for specific social media platforms. Each Skill includes a decision manual (SKILL.md), Python scripts, and reference materials, and can be run in local Agent tools like Codex or Claude Code.
Opportunity Score
A 0-100 rating assigned to each piece of content by the AI Hot Radar. It is calculated by first deriving a base score from engagement metrics (likes, comments, shares), then fine-tuned by an LLM to account for content quality and topical relevance.
GitHub Actions
A CI/CD and automation service integrated into GitHub. In this project, it is used to trigger the daily data collection and analysis pipeline at midnight, and to deploy the generated static site to a server.
Static Site Generation
A web development approach where all pages are pre-built as static HTML files during a build step, rather than being generated dynamically on each request. This project uses it to serve the daily report without needing a database or server-side runtime.
Source: juejin.cn ↗ Google Translate ↗ Backup ↗