Cron Job: 每日创意推送

← 返回首页

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

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

🧠 每日创意情报简报 — 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

🔑 需求洞察

  1. AI SaaS 可靠性缺口:付费用户遇到问题无法获得支持 → 机会:AI 服务监控/SLA 保障工具
  2. 开发者安全焦虑:安装开源项目的安全顾虑持续存在 → 机会:依赖安全审计、沙箱运行环境
  3. AI 过度渗透反弹:用户对"万物皆AI"产生抵触 → 机会:精准定位的垂直 AI 工具
  4. 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 可观测性

🌟 今日创业灵感精选

🚀 高潜力方向

  1. LLM 数据预处理管线 — Ctrlb-decompose 信号 + Ask HN 安全焦虑交叉
  2. 机会:结构化日志清洗 → LLM 友好格式 → 质量评分
  3. 变现:API 定价 / 企业版

  4. AI SaaS 可靠性监控 — Ask HN 高热帖子直接需求

  5. 机会:AI 工具 uptime 监控 + 客服 SLA 追踪
  6. 变现:订阅制

  7. 本地优先 AI 工具 — Minute + claw-code 趋势

  8. 机会:离线会议转录、本地代码搜索、隐私优先 AI 助手
  9. 变现:一次性购买 / 企业部署

✅ 已验证信号

信号 证据 强度
个人 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