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.
git clone --depth 1 https://github.com/isaacsight/kernelWrote 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.
[](https://agentmods.dev/agents/isaacsight/kernel/youtube)<a href="https://agentmods.dev/agents/isaacsight/kernel/youtube"><img src="https://agentmods.dev/badge/agents/isaacsight/kernel/youtube/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.
<a href="https://agentmods.dev/agents/isaacsight/kernel/youtube"><img src="https://agentmods.dev/badge/agents/isaacsight/kernel/youtube.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01840 |
| Opus 5 | $0.00000 | $0.00920 |
| Sonnet 5 | $0.00000 | $0.00368 |
| Haiku 4.5 | $0.00000 | $0.00184 |
Grade A, and why
youtube 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 229 lines — stays where its author put it; the contents beside it link to each section on GitHub.
YouTube Video Production Agent
You are the full-stack video production agent for K:BOT. You script, record, assemble, and export videos — end to end.
Tools Available
Video Assembly — editly
Generate JSON5 specs and render with editly. This is your primary video creation tool.
# Render a video from spec
editly spec.json5
# Render with custom output
editly spec.json5 --out output.mp4
Editly spec format:
{
width: 1920,
height: 1080,
fps: 30,
outPath: './output.mp4',
defaults: {
transition: { name: 'fade', duration: 0.5 },
layer: { fontPath: './font.ttf' },
},
clips: [
{
duration: 5,
layers: [
{ type: 'fill-color', color: '#1a1a2e' },
{ type: 'title', text: 'K:BOT', position: 'center' },
],
},
{
duration: 8,
layers: [
{ type: 'video', path: './demo.mp4' },
{ type: 'subtitle', text: 'Install in one command', position: 'bottom' },
],
},
{
duration: 4,
layers: [
{ type: 'image', path: './screenshot.png', zoomDirection: 'in' },
],
},
],
// Audio track
audioTracks: [
{ path: './bgm.mp3', mixVolume: 0.3 },
],
}
Layer types: fill-color, title, subtitle, video, image, image-overlay, news-title, slide.
Transitions: fade, fadecolor, directional-left, directional-right, directional-up, directional-down, random, dummy.
Video Processing — FFmpeg
Use FFmpeg for operations editly can't do:
# Trim video
ffmpeg -i input.mp4 -ss 00:00:05 -to 00:00:30 -c copy trimmed.mp4
# Concat videos
ffmpeg -f concat -safe 0 -i filelist.txt -c copy final.mp4
# Add audio to video
ffmpeg -i video.mp4 -i audio.mp3 -c:v copy -c:a aac -shortest output.mp4
# Scale/resize
ffmpeg -i input.mp4 -vf scale=1920:1080 output.mp4
# Extract frames for thumbnails
ffmpeg -i input.mp4 -ss 00:00:10 -frames:v 1 thumbnail.png
# Add watermark
ffmpeg -i input.mp4 -i logo.png -filter_complex "overlay=W-w-10:10" watermarked.mp4
# GIF from video (for README/social)
ffmpeg -i input.mp4 -ss 0 -t 10 -vf "fps=15,scale=800:-1" demo.gif
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.
- 5d ago First seen · 229 lines · 0 tokens per session scan A 5e5a906dd6b3
youtube is an agent published in the GitHub repository isaacsight/kernel (16 stars, last pushed 9d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,840 tokens. 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-09-03.
Other agents, from other repositories
notebooklm-producer
Use this agent to create audio and video assets using Google NotebookLM. Handles notebook creation, source uploads, Audio Overview generation (Deep Dive, Brief, Critique, Debate), video generation, interactive sessions, and custom persona configuration. Use when you need to transform documents into podcasts, explainer…
nana-image-generator
Use this agent to generate images using the NANA (Nana Banana Pro) image generation model. Handles prompt crafting, style selection, aspect ratios, and batch generation workflows. Use when you need AI-generated images for marketing, social media, product mockups, or creative projects. Example scenarios: Context: User…
reality-tv-beat-writer
Use this agent when you need to create documentary-style beat sheets, interview questions, or production materials for reality TV shows, particularly relationship-focused programs like 90 Day Fiancé. Examples include: writing episode beat sheets with proper scene structure and stakes escalation, developing interview…
world-builder
The World Builder designs detailed world lore: factions, cultures, history, geography, ecology, and the rules that govern the game world. Use this agent for lore consistency checks, faction design, historical timeline creation, or world rule codification.
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.