技能详情(站内镜像,无评论)
作者:pbopps @3rdbrain
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 23 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:3rdbrain/track-upvotes
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The code legitimately scrapes public Product Hunt pages and returns upvotes/trends, but the skill's description promises Telegram alerts and 'real-time' behavior that are not implemented and would require credentials — an incoherence you should understand before installing.
目的
The skill's stated purpose (track upvotes, comments, daily ranking) matches the included code which fetches the public Product Hunt page and extracts upvotes/comments/rank. However, the description and README mention 'get Telegram alerts when you move up the leaderboard' and 'real-time' alerts; there is no Telegram or external-notification code, no webhook or bot integration, and no required environment variables for any notification service. …
说明范围
SKILL.md instructs the agent to run the included Node.js script with a Product Hunt URL and explicitly states 'No API key needed' — this aligns with the code that scrapes the public page. The instructions do not ask the agent to read unrelated files, environment variables, or system credentials. One operational note: trend detection relies on an in-memory history array, so 'hourly trends' only work if the process is kept running or managed ext…
安装机制
There is no install spec and no external downloads; this is an instruction-only skill with a small included JS file and package.json. Nothing is written to disk by an installer and no remote archives are fetched at install time — low install risk.
证书
The skill declares no required environment variables or credentials, which is coherent with the scraping-only implementation. However, the description's promise of Telegram alerts implies the need for credentials (bot token, chat id) that are not declared or requested. This omission is potentially misleading: if you expect alerting, the skill would need additional secrets and network calls that are not present.
持久
The skill is not always-enabled and does not request elevated privileges or modify other skills or system-wide config. It runs as a normal user process and maintains only an in-memory history; it does not persist or exfiltrate credentials.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Product Hunt Launch Tracker」。简介:Track Product Hunt launch upvotes, comments, and daily ranking in real-time — g…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/3rdbrain/track-upvotes/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: track-upvotes
description: Track Product Hunt launch upvotes, comments, and daily ranking in real-time — get Telegram alerts when you move up the leaderboard.
version: 1.0.0
author: ModelFitAI <skills@modelfitai.com>
license: MIT
keywords: [openclaw, skill, product-hunt, launch, tracking, upvotes, growth]
requires: {}
---
# Product Hunt Launch Tracker
Monitor your Product Hunt launch in real-time — upvotes, rank, comments, and hourly trends. No API key needed.
## Commands
Run with Node.js: `node {baseDir}/track-upvotes.js <command> [args]`
- **check `<url>`** — Get current upvotes, rank, and comments
- **trend `<url>`** — Get current stats + trend vs last check
## Usage
```bash
node {baseDir}/track-upvotes.js check https://www.producthunt.com/posts/your-product
node {baseDir}/track-upvotes.js trend https://www.producthunt.com/posts/your-product
```
## No API Key Required
Reads the public Product Hunt page directly. Nothing to configure — just pass your product URL.