← 返回
未分类 中文

AI Launch Pipeline

One-click automated pipeline for AI product launch monitoring — RSS monitoring, product search enrichment, screenshot capture, and trend analysis
一键自动化AI产品发布监控流水线——RSS监控、产品搜索丰富、截图捕获和趋势分析
terrycarter1985 terrycarter1985 来源
未分类 clawhub v2.0.0 2 版本 100000 Key: 无需
★ 0
Stars
📥 373
下载
💾 0
安装
2
版本
#ai#latest#monitoring#pipeline#rss#trends

概述

AI Launch Pipeline

One-click end-to-end workflow for monitoring AI product launches. Runs four stages in sequence: RSS monitoring → product search → screenshot capture → trend analysis.

Quick Start

# Full pipeline (one click)
python scripts/run_pipeline.py

# Skip screenshot stage (no Playwright needed)
python scripts/run_pipeline.py --skip-screenshot

# Run a single stage
python scripts/run_pipeline.py --stage rss
python scripts/run_pipeline.py --stage search
python scripts/run_pipeline.py --stage screenshot
python scripts/run_pipeline.py --stage analysis

Stages

#StageWhat it doesOutput
-------------------------------
1RSS MonitorFetches configured RSS feeds, detects new AI launch postsdata/raw_launches.json
2Product SearchEnriches each launch with DuckDuckGo search resultsdata/enriched_launches.json
3ScreenshotCaptures full-page screenshots of product pages (optional)screenshots/*.png, data/screenshot_results.json
4Trend AnalysisIdentifies keywords, top organizations, source distributionanalysis/trends.json, analysis/launch_analysis_report.md

Configuration

Edit config/rss_feeds.yaml to add or remove RSS feeds:

feeds:
  - name: OpenAI Blog
    url: https://openai.com/blog/rss.xml
    category: llm

Environment Variables

VariableDefaultDescription
--------------------------------
PIPELINE_BASE_DIRskill rootBase directory for all outputs
PIPELINE_DATA_DIR{BASE}/dataJSON data output directory
PIPELINE_SCREENSHOT_DIR{BASE}/screenshotsScreenshot output directory
PIPELINE_ANALYSIS_DIR{BASE}/analysisAnalysis report directory
PIPELINE_CONFIGconfig/rss_feeds.yamlRSS feed config path

Dependencies

  • Python 3.10+
  • PyYAMLpip install pyyaml
  • Playwright (optional, for screenshots) — pip install playwright && playwright install chromium

Output

After a full run:

data/
  raw_launches.json          # Stage 1 output
  seen_ids.json              # Dedup state
  enriched_launches.json     # Stage 2 output
  screenshot_results.json    # Stage 3 output
screenshots/
  *.png                      # Captured screenshots
analysis/
  trends.json                # Structured trend data
  launch_analysis_report.md  # Human-readable report

Scheduling

Pair with OpenClaw cron for automated daily runs:

# Add via cron tool
schedule: { kind: "cron", expr: "0 8 * * *" }
payload: { kind: "agentTurn", message: "Run the AI launch pipeline: python ~/.openclaw/skills/ai-launch-pipeline/scripts/run_pipeline.py --skip-screenshot, then summarize the analysis report." }

版本历史

共 2 个版本

  • v2.0.0 当前
    2026-05-21 13:44 安全 安全
  • v1.0.0
    2026-05-08 03:45 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

Find Skills

root
帮助用户发现和安装智能体技能,当用户询问如「如何做X」、「找X的技能」、「有能做...的吗」等问题时
★ 1,519 📥 576,516
ai-agent

self-improving agent

pskoett
记录自身发现以实现自我改进的技能
★ 4,165 📥 938,319
dev-programming

Code Formatter

terrycarter1985
代码格式化最佳实践及常用语言(Python、JavaScript、JSON、Markdown 等)的快速参考,使用 Prettier、Black、ESLint 等工具。
★ 0 📥 870