back to home

duanyytop / agents-radar

Tracks Claude Code, Codex, Gemini CLI, OpenClaw ecosystem, GitHub AI trending, and Anthropic/OpenAI updates. Daily Chinese digests via GitHub Actions.

View on GitHub
513 stars
56 forks
214 issues

AI Architecture Analysis

This repository is indexed by RepoMind. By analyzing duanyytop/agents-radar in our AI interface, you can instantly generate complete architecture diagrams, visualize control flows, and perform automated security audits across the entire codebase.

Our Agentic Context Augmented Generation (Agentic CAG) engine loads full source files into context on-demand, avoiding the fragmentation of traditional RAG systems. Ask questions about the architecture, dependencies, or specific features to see it in action.

Source files are only loaded when you start an analysis to optimize performance.

Embed this Badge

Showcase RepoMind's analysis directly in your repository's README.

[![Analyzed by RepoMind](https://img.shields.io/badge/Analyzed%20by-RepoMind-4F46E5?style=for-the-badge)](https://repomind.in/repo/duanyytop/agents-radar)
Preview:Analyzed by RepoMind

Repository Overview (README excerpt)

Crawler view

agents-radar English | 中文 A GitHub Actions workflow that runs every morning at 08:00 CST. It tracks GitHub activity from AI CLI tools, OpenClaw and its peer projects in the AI agent ecosystem, scrapes official news and research from Anthropic and OpenAI, and monitors the GitHub AI trending repos daily — then publishes bilingual (Chinese + English) daily digests as GitHub Issues and committed Markdown files. Weekly and monthly rollup reports are also generated automatically. Web UI **https://duanyytop.github.io/agents-radar** Browse all historical digests in a clean, dark-themed interface — no login required. Reports are rendered from the Markdown files in this repo via GitHub Pages. RSS Feed **https://duanyytop.github.io/agents-radar/feed.xml** Subscribe in any RSS reader (Feedly, Reeder, NewsBlur, etc.) to receive new digests automatically. The feed includes the latest 30 reports across all report types, updated daily alongside . MCP Server ** ** A hosted Model Context Protocol server that exposes agents-radar data as tools. Any MCP-compatible client (Claude Desktop, OpenClaw, etc.) can query the latest AI ecosystem reports directly. **Available tools:** | Tool | Description | |------|-------------| | | List available dates and report types (last N days) | | | Fetch the most recent report of a given type | | | Fetch a specific report by date and type | | | Keyword search across recent reports | **Claude Desktop setup** — add to : Restart Claude Desktop after saving. You can then ask Claude things like: • *"What's the latest in AI CLI tools?"* → calls • *"Search for Claude Code mentions this week"* → calls • *"Show me the AI trending report for 2026-03-05"* → calls **OpenClaw setup** — run the following command: Or add it manually to : You can then ask OpenClaw things like: • *"What's the latest in AI CLI tools?"* → calls • *"Search for Claude Code mentions this week"* → calls • *"Show me the AI trending report for 2026-03-05"* → calls **Self-hosting** — deploy your own instance from the directory: Telegram Channel **t.me/agents_radar** Subscribe to get daily digest notifications pushed directly to Telegram. Each message links to all reports for that day (ZH and EN variants) plus the Web UI and RSS feed. Tracked sources AI CLI tools (GitHub) | Tool | Repository | |------|-----------| | Claude Code | anthropics/claude-code | | OpenAI Codex | openai/codex | | Gemini CLI | google-gemini/gemini-cli | | GitHub Copilot CLI | github/copilot-cli | | Kimi Code CLI | MoonshotAI/kimi-cli | | OpenCode | anomalyco/opencode | | Qwen Code | QwenLM/qwen-code | Claude Code Skills (GitHub) | Source | Repository | |--------|-----------| | Claude Code Skills | anthropics/skills | PRs and issues are fetched without a date filter and sorted by popularity (comment count), so the report always reflects the most actively discussed skills — not just the newest. OpenClaw + AI agent ecosystem (GitHub) OpenClaw is tracked as the primary reference project, alongside several peer projects in the personal AI assistant / autonomous agent space for cross-ecosystem comparison. | Project | Repository | Stars | |---------|-----------|-------| | OpenClaw | openclaw/openclaw | 240.5k | | NanoBot | HKUDS/nanobot | 26.9k | | Zeroclaw | zeroclaw-labs/zeroclaw | 21.2k | | PicoClaw | sipeed/picoclaw | 21.1k | | NanoClaw | qwibitai/nanoclaw | 16.6k | | NullClaw | nullclaw/nullclaw | 6.1k | | IronClaw | nearai/ironclaw | 3.9k | | LobsterAI | netease-youdao/LobsterAI | 3.0k | | TinyClaw | TinyAGI/tinyclaw | 2.8k | | CoPaw | agentscope-ai/CoPaw | 2.2k | | Moltis | moltis-org/moltis | 2.1k | | ZeptoClaw | qhkm/zeptoclaw | 394 | | EasyClaw | gaoyangz77/easyclaw | 102 | GitHub AI Trending Two data sources are fetched in parallel every day: | Source | Details | |--------|---------| | github.com/trending | Today's trending repos — parsed from HTML; includes today's new star count | | GitHub Search API | Repos active in the last 7 days matching 6 AI topics: , , , , , | The LLM filters out non-AI repos from the trending list, classifies the rest by dimension (AI infrastructure / agents / applications / models / RAG), and extracts trend signals. Hacker News Top AI stories from the last 24 hours, fetched via the Algolia HN Search API. Six queries run in parallel ( , , , , , ), results are deduplicated and ranked by points. The top 30 stories are passed to the LLM for analysis. Official web content (sitemap-based) | Organization | Site | Tracked sections | |---|---|---| | Anthropic | anthropic.com | , , , | | OpenAI | openai.com | research, publication, release, company, engineering, milestone, learn-guides, safety, product | New articles are detected by comparing sitemap timestamps against a persisted state file ( ). On the **first run**, up to 25 recent articles per site are fetched and a comprehensive overview report is generated. On subsequent runs, only new or updated URLs trigger a report; if nothing changed, the web report step is skipped entirely. Features • Fetches issues, pull requests, and releases updated in the last 24 hours across all tracked repos • Tracks trending Claude Code Skills — sorted by community engagement, not recency • Generates a per-tool summary for each CLI repository and a cross-tool comparative analysis • Generates a deep OpenClaw project report plus a cross-ecosystem comparison against 10 peer projects • Scrapes official Anthropic and OpenAI web content via sitemaps; detects new articles incrementally • Monitors GitHub Trending daily + searches 6 AI topic tags; classifies repos by dimension and extracts trend signals • Fetches top-30 AI stories from Hacker News (last 24h, ranked by points); generates community sentiment report • Publishes GitHub Issues for each report type; commits Markdown files to • Runs on a daily schedule via GitHub Actions; supports manual triggering • All tracked repositories are configurable via — no code changes needed Setup • Fork this repositor…