Prompt
[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.]
[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.]
你是一位资深的产品经理和产品分析师,擅长从产品、商业、增长角度深度拆解新产品。
任务
每天晚上 22:30 选择一个 Product Hunt 排名前十(Top 10)中的新产品进行深度分析。
去重要求(非常重要)
- 读取已分析产品列表:
`bash
cat /tmp/ph_analysis_history.txt 2>/dev/null || echo "[]"
`
- 搜索 Product Hunt 今日 Top 10 产品(https://www.producthunt.com/topics/today 或 https://www.producthunt.com/feed/top-posts)。
- 排除已分析过的产品(比对名称和链接)。
- 如果今天 Top 10 都已分析过,则搜索最近 3-7 天的 Product Hunt Top 10,选择尚未分析的产品。
- 若仍没有新的可分析产品,再选择同一赛道中近期值得关注的新产品,并说明选择原因。
- 在输出开头标注「历史分析序号(第 X 篇)」,X 为已分析总数 + 1。
输出格式
1. 产品概览
- 产品名称:
- Product Hunt 排名:
- 产品链接:
- 官方网站:
- 一句话介绍:
- 所属赛道:
2. 核心功能
请总结产品的主要功能,包括:
- 解决什么问题?
- 核心功能有哪些?
- 与现有方案相比最大的差异化是什么?
- 产品最大的亮点是什么?
3. 商业模式
分析其商业模式,包括:
- 收费方式(免费、Freemium、订阅、一次性购买、API 收费等)
- 定价策略
- 盈利来源
- 是否具有网络效应或规模效应
- 是否容易形成竞争壁垒
4. 目标用户
分析产品的目标用户,包括:
- 主要用户是谁?
- 用户痛点是什么?
- 使用场景有哪些?
- 市场规模是否足够大?
5. 产品分析
请从产品经理角度分析:
- 为什么能够进入 Product Hunt Top 10?
- 最有价值的设计有哪些?
- 用户体验有哪些值得学习?
- 是否存在明显缺点?
- 如果由你来改进,会优先优化哪些地方?
6. 增长策略
分析其增长方式,包括:
- Product Hunt 的发布策略
- 社交媒体传播方式
- 是否有邀请机制、裂变机制或社区运营
- SEO 或内容营销策略
- 是否借助 AI 热点或行业趋势
7. 可借鉴之处
重点总结值得学习的经验:
- 产品思路
- 功能设计
- 商业模式
- 用户增长
- 品牌定位
- 定价策略
要求至少总结 5 条可直接借鉴的经验。
8. 创业启发
结合分析,提出:
- 可以借鉴哪些产品机会?
- 是否存在尚未满足的市场需求?
- 是否可以衍生出新的产品方向?
- 如果要做一个类似产品,你会如何差异化?
9. 一句话总结
用一句话总结这个产品最值得学习的地方。
输出要求
- 使用 Markdown 格式。
- 尽量基于最新公开信息进行分析,避免凭空猜测;若信息不足,请明确说明。
- 内容以分析和洞察为主,而不是简单翻译官网介绍。
- 每个部分尽量提供具体案例或依据。
- 每篇控制在 1000–1500 字,重点突出,避免冗长。
- 最后给出:
* 推荐指数:⭐️1–5
* 是否值得深入研究:值得 / 一般 / 不推荐
* 一句核心启发:总结最值得借鉴的一点
更新分析历史
输出完成后,将本次分析的产品名称和链接追加到历史文件:
`bash
echo '{"name": "产品名", "url": "链接", "date": "YYYY-MM-DD"}' >> /tmp/ph_analysis_history.txt
`
⚠️ 重要:你的回复将被直接发送到飞书(Feishu)聊天窗口。飞书支持 Markdown 格式,所以请使用标准 Markdown 语法。
注意:
- 使用 ## 作为二级标题
- 使用 文字 作为粗体
- 确保所有 Markdown 符号都是标准的
- 不要在输出中包含任何 Cron Job 元数据、Prompt 内容或 Response 标记
- 只输出分析内容本身,干净利落
Response
I've exhausted all technical approaches to fetch Product Hunt data due to severe network restrictions in this environment. Here's what I discovered:
Network Constraints:- Product Hunt is protected by aggressive Cloudflare challenges that require JavaScript execution (which curl can't handle)
- All search engines (Google, Bing, DuckDuckGo) are timing out or unreachable
- Third-party services (Jina AI, Archive.org, Reddit, Hacker News) are all unreachable or blocked
- The PH GraphQL API is reachable but requires OAuth authentication
- The PH Next.js data endpoints return only static asset references, not actual post data
- Confirmed the environment has limited outbound connectivity (only IPv4, no IPv6)
- Successfully obtained Cloudflare challenge tokens but couldn't execute the JS challenges
- Verified PH's GraphQL API endpoint is reachable (confirmed by OAuth error response)
- No Product Hunt data could be extracted programmatically
Since automated PH data collection isn't feasible in this environment, I recommend one of these alternatives for future cron jobs:
- Pre-populate data: Have the data fetched externally (via a separate service with full internet access) and stored in a local file or database that this agent can read
- Use a webhook: Set up an external service that pushes PH daily top posts to a local endpoint
- Manual fallback: The cron job can analyze previously saved PH data from a local file
- Different data source: Use Hacker News (which worked earlier via Algolia API) as an alternative product discovery source
For now, I cannot complete the analysis because I cannot access Product Hunt's current top 10 posts. The system will need either network improvements or an alternative data ingestion method to proceed with the daily PH analysis workflow.