Token导航 LogoToken导航TokenDH.com
开发敏感数据unknown未标认证来源可访问许可证需确认审计未展示

reapreap 开发

Agent Skill

reap 用于补充开发相关能力,适合在 Local Agent 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

541

周安装

23

下载量

190
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:reap(reap 开发)
来源仓库:https://docs.reap.video
仓库路径:reap
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

reap 用于补充开发相关能力,适合在 Local Agent 中需要让 Agent 承接开发相关任务时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,原始 SKILL.md 摘录未提供。
  • reap 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Reap Automation API Skill

Product Summary

Reap is a REST API for automating video processing: AI clipping (extracting short clips from long videos), caption generation with styling, video reframing for different aspect ratios, AI dubbing into 80+ languages, transcription, and direct publishing to YouTube, Instagram, TikTok, LinkedIn, and X. The API runs at https://public.reap.video/api/v1/automation/ with Bearer token authentication and webhook callbacks. Key files: API key from dashboard (Profile > Settings > API Keys), webhook configuration (Profile > Settings > Webhooks). CLI: use npx skills add https://docs.reap.video to install the agent skill, or npx add-mcp https://docs.reap.video/mcp for MCP server integration. Primary docs: https://docs.reap.video

When to Use

Reach for this skill when:

  • An agent needs to extract short clips from long-form videos (podcasts, webinars, keynotes, YouTube streams)
  • Building a workflow that uploads video, creates clips, and polls or waits for completion
  • Adding captions with custom styling, emojis, or keyword highlighting to videos
  • Reframing video for different aspect ratios (16:9 to 9:16, 1:1, 4:5) without cropping faces
  • Dubbing audio into multiple languages with lip-aware timing
  • Publishing completed clips to multiple social platforms from a single API call
  • Setting up real-time notifications via webhooks instead of polling
  • Building batch video processing pipelines for content teams or SaaS platforms

Quick Reference

API Endpoints by Task

TaskEndpointMethod
Get upload URL/get-upload-urlPOST
Create clipping project/create-clipsPOST
Create caption project/create-captionsPOST
Create reframe project/create-reframePOST
Create dubbing project/create-dubbingPOST
Create transcription/create-transcriptionPOST
Check project status/get-project-statusGET
Get project details/get-project-detailsGET
Get generated clips/get-project-clipsGET
Publish clip/publish-clipPOST
Schedule clips/schedule-clipsPOST
Get integrations/get-integrationsGET
Get presets/get-all-presetsGET

Authentication Header

Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

Video Requirements

RequirementValue
FormatMP4 or MOV
Duration2 minutes to 3 hours
File sizeMax 5 GB
ContentWorks best with dialogue-rich content

Project Status Values

  • queued — waiting to process
  • processing — currently processing
  • completed — finished successfully
  • failed — processing failed
  • invalid — source video invalid
  • expired — results no longer available

Rate Limits

  • 10 requests per minute per API key
  • Creator plan: 3 concurrent projects, max 1080p
  • Studio plan: 10 concurrent projects, max 4K

Clip Duration Ranges

RangeDuration
[0, 30]Under 30 seconds
[30, 60]30–60 seconds
[60, 90]60–90 seconds
[90, 180]90 seconds–3 minutes
[180, 300]3–5 minutes

Decision Guidance

When to Use Webhooks vs Polling

ScenarioUse WebhooksUse Polling
Production workflows
Real-time dashboards
Batch processing
Quick prototypes
Testing/debugging
WhyNo wasted requests, real-time notifications, auto-disables after 5 failuresSimple, no endpoint setup needed

Recommendation: Always use webhooks in production. Set up from dashboard at Profile > Settings > Webhooks. Webhook endpoint must be HTTPS, return HTTP 200 with empty body within 5–10 seconds.

When to Use sourceUrl vs uploadId

ApproachUse WhenExample
uploadIdYou have a file to uploadUser uploads video from your app
sourceUrlVideo is already hostedProcessing a YouTube URL directly
NoteProvide one, not bothMutually exclusive in request

Clipping vs Captions vs Reframe vs Dubbing

TaskInputOutputUse When
ClippingLong videoMultiple short clips ranked by viralityExtracting highlights from podcasts, webinars, streams
CaptionsVideoVideo with styled captionsAdding accessibility and engagement to existing clips
ReframeVideoVideo in different aspect ratiosAdapting 16:9 content for TikTok (9:16), Instagram (1:1), etc.
DubbingVideoVideo with dubbed audio in target languageLocalizing content for international audiences

Workflow

Standard Video Processing Pipeline

  1. Get upload URL — Call /get-upload-url with filename to get presigned S3 URL and upload ID
  2. Upload video — PUT your video file to the presigned URL (not via API, direct S3 upload)
  3. Create project — POST to /create-clips (or /create-captions, /create-reframe, /create-dubbing) with uploadId and settings
  4. Monitor progress — Either:

- Set up webhook at dashboard (Profile > Settings > Webhooks) and wait for POST callback, OR - Poll /get-project-status?projectId=... every 5–10 seconds

  1. Retrieve results — Once status is completed, call /get-project-clips (for clipping) or /get-project-details (for other types)
  2. Publish (optional) — Call /publish-clip with integration IDs to post to social platforms

Example: Create Clips from Uploaded Video

# 1. Get upload URL
curl -X POST https://public.reap.video/api/v1/automation/get-upload-url \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"filename":"video.mp4"}'
# Response: { "uploadUrl": "https://...", "id": "upload_abc" }

# 2. Upload video (direct to S3, not via API)
curl -X PUT "$UPLOAD_URL" \
  -H "Content-Type: video/mp4" \
  --data-binary @video.mp4

# 3. Create clipping project
curl -X POST https://public.reap.video/api/v1/automation/create-clips \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "uploadId": "upload_abc",
    "genre": "talking",
    "exportResolution": 1080,
    "exportOrientation": "portrait",
    "reframeClips": true,
    "captionsPreset": "system_beasty",
    "enableEmojis": true,
    "clipDurations": [[30,60],[60,90]]
  }'
# Response: { "id": "proj_xyz", "status": "processing" }

# 4. Poll for completion (or use webhooks)
curl -X GET "https://public.reap.video/api/v1/automation/get-project-status?projectId=proj_xyz" \
  -H "Authorization: Bearer $API_KEY"

# 5. Get clips once completed
curl -X GET "https://public.reap.video/api/v1/automation/get-project-clips?projectId=proj_xyz" \
  -H "Authorization: Bearer $API_KEY"

Common Gotchas

  • API key in environment variables — Never hardcode API keys. Store in REAP_API_KEY or similar and load from environment.
  • Upload URL is presigned S3, not API endpoint — After calling /get-upload-url, upload directly to the returned URL with a PUT request, not to the Reap API.
  • Provide uploadId OR sourceUrl, not both — Requests with both fields will fail with 400 Bad Request.
  • Webhook validation requires HTTPS — Localhost, HTTP, and private IPs are rejected. Use a public HTTPS endpoint.
  • Webhook returns 200 with empty body — Any other status or response body counts as failure. Return immediately, process asynchronously.
  • Webhooks auto-disable after 5 failures — Monitor delivery history in dashboard. Re-enable by toggling the webhook on (triggers test request).
  • No automatic retries for webhooks — If a webhook fails, Reap logs it and moves on. Use polling as fallback for critical workflows.
  • Rate limit is 10 requests/minute — Check X-RateLimit-Remaining header. Exceeding limit returns 429.
  • Concurrent project limits by plan — Creator: 3, Studio: 10. Exceeding returns 429 with "concurrent projects" message.
  • Video must be 2–3 hours — Videos shorter than 2 minutes or longer than 3 hours fail validation at project creation.
  • Captions preset must exist — Use /get-all-presets to list available presets. Invalid preset ID returns 400.
  • Integration IDs required for publishing — Call /get-integrations to get IDs of connected social accounts. Invalid ID returns 400.
  • Clip URLs are presigned and expire — Download clips immediately after completion; presigned URLs have limited lifetime.
  • Topics are optional but improve results — Passing topics: ["product demo", "pricing"] steers AI toward specific segments.
  • Genre affects AI analysis — Use "talking" for podcasts/interviews, "music" for music videos, etc. Affects clip selection.

Verification Checklist

Before submitting work with Reap API integrations:

  • API key is stored in environment variable, not hardcoded
  • All requests include Authorization: Bearer header with valid key
  • Video file is MP4 or MOV, between 2 minutes and 3 hours
  • Upload URL is used for direct S3 PUT, not API POST
  • Project creation includes either uploadId or sourceUrl, not both
  • Webhook endpoint is HTTPS and returns HTTP 200 with empty body within 5 seconds
  • Webhook URL is not localhost, 127.0.0.1, or private IP
  • Polling loop checks for completed or failed status, not intermediate states
  • Polling interval is 5–10 seconds (not too aggressive)
  • Caption preset ID is valid (checked against /get-all-presets)
  • Integration IDs for publishing are valid (checked against /get-integrations)
  • Error handling catches 400 (bad request), 401 (auth), 404 (not found), 429 (rate limit)
  • Concurrent project count does not exceed plan limit
  • Webhook delivery history is monitored to catch auto-disable before it happens

Resources

Full documentation index: https://docs.reap.video/llms.txt — comprehensive page-by-page navigation for agents

Critical pages:

  • Quickstart Guide — upload, create clips, poll, retrieve results in 5 minutes
  • Create Clips Endpoint — AI clipping with genre, topics, durations, reframing, captions
  • Webhooks Guide — set up real-time notifications, endpoint requirements, auto-disable behavior

For additional documentation and navigation, see: https://docs.reap.video/llms.txt

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

87.37%
按下载量换算166

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills