/ Verzeichnis / Playground / claude-shorts
● Community AgriciDaniel ⚡ Sofort

claude-shorts

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

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

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

Installieren

Wählen Sie Ihren Client

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

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.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 nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "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
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

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

Continue nutzt ein Array von Serverobjekten statt einer 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"
        ]
      }
    }
  }
}

In context_servers hinzufügen. Zed lädt beim Speichern neu.

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

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: claude-shorts

How to turn a 90-minute podcast into 10 Shorts

👤 Podcasters and content creators ⏱ ~90 min advanced

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

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

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

Fallstricke
  • 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
Kombinieren mit: filesystem

Build a highlight reel from a Twitch / YouTube stream

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

Wann einsetzen: You have a long recording and need a sampler to promote it.

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

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

Fallstricke
  • Reel has no narrative — Ask Claude to order clips for arc, not just score
Kombinieren mit: claude-youtube-skill

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

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

Auto-caption each Short for IG/TikTok/Threads

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

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
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

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
none beyond whisper/LLM provider
Tokens pro Aufruf
~10–30k tokens per long-form source
Kosten in €
free at the skill level; rendering uses your CPU/GPU
Tipp
Score in one pass, then batch-render overnight to avoid UI blocking

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: none
Datenabfluss: none — local rendering

Fehlerbehebung

Häufige Fehler und Lösungen

Remotion render fails

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

Prüfen: npx remotion --version
FFmpeg: codec not found

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

Prüfen: ffmpeg -codecs | grep 264
Captions off by ~200ms

Re-run transcription with word timestamps enabled.

Alternativen

claude-shorts vs. andere

AlternativeWann stattdessenKompromiss
claude-youtube-skillYou need YouTube strategy, not automated renderingStrategy vs pipeline

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen