/ Каталог / Песочница / claude-shorts
● Сообщество AgriciDaniel ⚡ Сразу

claude-shorts

автор AgriciDaniel · AgriciDaniel/claude-shorts

Turn a long podcast or stream into ready-to-post Shorts — Claude picks the highlights, Remotion animates the captions.

claude-shorts is a longform-to-shortform video pipeline packaged as a Claude Code skill: transcript-driven segment scoring picks candidate clips, audio-aware boundary snapping cleans them up, a Remotion project renders animated captions and cursor overlays, and Claude wires it all together. Output: vertical Shorts you can post without opening a video editor.

Зачем использовать

Ключевые функции

Живое демо

Как выглядит на практике

claude-shorts-skill.replay ▶ готово
0/0

Установка

Выберите клиент

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "claude-shorts-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/AgriciDaniel/claude-shorts",
        "~/.claude/skills/claude-shorts"
      ],
      "_inferred": true
    }
  }
}

Откройте Claude Desktop → Settings → Developer → Edit Config. Перезапустите после сохранения.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "claude-shorts-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/AgriciDaniel/claude-shorts",
        "~/.claude/skills/claude-shorts"
      ],
      "_inferred": true
    }
  }
}

Cursor использует ту же схему mcpServers, что и Claude Desktop. Конфиг проекта приоритетнее глобального.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "claude-shorts-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/AgriciDaniel/claude-shorts",
        "~/.claude/skills/claude-shorts"
      ],
      "_inferred": true
    }
  }
}

Щёлкните значок MCP Servers на боковой панели Cline, затем "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "claude-shorts-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/AgriciDaniel/claude-shorts",
        "~/.claude/skills/claude-shorts"
      ],
      "_inferred": true
    }
  }
}

Тот же формат, что и Claude Desktop. Перезапустите Windsurf для применения.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "claude-shorts-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/AgriciDaniel/claude-shorts",
        "~/.claude/skills/claude-shorts"
      ]
    }
  ]
}

Continue использует массив объектов серверов, а не map.

~/.config/zed/settings.json
{
  "context_servers": {
    "claude-shorts-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/AgriciDaniel/claude-shorts",
          "~/.claude/skills/claude-shorts"
        ]
      }
    }
  }
}

Добавьте в context_servers. Zed перезагружается автоматически.

claude mcp add claude-shorts-skill -- git clone https://github.com/AgriciDaniel/claude-shorts ~/.claude/skills/claude-shorts

Однострочная команда. Проверить: claude mcp list. Удалить: claude mcp remove.

Сценарии использования

Реальные сценарии: claude-shorts

How to turn a 90-minute podcast into 10 Shorts

👤 Podcasters and content creators ⏱ ~90 min advanced

Когда использовать: You published a long episode and want a week of Shorts from it with minimal effort.

Предварительные требования
  • Node 20+ for Remotion and FFmpeg installed — nvm install 20; brew install ffmpeg
  • Skill cloned — git clone https://github.com/AgriciDaniel/claude-shorts ~/.claude/skills/claude-shorts
Поток
  1. Transcribe and score
    Process podcast_ep42.mp3 — transcribe and score candidate Short segments.✓ Скопировано
    → Ranked list of 20–30 candidates with timestamps and hooks
  2. Pick and snap
    Pick the top 10 and snap boundaries to clean audio breakpoints.✓ Скопировано
    → 10 segments with cleaned-up start/end
  3. Render Shorts
    Render vertical 9:16 Shorts with animated captions to ./shorts/.✓ Скопировано
    → MP4 files ready to upload

Итог: A week's worth of Shorts generated in an afternoon.

Подводные камни
  • Captions out of sync — Use word-level timestamps from whisper — skill expects them
  • Same joke across 3 Shorts — Ask Claude to de-dupe by topic cluster before rendering
Сочетать с: filesystem

Build a highlight reel from a Twitch / YouTube stream

👤 Streamers, educators, conference archivists ⏱ ~60 min intermediate

Когда использовать: You have a long recording and need a sampler to promote it.

Поток
  1. Score peaks
    Find the 15 most engaging moments based on transcript + audio energy.✓ Скопировано
    → Ranked peaks with timestamps and reasons
  2. Assemble the reel
    Assemble a single 60-second highlight reel with smooth cuts.✓ Скопировано
    → One MP4 with good pacing

Итог: A concise reel that represents the best of the session.

Подводные камни
  • Reel has no narrative — Ask Claude to order clips for arc, not just score
Сочетать с: claude-youtube-skill

Комбинации

Сочетайте с другими MCP — эффект x10

claude-shorts-skill + claude-youtube-skill

Same pipeline feeds YouTube long-form + Shorts strategy

Pick 10 Shorts from the latest podcast and suggest YouTube Shorts titles and descriptions.✓ Скопировано

Auto-caption each Short for IG/TikTok/Threads

For each rendered Short, generate posting captions for Instagram Reels and TikTok.✓ Скопировано

Инструменты

Что предоставляет этот MCP

ИнструментВходные данныеКогда вызыватьСтоимость
transcribe-and-score audio/video path First step in any pipeline Whisper / scoring compute
boundary-snap segment timestamps + waveform After scoring audio analysis compute
remotion-render segments + captions + style Final step Remotion render time
cursor-overlay screen-capture + cursor events For tutorials or software walkthroughs 0

Стоимость и лимиты

Во что обходится

Квота API
none beyond whisper/LLM provider
Токенов на вызов
~10–30k tokens per long-form source
Деньги
free at the skill level; rendering uses your CPU/GPU
Совет
Score in one pass, then batch-render overnight to avoid UI blocking

Безопасность

Права, секреты, радиус поражения

Хранение учётных данных: none
Исходящий трафик: none — local rendering

Устранение неполадок

Частые ошибки и исправления

Remotion render fails

Check Node version (20+), ensure the Remotion project compiles: npx remotion render.

Проверить: npx remotion --version
FFmpeg: codec not found

Install a full FFmpeg build: brew install ffmpeg; confirm libx264.

Проверить: ffmpeg -codecs | grep 264
Captions off by ~200ms

Re-run transcription with word timestamps enabled.

Альтернативы

claude-shorts в сравнении

АльтернативаКогда использоватьКомпромисс
claude-youtube-skillYou need YouTube strategy, not automated renderingStrategy vs pipeline

Ещё

Ресурсы

📖 Читать официальный README на GitHub

🐙 Открытые задачи

🔍 Все 400+ MCP-серверов и Skills