skills/video-summarize/SKILL.md
Ingest a YouTube URL or local video via steipete's `summarize` CLI — returns transcript (with timestamps), scene-detected slides (PNG + optional OCR), and an LLM narrative summary with section headings. Generic sibling to llm-wiki/ingest-youtube and llm-wiki/ingest-video (those persist to a vault; this one just produces artefacts and leaves placement to the caller).
npx skillsauth add RonanCodes/ronan-skills video-summarizeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Thin wrapper around summarize that standardises where the outputs go so callers (like an ingest flow or a research workflow) can consume them.
For a single input (YouTube URL or local video file), this skill produces:
<out>/<slug>-transcript.md — full transcript with timestamps, via summarize --extract --timestamps<out>/<slug>-summary.md — narrative summary with section headings, via summarize --slides --timestamps --length <...><out>/slides/*.png — scene-detected slides, each filename encoding its timestamp (e.g. slide_0003_96.07s.png)<out>/slides/slides.json — machine-readable slide manifest (timestamps, paths, OCR text if enabled)<out>/<slug>-summarize-log.txt — verbose log from the run (provider used, token counts, cost estimate)/ro:video-summarize https://www.youtube.com/watch?v=XXXX # defaults: xxl summary, 6 slides
/ro:video-summarize https://www.youtube.com/watch?v=XXXX --out ./my-research # custom output dir
/ro:video-summarize /path/to/meeting.mp4 --slides-max 20 --ocr # local file, more slides, run OCR
/ro:video-summarize https://youtu.be/XXXX --length long --model openai/gpt-4.1 # different length + model
/ro:video-summarize https://youtu.be/XXXX --skip-summary # transcript + slides only, no LLM cost
summarize — brew install summarizeffmpeg, yt-dlp, tesseract — pulled in automatically by the summarize formulaOPENAI_API_KEY, ANTHROPIC_API_KEY, GEMINI_API_KEY, XAI_API_KEY (or others summarize supports) must be available in the environment. Keys typically live in ~/.claude/.env (see the user memory on this).which summarize >/dev/null 2>&1 || {
echo "Installing summarize..." >&2
brew install summarize
}
Source API keys from ~/.claude/.env if present:
set -a && source "$(ro context env)" && set +a
unset GITHUB_TOKEN GH_TOKEN # important — see feedback_github_token_env memory
Derive a kebab-case slug from the video:
yt-dlp --get-title) truncated to ~50 charsCreate:
OUT="${OUT_DIR:-./video-output}"
mkdir -p "$OUT/slides"
summarize "$INPUT" \
--extract --timestamps \
> "$OUT/$SLUG-transcript.md"
summarize "$INPUT" \
--slides \
--slides-dir "$OUT/slides" \
--slides-max "${SLIDES_MAX:-6}" \
${OCR:+--slides-ocr} \
--timestamps \
--length "${LENGTH:-xxl}" \
${MODEL:+--model "$MODEL"} \
--verbose \
> "$OUT/$SLUG-summary.md" \
2> "$OUT/$SLUG-summarize-log.txt"
Skip this step entirely if --skip-summary.
Print to the caller:
... · $X.XXXX · <model> · ...)# Video summarize: <title> (<duration>)
Transcript: <abs path>
Summary: <abs path>
Slides: <N> slides in <abs path>/slides/
Log: <abs path>
Cost: $<X.XXXX> via <model>
~/.summarize/cache.sqlite, so re-running is nearly instant and free.--slides-max to 3 or use --skip-summary and lean on the transcript.llm-wiki/.claude/skills/ingest-youtube — llm-wiki's transcript-only YouTube handler (no slides). Prefer /ro:video-summarize when you need slides/screenshots.llm-wiki/.claude/skills/ingest-video — llm-wiki's local-video handler (ffmpeg keyframes + whisper transcript, no LLM summary).steipete/summarize — the underlying CLI. Source cloned at ~/Dev/.reference/steipete-summarize./ro:trend-scan — upstream: use to find videos worth deep-diving.testing
--- name: linear-pipeline description: The Fable orchestrator for a single dispatched Linear ticket. Holds almost no context itself; it receives `--issue <ID> --detached`, decides the stage sequence, and fans out a sub-agent per stage, passing forward only each stage's artifact (never re-derived, never inlined into its own context). Step zero, before any planning or stage routing, is a boundary triage against `canon/security-boundary.md` (#199): a match tags Ronan Connolly and stops the run, no
development
--- name: in-your-face description: Capture a chat-only answer into a durable artifact (markdown + HTML, PDF when cheap) and launch it automatically so the user cannot miss it. Use when user says "in your face", "don't let me lose this", "save that answer", "make that durable", or right after answering a substantive side question (a recipe, comparison, how-to, or generated prompt) that would otherwise die with the context. category: workflow argument-hint: [--no-open] [--vault <short>] [hint of
tools
One-shot headless OpenAI Codex CLI calls for background/admin AI tasks — summaries, classification, extraction, admin glue. The default engine for anything that runs AI constantly in the background (daemon-driven, per-event), because it bills the flat ChatGPT subscription instead of Claude usage or per-token API spend, and it keeps working while Claude is rate-limited. NEVER for coding — coding stays Claude. Use when a skill or daemon needs a cheap always-on AI call, when the user says "use codex", "ask codex", "codex as backup", or when building a background summarizer/classifier into a listener or loop. Reads auth from ~/.codex/auth.json (ChatGPT account, no API key).
research
Turn a warranty rejection, repair quote, or RMA email into a cited decision brief — legal read (NL/EU consumer law), is the part user-serviceable, live part and new-unit prices, repair-vs-DIY-vs-new economics, before-you-send-it checklist, deadlines. Use when the user pastes or screenshots a repair quote, warranty rejection, "not covered" email, onderzoekskosten fee, or asks "should I repair or replace this".