一键导入
youtube
Search YouTube videos via Invidious. Auto-triggers when user asks to find, search for, or look up videos.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search YouTube videos via Invidious. Auto-triggers when user asks to find, search for, or look up videos.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | youtube |
| description | Search YouTube videos via Invidious. Auto-triggers when user asks to find, search for, or look up videos. |
Search YouTube videos using the Invidious API at https://yt.tarka.dev.
Auto-trigger this skill when the user:
Use WebFetch to query the Invidious API:
https://yt.tarka.dev/api/v1/search?q=<query>&type=video
Format each video as a lazy-loaded embed. Only the thumbnail loads initially; clicking plays the video via iframe.
<div class="video-embed">
<div
class="video-embed__player"
onclick="this.innerHTML='<iframe src=\'https://yt.tarka.dev/embed/{videoId}?autoplay=1\' allowfullscreen></iframe>'"
>
<img src="{thumbnail_url}" alt="{title}" />
<div class="video-embed__play"></div>
<span class="video-embed__duration">{duration}</span>
</div>
<div class="video-embed__info">
<a
href="https://yt.tarka.dev/watch?v={videoId}"
target="_blank"
class="video-embed__title"
>{title}</a
>
<div class="video-embed__meta">
<span class="video-embed__channel">{author}</span>
<span class="video-embed__stats">{viewCountText} · {publishedText}</span>
</div>
</div>
</div>
Convert lengthSeconds to human-readable format:
MM:SS (e.g., 12:34)H:MM:SS (e.g., 1:23:45)Use the medium quality thumbnail: https://yt.tarka.dev/vi/{videoId}/mqdefault.jpg
When user asks "find me a video about Clojure macros":
1:11:23
Show 3-5 results by default. Click thumbnail to play inline, click title to open in new tab.
https://yt.tarka.dev (user's Invidious instance)