/ Diretório / Playground / claude-shorts
● Comunidade AgriciDaniel ⚡ Instantâneo

claude-shorts

por 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.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

claude-shorts-skill.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

~/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
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.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 usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

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
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "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
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

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

O Continue usa um array de objetos de servidor em vez de um 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"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

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

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: claude-shorts

How to turn a 90-minute podcast into 10 Shorts

👤 Podcasters and content creators ⏱ ~90 min advanced

Quando usar: You published a long episode and want a week of Shorts from it with minimal effort.

Pré-requisitos
  • 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
Fluxo
  1. Transcribe and score
    Process podcast_ep42.mp3 — transcribe and score candidate Short segments.✓ Copiado
    → 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.✓ Copiado
    → 10 segments with cleaned-up start/end
  3. Render Shorts
    Render vertical 9:16 Shorts with animated captions to ./shorts/.✓ Copiado
    → MP4 files ready to upload

Resultado: A week's worth of Shorts generated in an afternoon.

Armadilhas
  • 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
Combine com: filesystem

Build a highlight reel from a Twitch / YouTube stream

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

Quando usar: You have a long recording and need a sampler to promote it.

Fluxo
  1. Score peaks
    Find the 15 most engaging moments based on transcript + audio energy.✓ Copiado
    → Ranked peaks with timestamps and reasons
  2. Assemble the reel
    Assemble a single 60-second highlight reel with smooth cuts.✓ Copiado
    → One MP4 with good pacing

Resultado: A concise reel that represents the best of the session.

Armadilhas
  • Reel has no narrative — Ask Claude to order clips for arc, not just score

Combinações

Combine com outros MCPs para 10× de alavancagem

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.✓ Copiado

Auto-caption each Short for IG/TikTok/Threads

For each rendered Short, generate posting captions for Instagram Reels and TikTok.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
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

Custo e limites

O que custa rodar

Cota de API
none beyond whisper/LLM provider
Tokens por chamada
~10–30k tokens per long-form source
Monetário
free at the skill level; rendering uses your CPU/GPU
Dica
Score in one pass, then batch-render overnight to avoid UI blocking

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: none
Saída de dados: none — local rendering

Solução de problemas

Erros comuns e correções

Remotion render fails

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

Verificar: npx remotion --version
FFmpeg: codec not found

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

Verificar: ffmpeg -codecs | grep 264
Captions off by ~200ms

Re-run transcription with word timestamps enabled.

Alternativas

claude-shorts vs. outros

AlternativaQuando usarTroca
claude-youtube-skillYou need YouTube strategy, not automated renderingStrategy vs pipeline

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills