Cron Job: 每日创意推送

← 返回首页

Cron Job: 每日创意推送

Job ID: d3bd77eb0469
Run Time: 2026-07-28 06:03:02
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

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

  1. 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)
  2. Parse with python3 -c "import json; data = json.load(open('/tmp/filename.json')); ..."
  3. 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

  1. Fetch HN front page — identifies the overall tech zeitgeist for the day
  2. Fetch HN Ask HN — captures user needs, pain points, and demand signals
  3. Fetch HN Show HN (recent, points>10) — captures new projects people are building
  4. Fetch GitHub trending repos (last 7 days) — identifies what developers are excited about
  5. Fetch additional sources if available (Reddit, Twitter, etc.)
  6. Synthesize findings into the structured report
  7. Save to file at /opt/data/hermes/idea-miner/idea-miner_{YYYYMMDD}.md
  8. Output the report as final response — the cron delivery system automatically delivers it

File Save Convention

Common Pitfalls

  1. HN Algolia URL encoding: The numericFilters parameter with > must use %3E not raw >. E.g. numericFilters=points%3E10
  2. Reddit API blocked: Don't retry Reddit JSON API with this IP — it's consistently 403. Only retry if OAuth creds are configured.
  3. Pipe-to-interpreter security blocks: In cron mode, curl | python3 triggers security warnings. Save output to file first with -o /tmp/file, then parse with python3 -c reading from file.
  4. 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.
  5. Show HN search prefers search_by_date: The /search endpoint returns all-time top, not recent. Use /search_by_date for recent Show HN posts.
  6. No xurl installed: X/Twitter mining won't work unless xurl CLI is installed and OAuth'd.
  7. Google Trends unavailable via simple curl: None of the documented public endpoints work (404). Skip silently.

Verification Checklist

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。

数据来源

  1. Reddit 需求 (r/SideProject, r/somebodymakethis)
  2. X/Twitter "I wish there was" 搜索
  3. Hacker News Ask HN
  4. Indie Hackers 已验证项目
  5. GitHub Trending
  6. Google Trends 搜索热词

报告格式

使用 Markdown 格式,包含以下章节:
- 📢 需求现场 (高意向需求: I wish/Need/Looking)
- 💰 已验证方向 (有 MRR 数据的成功项目)
- 📈 趋势项目 (GitHub 热门项目)
- 🌐 Google 搜索热词

输出要求

目标

聚焦真实用户需求,发现创业机会,提供可执行的创意洞察。

文件保存

将生成的完整报告同时保存到本地文件:/opt/data/hermes/daily-idea-briefing/briefing_{YYYYMMDD}.md

Response

报告已完成并保存到两个路径:
- /opt/data/hermes/daily-idea-briefing/briefing_20260728.md
- /opt/data/hermes/idea-miner/idea-miner_20260728.md

以下是交付到 Telegram 的完整简报内容:


🧠 Idea Miner — 每日创意情报 (2026-07-28)

📡 数据来源:Hacker News (Front Page / Ask HN / Show HN) · GitHub Trending
⚠️ Reddit (403) · IndieHackers · Google Trends 今日不可用


📢 需求现场

需求 来源 热度 创业机会
Agent间通信的自托管消息平台 Ask HN ⭐⭐⭐ 轻量Agent Slack替代,跑树莓派上
安全性担忧(运行未知项目) Ask HN ⭐⭐⭐ 沙箱运行/安全审计工具
监控cron job和队列 Ask HN ⭐⭐ 后台任务监控工具
Claude代码注释过多 Ask HN ⭐⭐ AI代码质量工具
"你希望存在什么?" Ask HN ⭐⭐ 重要邮件服务 · 智能计时器 · 撤销按钮

💡 Key Insight: 开发者想要一个能在树莓派上自托管的Agent间消息平台——Slack太重,Matrix不够Agent友好。这是蓝海。


📈 GitHub 本周热门新仓库

项目 方向
2251 MoonshotAI/Kimi-K3 🧠 开源大模型
1870 vercel-labs/scriptc 🔧 TS→Native编译器
1814 slvDev/esp32-ai 🔩 MCU边缘AI
1072 mshumer/Claude-of-Duty 🎮 单提示→3D游戏
1001 kvcache-ai/AgentENV 🤖 Agent运行环境
904 makecindy/cindy 🤖 开源AI Agent
667 VictorTaelin/OptMem 🧠 Agent永久记忆
498 mikehasa/agentacct 📊 Agent使用仪表盘
436 didriksg/Crisp 🖥️ macOS显示工具

🔮 趋势: AI Agent工具链全面爆发——记忆(OptMem) → 环境(AgentENV) → 监控(agentacct) → 交互(Cindy),新生态正在成型。


🔬 Show HN 精选

项目 描述
FeyNoBg 🥇 101 开源背景去除模型+训练库
Let's Seal 🥈 83 免费自托管文档签名(DocuSign替代)
World Model Optimizer 🥉 44 模型蒸馏,成本减半
Yap 42 macOS离线语音听写
Rescript 37 Descript($24/月)开源替代

🌟 今日最佳创业方向

🥇 Agent监控平台 — agentacct(498⭐)证明需求存在。Agent使用日志+成本追踪+审计仪表盘,目前没有成熟竞品。

🥈 开源文档签名 — Let's Seal(83pts)复制Let's Encrypt模式到DocuSign市场,$50亿+市场空间。

🥉 Agent消息总线 — 轻量自托管Agent通信协议,跑在树莓派上。

📌 宏观信号
- 🟢 $500微调9B模型 = 超越前沿模型(低成本微调时代来临)
- 🟢 "Using open model feels surprisingly good" (173pts) — 开源体验拐点
- 🔴 "Why AI everywhere?" (36条评论) — AI疲劳,需要真价值


📁 完整报告已存: /opt/data/hermes/idea-miner/idea-miner_20260728.md