Cron Job: 每日创意推送
Job ID: d3bd77eb0469
Run Time: 2026-07-29 06:04:59
Schedule: 0 6 * * *
Prompt
[IMPORTANT: The user has invoked the "idea-miner" skill, indicating they want you to follow its instructions. The full skill content is loaded below.]
name: idea-miner
description: Mine daily creative ideas & startup signals from HN/GitHub.
version: 1.0.0
author: Hermes Agent
license: MIT
metadata:
hermes:
tags: [ideas, trends, research, startup, daily-briefing]
related_skills: [youtube-content, blogwatcher]
🧠 Idea Miner — Daily Creative Intelligence
Overview
Mines today's creative ideas, inspiration hotspots, and startup signals from public sources. Produces a structured Markdown report with demand signals, trending projects, and actionable insights.
The report is saved to /opt/data/hermes/idea-miner/idea-miner_{YYYYMMDD}.md and delivered to the configured destination (Telegram, etc.).
When to Use
- Cron job for daily idea-mining runs (referenced by
trender-idea-minerand每日创意推送) - User asks: "what are today's hot ideas", "find me startup opportunities", "trending projects analysis"
- Any session that needs to synthesize multi-source trend intelligence
Data Sources
✅ Available & Tested
| Source | API Endpoint | Notes |
|---|---|---|
| HN Algolia (front page) | https://hn.algolia.com/api/v1/search?tags=front_page&hitsPerPage=20 |
Returns top stories with points |
| HN Algolia (Ask HN) | https://hn.algolia.com/api/v1/search?tags=ask_hn&hitsPerPage=15 |
Good for demand/need signals |
| HN Algolia (Show HN recent) | https://hn.algolia.com/api/v1/search_by_date?tags=show_hn&numericFilters=points%3E10&hitsPerPage=12 |
URL-encode > as %3E |
| HN Firebase (item detail) | https://hacker-news.firebaseio.com/v0/item/{ID}.json |
Individual story metadata |
| GitHub Search (new repos) | https://api.github.com/search/repositories?q=stars:%3E100+created:%3E{YYYY-MM-DD}&sort=stars&order=desc&per_page=10 |
Header: Accept: application/vnd.github.v3+json, User-Agent: HermesAgent/1.0 |
❌ Currently Unavailable
| Source | Issue |
|---|---|
Reddit JSON API (old.reddit.com, www.reddit.com) |
Blocked by Reddit (403 "whoa there, pardner") — needs OAuth credentials |
| Reddit pullpush.io (public archive) | Returns empty results from this IP |
| Google Trends RSS | Endpoint trends.google.com/trendingsearches/daily/rss?geo=US returns 404 |
| Google Trends API | trends.google.com/trends/api/dailytrends returns 404 |
| X/Twitter via xurl | xurl CLI not installed on this VPS |
Data Acquisition Workflow
- Use
curl -s -o /tmp/filename.json -w '%{http_code}'to save to temp file first (avoids pipe-to-interpreter security blocks in cron mode) - Parse with
python3 -c "import json; data = json.load(open('/tmp/filename.json')); ..." - Saved temp files are disposable — clean up or leave in /tmp
Report Format
The report uses Chinese (用户偏好) with the following sections:
# 🧠 Idea Miner — 每日创意情报 (YYYY-MM-DD)
> 数据来源:[list of sources used]
## 📢 需求现场 — 高意向需求 & 讨论
Top demand signals from Ask HN, discussions, needs
## 📈 趋势项目 — GitHub 热门新仓库
Table: project | ⭐ | description | direction
Followed by trend interpretation block (code fence with arrows)
## 🔬 Show HN 精选 — 本周最新项目
Table: project | points | description
## 🌟 今日创业灵感精选
### 高潜力方向
### 已验证信号
## 📊 数据快照
Key metrics summary table
Report Generation Steps
- Fetch HN front page — identifies the overall tech zeitgeist for the day
- Fetch HN Ask HN — captures user needs, pain points, and demand signals
- Fetch HN Show HN (recent, points>10) — captures new projects people are building
- Fetch GitHub trending repos (last 7 days) — identifies what developers are excited about
- Fetch additional sources if available (Reddit, Twitter, etc.)
- Synthesize findings into the structured report
- Save to file at
/opt/data/hermes/idea-miner/idea-miner_{YYYYMMDD}.md - Output the report as final response — the cron delivery system automatically delivers it
File Save Convention
- Directory:
/opt/data/hermes/idea-miner/ - Filename:
idea-miner_{YYYYMMDD}.md(e.g.,idea-miner_20260727.md) - If the directory doesn't exist, create it
Common Pitfalls
- HN Algolia URL encoding: The
numericFiltersparameter with>must use%3Enot raw>. E.g.numericFilters=points%3E10 - Reddit API blocked: Don't retry Reddit JSON API with this IP — it's consistently 403. Only retry if OAuth creds are configured.
- Pipe-to-interpreter security blocks: In cron mode,
curl | python3triggers security warnings. Save output to file first with-o /tmp/file, then parse withpython3 -creading from file. - GitHub API rate limits: Without authentication, GitHub API is limited to 60 req/hr. For 10 repos + description parsing per run this is fine, but batch requests if expanding.
- Show HN search prefers
search_by_date: The/searchendpoint returns all-time top, not recent. Use/search_by_datefor recent Show HN posts. - No xurl installed: X/Twitter mining won't work unless xurl CLI is installed and OAuth'd.
- Google Trends unavailable via simple curl: None of the documented public endpoints work (404). Skip silently.
Verification Checklist
- [ ] HN front page fetched and parsed correctly
- [ ] Ask HN fetched for demand signals
- [ ] Show HN (recent) fetched for new projects
- [ ] GitHub trending repos fetched
- [ ] Report is structured with all tables and sections
- [ ] File saved to correct path with date-stamped filename
- [ ] Report output as final message (cron delivery takes over)
Related Scripts
The legacy shell script at /root/.hermes/scripts/idea-miner_daily.sh references a Python script at ~/idea-miner/idea_miner.py that no longer exists. The cron jobs now run Hermes agent directly with the prompt, bypassing the shell script. If the shell script is ever re-enabled, it needs to be updated.
The user has provided the following instruction alongside the skill invocation: [IMPORTANT: You are running as a scheduled cron job. DELIVERY: Your final response will be automatically delivered to the user — do NOT use send_message or try to deliver the output yourself. Just produce your report/output as your final response and the system handles the rest. SILENT: If there is genuinely nothing new to report, respond with exactly "[SILENT]" (nothing else) to suppress delivery. Never combine [SILENT] with content — either report your findings normally, or say [SILENT] and nothing more.]
生成每日创意情报简报,发送到Telegram。
数据来源
- Reddit 需求 (r/SideProject, r/somebodymakethis)
- X/Twitter "I wish there was" 搜索
- Hacker News Ask HN
- Indie Hackers 已验证项目
- GitHub Trending
- Google Trends 搜索热词
报告格式
使用 Markdown 格式,包含以下章节:
- 📢 需求现场 (高意向需求: I wish/Need/Looking)
- 💰 已验证方向 (有 MRR 数据的成功项目)
- 📈 趋势项目 (GitHub 热门项目)
- 🌐 Google 搜索热词
输出要求
- 简洁、实用、有洞察力
- 每条数据包含来源链接
- 总长度控制在 Telegram 可发送范围内
- 使用中文撰写
目标
聚焦真实用户需求,发现创业机会,提供可执行的创意洞察。
文件保存
将生成的完整报告同时保存到本地文件:/opt/data/hermes/daily-idea-briefing/briefing_{YYYYMMDD}.md
Response
🧠 每日创意情报简报 — 2026-07-29
📡 数据来源:HN Front Page、Ask HN、Show HN、GitHub Trending
⚠️ Reddit / X-Twitter / Google Trends 因 API 限制暂不可用
📢 需求现场 — 高意向需求与讨论
| 来源 | 需求信号 | 热度 |
|---|---|---|
| Ask HN | 付费 Claude AI 订阅超1周无法使用,无客服响应 — AI SaaS 可靠性与客服缺口 | 44 pts |
| Ask HN | 互联网是否变得不可访问? — 基础设施信任危机 | 43 pts |
| Ask HN | 如何应对安装/运行项目的安全问题? — 开发者工具安全审计需求 | 12 pts |
| Ask HN | 为什么每家公司都在到处加AI? — 对 AI 过度渗透的反弹 | 24 pts |
| Ask HN | 技术之后还有什么高薪职业? — 技术人才职业转型需求 | 13 pts |
| Ask HN | 你在构建什么应用? — 开发者社区构建动力 | 14 pts |
| Ask HN | 学习 ML 推理基础设施的最佳实践路径? — MLOps/推理优化学习需求 | 7 pts |
🔑 需求洞察
- AI SaaS 可靠性缺口:付费用户遇到问题无法获得支持 → 机会:AI 服务监控/SLA 保障工具
- 开发者安全焦虑:安装开源项目的安全顾虑持续存在 → 机会:依赖安全审计、沙箱运行环境
- AI 过度渗透反弹:用户对"万物皆AI"产生抵触 → 机会:精准定位的垂直 AI 工具
- ML 推理基础设施:推理优化是实际生产痛点 → 机会:推理优化工具链、成本监控
💰 已验证方向 — GitHub 热门项目
| 项目 | ⭐ | 描述 | 方向 |
|---|---|---|---|
| openclaw/openclaw | 384K | 个人 AI 助手,跨平台 | 🤖 个人 AI 助手 |
| obra/superpowers | 263K | 代理技能框架 & 开发方法论 | 🧩 Agent 技能框架 |
| affaan-m/ECC | 235K | 代理性能优化系统 | ⚡ Agent 性能优化 |
| NousResearch/hermes-agent | 222K | 与你一起成长的代理 | 🧠 自进化 Agent |
| multica-ai/andrej-karpathy-skills | 197K | 基于 Karpathy 方法的 CLAUDE.md | 📝 AI 编码优化 |
| anomalyco/opencode | 191K | 开源编码代理 | 💻 AI 编码工具 |
| microsoft/markitdown | 170K | 文件转 Markdown Python 工具 | 📄 文档转换 |
| DigitalPlatDev/FreeDomain | 189K | 免费域名服务 | 🌐 基础设施 |
| ultraworkers/claw-code | 195K | Rust 代理管理开发工具 | 🔧 Rust + Agent |
| mattpocock/skills | 193K | 真正工程师的技能包 | 🎯 工程效率 |
📈 趋势方向解读
AI Agent 生态 ──────────────────────────▶ 核心赛道
├── 个人 AI 助手 (openclaw 384K) ────▶ 需求验证 ✅
├── Agent 技能框架 (superpowers/ECC) ─▶ 模块化趋势
├── 自进化 Agent (hermes-agent) ──────▶ 长期价值
└── 编码 Agent (opencode/claw-code) ──▶ 竞争激烈
开发者工具 ─────────────────────────────▶ 持续需求
├── 文档转换 (markitdown 170K) ──────▶ 实用刚需
├── 免费基础设施 (FreeDomain) ───────▶ 成本敏感
└── 工程效率 (skills 193K) ──────────▶ 个人品牌化
关键发现:GitHub trending 完全被 AI Agent 生态占据。新进入者应关注 垂直场景 Agent(非通用助手)或 Agent 基础设施(监控、安全、编排)。
🔬 Show HN 精选 — 本周最新项目
| 项目 | pts | 描述 | 创业启示 |
|---|---|---|---|
| HNewhere | 223 | HN 链接无需开两个标签页 | 浏览器增强仍有市场 |
| XY Plotting Library | 120 | GPU 加速交互式绘图库 | 高性能可视化 |
| tale.fyi | 71 | 小说/长篇阅读平台 | 内容平台新形态 |
| Ctrlb-decompose | 49 | 日志发 LLM 前先去噪 | LLM 数据预处理 ⭐ |
| Manim in Browser | 46 | 3Blue1Brown 动画引擎 WebGPU 版 | 教育可视化 |
| Flashpaper | 25 | 无数据库自毁式秘密分享 | 隐私工具 |
| Somebodyhire.me | 15 | 求职展示页 | 个人品牌 |
| Minute | 12 | macOS 离线会议记录(Whisper+llama.cpp) | 本地 AI 工具 |
| Cynative | 14 | 只读 CLI 解释实时基础设施 | DevOps 可观测性 |
🌟 今日创业灵感精选
🚀 高潜力方向
- LLM 数据预处理管线 — Ctrlb-decompose 信号 + Ask HN 安全焦虑交叉
- 机会:结构化日志清洗 → LLM 友好格式 → 质量评分
-
变现:API 定价 / 企业版
-
AI SaaS 可靠性监控 — Ask HN 高热帖子直接需求
- 机会:AI 工具 uptime 监控 + 客服 SLA 追踪
-
变现:订阅制
-
本地优先 AI 工具 — Minute + claw-code 趋势
- 机会:离线会议转录、本地代码搜索、隐私优先 AI 助手
- 变现:一次性购买 / 企业部署
✅ 已验证信号
| 信号 | 证据 | 强度 |
|---|---|---|
| 个人 AI 助手有市场 | openclaw 384K★ | ⭐⭐⭐⭐⭐ |
| Agent 模块化是趋势 | superpowers + ECC + hermes 共 720K★ | ⭐⭐⭐⭐⭐ |
| LLM 数据质量是痛点 | Ctrlb-decompose + Ask HN 安全帖 | ⭐⭐⭐⭐ |
| 开发者愿意为效率付费 | mattpocock/skills 193K★ | ⭐⭐⭐⭐ |
| 浏览器增强有需求 | HNewhere 223 pts | ⭐⭐⭐ |
📊 数据快照
| 指标 | 数值 |
|---|---|
| HN Front Page | 20 条 |
| Ask HN | 15 条(points>5) |
| Show HN | 12 条(points>10) |
| GitHub 新仓库 | 10 条(stars>100) |
| GitHub 总匹配 | 57,389 个仓库 |
| 今日最热 HN | HIV 疫苗研究 (610 pts) |
| 今日最高 Show HN | HNewhere (223 pts) |
| 今日最高 GitHub | openclaw (384K★) |
报告已保存至 /opt/data/hermes/daily-idea-briefing/briefing_20260729.md
报告生成时间:2026-07-29 | Hermes Idea Miner v1.0