AI Launch Pipeline

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: ai-launch-pipeline Version: 2.0.0 The ai-launch-pipeline skill is a legitimate automation tool for monitoring AI product launches. It fetches RSS feeds (rss_monitor.py), enriches data via DuckDuckGo searches (product_search.py), captures screenshots using Playwright (screenshot_capture.py), and generates a trend report (trend_analyzer.py). The code uses standard Python libraries for networking and parsing, and its behavior aligns perfectly with the documentation in SKILL.md without any evidence of malicious intent, data exfiltration, or harmful instructions.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Running the pipeline can contact public RSS feeds, DuckDuckGo, and product/news pages, and may open pages in a headless browser for screenshots.

Why it was flagged

The documented workflow intentionally performs external feed fetching, web search enrichment, and optional screenshot capture; these are purpose-aligned but involve third-party web access.

Skill content
RSS monitoring → product search → screenshot capture → trend analysis
Recommendation

Run it only when you are comfortable with those external requests, and use `--skip-screenshot` if you do not want browser-based page visits.

What this means

You may need to install Python packages yourself, which means package source and version selection are your responsibility.

Why it was flagged

The skill relies on manually installed packages rather than an install spec or lockfile; this is disclosed and normal for a Python utility, but dependency provenance is left to the user.

Skill content
PyYAML — `pip install pyyaml`; Playwright (optional, for screenshots) — `pip install playwright && playwright install chromium`
Recommendation

Install dependencies from trusted package indexes, consider pinning versions, and only install Playwright if you need screenshots.

What this means

Generated files may accumulate records of monitored launches and external page content on your machine.

Why it was flagged

The skill persists retrieved launch data, deduplication state, screenshots, and reports locally; this is expected for monitoring, but the stored content originates from external feeds and pages.

Skill content
data/seen_ids.json # Dedup state ... enriched_launches.json ... screenshots/*.png ... analysis/launch_analysis_report.md
Recommendation

Keep output directories scoped to the skill, review generated reports before relying on them, and delete local outputs if you no longer need the monitoring history.

What this means

If you enable the cron example, the pipeline may run daily and continue making web requests and writing outputs.

Why it was flagged

The skill documents an optional recurring automation path; it is explicit and purpose-aligned, but users should remember that a cron schedule continues until removed.

Skill content
Pair with OpenClaw cron for automated daily runs: schedule: { kind: "cron", expr: "0 8 * * *" }
Recommendation

Only enable scheduling intentionally, and keep track of how to disable the cron job if you no longer want recurring monitoring.