每天自动聚合全网 AI 资讯 · AI 解读 · 个性化 · 开放 API
Auto-aggregate AI news daily · AI commentary · Personalization · Open API
零服务器 · 零数据库 · Fork 即用 · 内容换源变成任何领域的资讯站
"AI 圈一天发太多东西,等我反应过来已经过气了。"
一个零服务器、零数据库的 AI 行业资讯聚合站。GitHub Actions 每天自动从 25+ 公开来源抓取最新资讯,AI 生成一句话点评,静态部署到 GitHub Pages——访客不需要登录、不需要 API Key、没有任何成本。
| 能力 | 说明 | |
|---|---|---|
| 📰 | 每日自动更新 | 25+ 源并行抓取,智能去重分类,每天自动重建部署 |
| 🤖 | AI 解读 | 每条资讯一句话 AI 点评 + 每日必读精选 + 周报 AI 总结 |
| 📊 | 6 种视角 | 首页瀑布流 / 日报 / 周报 / 趋势图 / 话题聚合 / 时间线 |
| 📈 | 交互式趋势 | 纯 SVG 折线图,hover 看数值,分类 / 话题筛选面板 |
| ⭐ | 个性化 | 关注 / 屏蔽来源 · 收藏 · 已读 · 导出,全存浏览器本地 |
| 🔍 | 全文搜索 | MiniSearch 模糊搜索 + ⌘K 命令面板 + 搜索历史 |
| 🌙 | 暗色模式 | 跟随系统偏好自动切换 |
| 🌐 | 中英文 | 全站 80+ 条 UI 文案一键切换 |
| 📱 | PWA | 移动端适配 + 可安装到手机主屏 |
| 🔌 | 开放 API | 静态 JSON 端点 + SKILL.md,Agent 可用自然语言获取数据 |
| 🔄 | 一键换源 | 改一个数组 → 金融 / 医疗 / Web3 / 芯片资讯站 |
Fork 部署(5 分钟,零代码)
- 点右上角 Fork
- Settings → Pages → Source 选 GitHub Actions
- (可选) 添加 Secret
DEEPSEEK_API_KEY启用 AI 点评 - Actions 里跑一次 Build & Deploy
- 访问
https://<你的用户名>.github.io/AI-Search/
本地开发
git clone https://github.com/Jackychen-12/AI-Search.git
cd AI-Search && npm install
npm run crawl && npm run devcurl -fsSL https://aisearches.cc/install.sh | bash然后问你的 Agent:"今天 AI 圈有什么新东西"、"最近 OpenAI 有什么发布"、"看下 AI 论文"。
也可以直接调 JSON API(无需 Key):
curl .../api/v1/daily/latest.json # 最新日报
curl .../api/v1/items.json # 全量资讯
curl .../api/v1/category/ai-models.json # 按分类编辑 scripts/sources/rss.ts 替换 FEEDS 数组 + lib/categories.ts 换分类 → npm run crawl && npm run dev。5 分钟变成金融 / 医疗 / 芯片资讯站。
| 类别 | 来源 |
|---|---|
| 模型实验室 | OpenAI · Google AI · DeepMind · HuggingFace · NVIDIA |
| 学术深度 | arXiv · Lil'Log · Ahead of AI · BAIR · Microsoft Research |
| 科技媒体 | The Verge · TechCrunch · VentureBeat · MIT Tech Review |
| 社区 | Hacker News · GitHub Trending · Simon Willison |
| 中文 | 量子位 · 36氪 · IT之家 · 少数派 · InfoQ |
"AI moves too fast. By the time I catch up, it's already old news."
A zero-server, zero-database AI industry news aggregator. GitHub Actions automatically crawls 25+ public sources daily, generates AI commentary, and deploys to GitHub Pages — no login, no API key, zero cost for visitors.
| Feature | Description | |
|---|---|---|
| 📰 | Daily Auto-Update | 25+ sources crawled in parallel, smart dedup & classification |
| 🤖 | AI Commentary | One-line AI review per article + daily picks + weekly AI summary |
| 📊 | 6 Views | Feed / Daily / Weekly / Trends / Topics / Timeline |
| 📈 | Interactive Trends | Pure SVG charts, hover values, category & topic filtering |
| ⭐ | Personalization | Follow/block sources · bookmarks · read status · export, all in localStorage |
| 🔍 | Full-Text Search | MiniSearch fuzzy search + ⌘K command palette |
| 🌙 | Dark Mode | Auto-follows system preference |
| 🌐 | i18n | Chinese / English toggle for all 80+ UI strings |
| 📱 | PWA | Mobile-responsive + installable to home screen |
| 🔌 | Open API | Static JSON endpoints + SKILL.md for Agent integration |
| 🔄 | Swap Sources | Change one array → finance / healthcare / Web3 / chip news site |
Fork & Deploy (5 min, zero code)
- Click Fork
- Settings → Pages → Source → GitHub Actions
- (Optional) Add Secret
DEEPSEEK_API_KEYfor AI features - Run Build & Deploy in Actions
- Visit
https://<your-username>.github.io/AI-Search/
Local Development
git clone https://github.com/Jackychen-12/AI-Search.git
cd AI-Search && npm install
npm run crawl && npm run devcurl -fsSL https://aisearches.cc/install.sh | bashThen ask your Agent: "What's new in AI today", "Latest OpenAI releases", "Show me AI papers".
Edit scripts/sources/rss.ts to replace FEEDS + lib/categories.ts for categories → npm run crawl && npm run dev. 5 minutes to a finance / healthcare / chip news site.
| Directory | Purpose |
|---|---|
app/ |
Page routes — home, daily, weekly, trends, topics, timeline |
components/ |
30+ React components |
lib/ |
Core logic — types, filtering, i18n, trends, weekly reports |
scripts/ |
Build scripts — crawl orchestration, source adapters, API generation |
data/ |
Data snapshots — items + meta + digest + monthly archives |
tests/ |
Unit tests — Vitest |
public/ |
Static assets — OG image, SW, SKILL.md, install script |
| Variable | Purpose |
|---|---|
DEEPSEEK_API_KEY |
AI commentary (optional — everything else works without it) |
NEXT_PUBLIC_ASK_AI_URL |
AI Q&A proxy (see worker/) |