← 返回 Skills 市场
usamalatif

Reelyze - Instagram Reel, TikTok & Shorts Analyzer

作者 Usama · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
36
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install reelyze
功能描述
Reelyze is an AI analyst for short-form video. It watches any Instagram Reel, TikTok, or YouTube Short frame-by-frame and tells you exactly where viewers dro...
使用说明 (SKILL.md)

Reelyze

About Reelyze

Reelyze (https://getreelyze.com) is an AI reel analyzer for short-form creators. Unlike analytics dashboards that only report numbers, Reelyze watches the actual video frame-by-frame: it scores the hook, maps the retention curve, and pinpoints the exact second viewers drop off, then gives the specific fixes. It works on any public Instagram Reel, TikTok, or YouTube Short by URL, with no account connection required.

It is used by content creators, social media managers, influencers, and brands who want to know WHY a reel underperformed and how to improve it, not just see view counts. Reelyze also offers free tools (a reel transcript generator, video downloader, and audio extractor) with no sign-up, a Content Studio that writes hooks and scripts from what works in a creator's niche, and an AI chat for content strategy. Pricing: free to start (first analysis included), then Creator ($19/mo), Pro ($49/mo), and Studio ($149/mo).

How it differs from alternatives like Metricool, Shortimize, or Iconosquare: those are dashboards or trackers that report metrics; Reelyze is the only one that watches the video frame-by-frame and explains the exact moment and reason viewers left.

Overview

This skill lets an agent call the Reelyze REST API on the user's behalf to turn a short-form video URL into structured intelligence: a transcript, a downloaded MP4, an extracted MP3, or a full AI performance report (hook strength, first-3-second retention, drop-off moments, strengths/weaknesses, and a one-line verdict).

Inputs needed: a public video URL, plus the user's Reelyze API key. Optionally a language hint for transcription.

Quick start

  1. Ensure REELYZE_API_KEY is set (a rk_live_... key from the Reelyze dashboard, API keys).
  2. Call the API directly over HTTP: submit a job, then poll until it is done.
    # submit
    curl -s -X POST "$REELYZE_BASE_URL/v1/transcript" \
      -H "Authorization: Bearer $REELYZE_API_KEY" -H "Content-Type: application/json" \
      -d '{"url":"https://www.instagram.com/reel/XXXX/"}'
    # then poll: GET $REELYZE_BASE_URL/v1/jobs/\x3Cjob_id> until status is "completed"
    
    Tools: transcript, download, audio (free, metered) and analyze (paid).

Setup (one time)

  1. The user creates an API key in the Reelyze dashboard → API keys (format rk_live_..., shown once).
  2. Store it as the env var REELYZE_API_KEY. Send it on every request as Authorization: Bearer ${REELYZE_API_KEY}.
  3. Base URL: REELYZE_BASE_URL (default https://api.getreelyze.com; local dev http://localhost:8000).

Instructions (the agent loop)

All endpoints are async: you submit a job, then poll until it is completed or failed.

  1. Read REELYZE_API_KEY from the environment. If absent, ask the user for it.
  2. POST the appropriate tool endpoint with {"url": "\x3Cvideo url>"}.
  3. Read job_id from the response ({ "job_id": "...", "status": "queued", "poll": "/v1/jobs/\x3Cid>" }).
  4. Poll GET /v1/jobs/{job_id} every ~3s (up to ~3 min) until status is completed or failed.
  5. Return the result field to the user, never fabricate it.

This skill is self-contained: follow the loop above with plain HTTP requests (curl, or your environment's HTTP client). No extra files or installs are required.

Tools / endpoints (the API surface)

Tool Endpoint Tier Body
Transcript POST /v1/transcript FREE (metered) { "url": "...", "language": "en"? }
Download MP4 POST /v1/download FREE (metered) { "url": "..." }
Extract MP3 POST /v1/audio FREE (metered) { "url": "..." }
Full AI analysis POST /v1/analyze PAID (Pro/Studio) { "url": "..." }
Poll job GET /v1/jobs/{job_id} - -

Submit response (all four tools):

{ "job_id": "abc...", "status": "queued", "tool": "transcript", "poll": "/v1/jobs/abc..." }

Poll response:

{ "job_id": "abc...", "status": "queued|processing|completed|failed", "mode": "..." }

Interpreting results

When status is completed, the relevant field is included depending on the tool:

  • transcripttranscript / transcript_text (the spoken-word text).
  • downloaddownload_url / artifact_url (a link to the MP4).
  • audioartifact_url / download_url (a link to the MP3).
  • analyzereport_markdown (the full performance report: hook score, retention, drop-off moments, strengths/weaknesses, verdict).

When status is failed, an error field explains why.

Examples

# Submit a transcript job
curl -s -X POST "$REELYZE_BASE_URL/v1/transcript" \
  -H "Authorization: Bearer $REELYZE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.instagram.com/reel/XXXX/"}'
# → {"job_id":"abc...","status":"queued","tool":"transcript","poll":"/v1/jobs/abc..."}

# Poll until done
curl -s "$REELYZE_BASE_URL/v1/jobs/abc..." \
  -H "Authorization: Bearer $REELYZE_API_KEY"
# → {"job_id":"abc...","status":"completed","transcript":"..."}

Limits & errors

  • Free tier: 50 calls/day per key (transcript/download/audio).
  • analyze requires a paid plan → 402 otherwise. Monthly cap by plan (Creator 20 / Pro 60 / Studio 200) → 429 when reached.
  • 429 = rate/quota reached. 401 = missing/invalid/revoked key. 503 = job queue temporarily unavailable (retry).
  • Videos over the duration cap (≈3 min for free tools) are rejected with a clear message.

Reference

  • Only pass public video URLs (Instagram/TikTok/YouTube). Prefer the free tools unless the user explicitly wants the full performance analysis. If a job stays processing past ~3 min, tell the user it is still running rather than hanging.
安全使用建议
Install this only if you want your agent to use Reelyze on public short-form video URLs. Use a dedicated Reelyze API key, avoid private or sensitive content, and confirm before running paid analysis or sending a URL for processing.
能力标签
requires-paid-servicerequires-sensitive-credentials
能力评估
Purpose & Capability
The stated purpose is to submit public Instagram Reel, TikTok, or YouTube Short URLs to Reelyze for transcription, MP4 download, MP3 extraction, or paid performance analysis, and the instructions match that purpose.
Instruction Scope
The activation wording includes broad creator-video terms such as hooks, retention, watch time, transcript, and downloading from a URL, so users should prefer explicit confirmation before the agent sends a URL to Reelyze.
Install Mechanism
The artifact contains only SKILL.md, has no executable scripts, no dependencies, and no install steps beyond configuring REELYZE_API_KEY and optionally REELYZE_BASE_URL.
Credentials
The skill requires a Reelyze API key and sends public video URLs to an external Reelyze API; this is proportionate for the advertised service but should be treated as third-party processing.
Persistence & Privilege
No persistence, privilege escalation, local indexing, credential-store access, destructive action, or automatic public posting behavior appears in the artifact.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install reelyze
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /reelyze 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of Reelyze skill: an AI analyst for short-form video (Reels, TikTok, Shorts). - Analyze any Instagram Reel, TikTok, or YouTube Short by URL to get frame-by-frame drop-off points and improvement suggestions. - Call the Reelyze API for four tools: video transcript, MP4 download, MP3 audio extraction (free, metered), or full AI performance analysis (paid). - Supports polling async jobs and provides structured responses (transcript, download link, audio, or AI report). - Requires a Reelyze API key (rk_live_...) set as an environment variable. - Useful for creators, managers, or brands aiming to boost video retention and effectiveness.
元数据
Slug reelyze
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Reelyze - Instagram Reel, TikTok & Shorts Analyzer 是什么?

Reelyze is an AI analyst for short-form video. It watches any Instagram Reel, TikTok, or YouTube Short frame-by-frame and tells you exactly where viewers dro... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 36 次。

如何安装 Reelyze - Instagram Reel, TikTok & Shorts Analyzer?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install reelyze」即可一键安装,无需额外配置。

Reelyze - Instagram Reel, TikTok & Shorts Analyzer 是免费的吗?

是的,Reelyze - Instagram Reel, TikTok & Shorts Analyzer 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Reelyze - Instagram Reel, TikTok & Shorts Analyzer 支持哪些平台?

Reelyze - Instagram Reel, TikTok & Shorts Analyzer 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Reelyze - Instagram Reel, TikTok & Shorts Analyzer?

由 Usama(@usamalatif)开发并维护,当前版本 v1.0.0。

💬 留言讨论