Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

veezvg-episode-to-instagramveezvg 剧集到 Instagram

Agent Skill

veezvg-episode-to-instagram 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,345

周安装

134

GitHub Stars

公开资料未说明

下载量

1,083
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:veezvg-episode-to-instagram(veezvg 剧集到 Instagram)
来源仓库:https://github.com/veezvg/veezvg-episode-to-instagram
安装命令:
openclaw skills install veezvg-episode-to-instagram
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install veezvg-episode-to-instagram

简介

播客剧集转Instagram内容管道自动生成轮播帖、报价卡与卷轴视频。

  • 自动转录关键引述并排版为社交平台友好格式。
  • 适用于自媒体运营与内容二次分发场景。
  • 安装命令:openclaw skills install veezvg-episode-to-instagram,需视频文件输入。
  • 发布前应检查文案合规性,尊重原创版权。

SKILL.md

name
episode-to-instagram
version
1.0.1
description
Full pipeline to turn a video podcast episode into Instagram content (carousel posts, quote cards, and Reels). Transcribes the episode, extracts key quotes with timestamps, pulls video frames, generates aesthetic carousel slides, and posts to Instagram via browser automation. Use when the user provides a full podcast/video episode or a YouTube/video webpage URL and wants Instagram-ready content generated and posted.

Episode to Instagram

End-to-end pipeline: video episode or YouTube/video webpage URL → local media acquisition → transcript → content extraction → carousel/image generation → Instagram posting via browser automation.

Prerequisites

  • ffmpeg (installed via Homebrew)
  • OpenAI API key (for Whisper transcription)
  • Replicate API key (for visual generation — optional, can use built-in image generation)
  • openclaw browser for Instagram posting
  • Instagram account logged in via the OpenClaw browser profile (optional account/series branding can be stored in brand-config.json, e.g. @yourhandle)

Pipeline Steps

Step 0: Acquire Source Media

If the user provides a YouTube URL or a webpage that embeds a podcast/video episode:

  1. Resolve the actual video URL from the page if needed
  2. Download the best practical local source copy before transcription/frame extraction
  3. Save the original source URL alongside the working files for traceability
  4. Prefer a stable MP4/MOV source when possible; if only YouTube is available, download the combined video/audio asset first

Expected outputs in the episode working directory:

  • source-url.txt
  • source-video.mp4 (or equivalent local video file)

Step 1: Transcribe

Script: scripts/transcribe.sh

  1. Extract audio from the video file using ffmpeg
  2. Split into chunks if >25MB (Whisper API limit)
  3. Send to OpenAI Whisper API for transcription
  4. Output: timestamped transcript as JSON + plain text

Step 2: Extract Content

This step is model-driven (not scripted). The agent should:

  1. Read the full transcript
  2. Identify the 8-12 best moments for Instagram content:

- 3-4 short quotable moments (for carousel text overlays) - 2-3 key insight passages (for carousel takeaway slides) - 3-4 high-energy or visually interesting segments (for Reel clip timestamps)

  1. For each moment, record:

- Exact timestamp (start + end) - The quote or passage text - Content type: quote_card | takeaway | reel_clip - Suggested carousel slide text (cleaned up for Instagram)

  1. Output a structured content plan as JSON

Step 3: Extract Video Frames

Script: scripts/extract-frames.sh

  1. For each quote/takeaway moment, extract a frame at the timestamp using ffmpeg
  2. Extract multiple frames around each timestamp (±2 seconds) and pick the best one
  3. Output: PNG frames in a working directory

Step 4: Attach Frames to the Content Plan

Before rendering any carousel slides, the agent must update the content plan so each slide that references a selected moment has a concrete framePath pointing at an extracted frame file. Do not render slides until this mapping is present and verified.

Validation before rendering:

  • Every non-hook/non-CTA slide should either have a valid framePath or be intentionally text-only
  • If framePath values are missing, stop and repair the plan before running the generator
  • Spot-check at least one rendered slide to confirm the background image is visible and not falling back to a plain background unexpectedly

Step 5: Generate Carousel Slides

Script: scripts/generate-carousel.js

For each carousel post (5-7 slides):

  1. Slide 1: Hook slide — bold text + video frame background
  2. Slides 2-5: Key quotes/takeaways with text overlay on video frames
  3. Final slide: CTA ("Follow for more" / episode link)

Carousel image specs:

  • 1080x1080px (square) or 1080x1350px (portrait, 4:5 — higher engagement)
  • Consistent brand aesthetic (colors, fonts, overlay style)
  • Text must be readable over the video frame (use semi-transparent overlay)

For visual enhancement, optionally use Replicate models:

  • Background enhancement/style transfer on frames
  • Generate complementary visuals from episode themes

Step 6: Preview & Approve

Before posting, the agent must:

  1. Send all generated carousel slides to the user via Slack
  2. Send the full proposed caption text verbatim so the user can reply with direct edits
  3. Send the content plan summary
  4. Wait for explicit approval
  5. Accept edits/feedback and regenerate as needed

Step 7: Post to Instagram

Script: scripts/post-to-instagram.js

Uses openclaw browser to:

  1. Open Instagram in the browser
  2. Use the main sidebar/header + / Create entrypoint
  3. Explicitly choose Post or Reel based on the asset being uploaded (do not assume every + opens post creation; profile-page New may open Highlight instead)
  4. Upload the staged media from OpenClaw's upload temp root
  5. For videos/Reels, use the CDP-backed draft helper instead of openclaw browser upload so the flow avoids the flaky browser upload bridge
  6. Preserve the original image/video aspect ratio via the bottom-left Select crop control before moving past the crop step; do not leave it on Instagram's default crop if that changes the intended composition
  7. Enter the caption text
  8. Screenshot the preview for final confirmation
  9. Only post after explicit approval

Crop rule:

  • After upload, explicitly check the crop step and switch to the original aspect ratio/original framing when needed.
  • Do not accept Instagram's default square crop if it trims important composition or changes the intended look of the source image.

Practical note:

  • If Instagram opens New Highlight or any non-post flow, back out and retry from the main Create/sidebar + entrypoint, then select Post before uploading media.
  • Keep a user-visible working copy in a Desktop folder named instagram when helpful (for example: ~/Desktop/instagram/), but before calling openclaw browser upload, copy the final asset(s) into /tmp/openclaw/uploads/... because the browser CLI only accepts uploads from that temp root.
  • For single-image posts sourced from chat, first copy the inbound image into the Desktop instagram folder if you want a visible local working copy, then stage that Desktop copy into /tmp/openclaw/uploads/... for browser upload.
  • For .mp4 or .mov uploads, prefer the Reel flow unless the user explicitly wants a feed video post.
  • For video uploads derived from X posts, prefer an IG-safe working copy that is at most about 89 seconds and at most 1080p. Preserve quality as much as possible while keeping the file under the working upload ceiling.

Content Rules

Quote Cards

  • Keep text under 150 characters for readability
  • Use the speaker's actual words when possible
  • Add attribution (guest name / episode title)

Takeaway Carousels

  • 5-7 slides per carousel
  • Strong hook on slide 1 (question or bold statement)
  • One idea per slide
  • Clean, readable typography
  • CTA on last slide

Reel Clips

  • 60-90 seconds max
  • Include captions/subtitles
  • Strong hook in first 3 seconds
  • Extracted via ffmpeg from source video

Brand Aesthetic

To be configured per user. Store in brand-config.json:

{
  "primaryColor": "#000000",
  "secondaryColor": "#FFFFFF",
  "accentColor": "#8B5CF6",
  "fontStyle": "clean-modern",
  "overlayOpacity": 0.6,
  "format": "1080x1350",
  "accountHandle": "",
  "seriesName": "",
  "hashtagSets": []
}

Approval Rules (Strict)

  • Never post without explicit user approval
  • Always show preview screenshots before posting
  • In Slack-thread runs, include the full editable caption text in the same thread reply rather than only summarizing it
  • If user requests edits, regenerate and re-preview
  • Carousel order must be confirmed before posting

File Structure

episode-to-instagram/
├── SKILL.md
├── brand-config.json
├── scripts/
│   ├── transcribe.sh          # Audio extraction + Whisper API
│   ├── extract-frames.sh      # ffmpeg frame extraction
│   ├── generate-carousel.js   # Canvas-based slide generation
│   └── post-to-instagram.js   # Browser automation for IG posting
└── output/                    # Working directory for generated content
    └── {episode-id}/
        ├── transcript.json
        ├── transcript.txt
        ├── content-plan.json
        ├── frames/
        ├── slides/
        └── reels/

Public Repo Notes

  • This published version ships with a neutral brand-config.json; customize it for your own account before generating slides.
  • The repository intentionally does not include any local auth-profile helpers or generated output files.
  • OPENAI_API_KEY should be provided by your shell, secret manager, or OpenClaw runtime before using scripts/transcribe.sh.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

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

平台分布

OpenClaw

97.75%
按下载量换算1,059

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills