yt

yt is a skill for Claude Code, Codex from dasein108/yt-mem-ai. It costs 87 tokens per session (2,179 once invoked), scanned A, original, MIT.

A command guide for operating a YouTube library through the yt-mem-ai command-line tool. It covers fetching videos, finding uploads, searching stored transcripts, making highlights, and running daily or single-video workflows.

In plain words
What is it for?
It helps ingest videos, discover subscription uploads, fetch pending items, search the library, rate or recommend videos, compile highlights, build supercuts, check status, and run full pipelines.
Why use it?
It provides one documented route for managing YouTube data and avoids manually handling the underlying transcript database or inconsistent configuration.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

Good fit It helps ingest videos, discover subscription uploads, fetch pending items, search the library, rate or recommend videos, compile highlights, build supercuts, check status, and run full pipelines.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dasein108/yt-mem-ai/yt
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dasein108/yt-mem-ai --skill yt
Clone the repo
git clone --depth 1 https://github.com/dasein108/yt-mem-ai

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for yt

README.md
[![agentmods](https://agentmods.dev/badge/skills/dasein108/yt-mem-ai/yt/github.svg)](https://agentmods.dev/skills/dasein108/yt-mem-ai/yt)
Your own site
<a href="https://agentmods.dev/skills/dasein108/yt-mem-ai/yt"><img src="https://agentmods.dev/badge/skills/dasein108/yt-mem-ai/yt/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for yt

Your own site · 80×15
<a href="https://agentmods.dev/skills/dasein108/yt-mem-ai/yt"><img src="https://agentmods.dev/badge/skills/dasein108/yt-mem-ai/yt.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,179 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00087 $0.02179
Opus 5 $0.00044 $0.01090
Sonnet 5 $0.00017 $0.00436
Haiku 4.5 $0.00009 $0.00218

Measured 11d ago against content hash 6914761ba0a7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

yt scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/yt/SKILL.md · 169 lines

How it starts

The opening of the file, as written. The whole thing — 169 lines — stays where its author put it; the contents beside it link to each section on GitHub.

yt — the yt-mem-ai entry point

Single entry point for driving the yt-mem-ai YouTube pipeline CLI. Every data operation goes through the CLI — never touch the LanceDB store directly.

Prereqs

  • Always invoke the CLI as uvx yt-mem-ai <cmd> — zero-install, cached, always latest. Nothing is installed on PATH: the native plugins ship skills only, so do NOT go hunting for a yt-ai binary, a wrapper script, or a venv. (Only inside a source checkout of this repo may you use uv run yt-ai <cmd>.)
  • Always single-quote a video/channel URL — YouTube URLs contain ? and &, which the shell treats as glob and job-control metacharacters, so a bare URL fails (zsh: no matches found). Write uvx yt-mem-ai fetch 'https://www.youtube.com/watch?v=ID', never bare. Same for transcript and channel-list.
  • Settings live in a global config file, not a .env you hand-edit: inspect and change anything with uvx yt-mem-ai config list / uvx yt-mem-ai config set KEY VALUE (see Configure & maintain). Prefer config set over exporting env vars — each uvx run is a fresh process, so an env var only applies to the one command you prefixed it to.
  • Video lifecycle status: discovered → transcribed → summarized (live streams get a terminal stream and skip transcription).
uvx yt-mem-ai <command> [args]

Decide what the user wants, then run

Ingest one video

uvx yt-mem-ai fetch '<url>'        # download audio + transcribe + embed + store
uvx yt-mem-ai transcript '<url>'   # same pipeline (alias intent)

Discover + batch ingest (subscriptions)

uvx yt-mem-ai discover [--after <DATE>] [--deep] [--min-duration <s>] [--json]
uvx yt-mem-ai fetch-pending [--since <DATE>] [--limit <N>]   # ingest 'discovered' videos

Enumerate a channel (does not ingest)

uvx yt-mem-ai channel-list '<url>' [--limit <N>] [--from <DATE>] [--to <DATE>] [--json]
# newest uploads for a channel URL/@handle; feed the URLs to `fetch` to ingest a group.

Read the full file on GitHub · 169 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 169 lines · 87 tokens per session scan A 6914761ba0a7

Subscribe to this mod's changes

yt is a skill published in the GitHub repository dasein108/yt-mem-ai (7 stars, last pushed 18d ago), licensed MIT. It adds 87 tokens to every session and 2,179 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

threejs-interaction

Three.js interaction - raycasting, controls, mouse/touch input, object selection. Use when handling user input, implementing click detection, adding camera controls, or creating interactive 3D experiences.

calesthio/OpenMontage · 44 tokens

threejs-shaders

Three.js shaders - GLSL, ShaderMaterial, uniforms, custom effects. Use when creating custom visual effects, modifying vertices, writing fragment shaders, or extending built-in materials.

calesthio/OpenMontage · 40 tokens

create-video-seedance-2-fal

Generate a single 4-15s vertical video clip with ByteDance Seedance 2.0 reference-to-video via fal.ai. Multi-image reference (avatar + product + setting), native lip-synced VO + ambient audio (generate-audio on by default), internal multi-cut handling within one render. Routes through the GooseWorks FAL proxy (bills…

gooseworks-ai/goose-skills · 117 tokens

demo-builder

Builds personalized demo assets for top prospects using the founder's product API/MCP/SDK. Researches prospect, proposes demo concepts, builds working prototype, tests it, and generates comparison report with live demo link.

gooseworks-ai/goose-skills · 46 tokens

playwright-recording

Record browser interactions as video using Playwright. Use for capturing demo videos, app walkthroughs, and UI flows for Remotion videos. Triggers include recording a demo, capturing browser video, screen recording a website, or creating walkthrough footage.

calesthio/OpenMontage · 53 tokens

seedance-2-5

Generate 4-30 second cinematic video with ByteDance Seedance 2.5 through fal.ai, Volcengine Ark, Runway, or ComfyUI Partner Nodes. Use for long single generations, synchronized audio, and large multimodal reference sets (up to 30 images, 10 videos, and 10 audio clips). Also covers the 2.5 prompt contract: section…

calesthio/OpenMontage · 117 tokens