Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计提醒

mk-youtube-get-channel-latestmk youtube 获取最新频道

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mk-youtube-get-channel-latest(mk youtube 获取最新频道)
来源仓库:https://github.com/kouko/monkey-knowledge-youtube-skills
仓库路径:skills/mk-youtube-get-channel-latest
安装命令:
npx skills add https://github.com/kouko/monkey-knowledge-youtube-skills --skill mk-youtube-get-channel-latest
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/kouko/monkey-knowledge-youtube-skills --skill mk-youtube-get-channel-latest

简介

mk-youtube-get-channel-latest 获取频道最新上传的视频列表。

  • 适用于内容订阅与竞品监测等运营场景。
  • 返回结果包含标题、时长与发布时间元数据。
  • 频繁请求可能被限流需添加适当延迟机制。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

YouTube Channel Latest Content

Get the latest content from a YouTube channel with type filtering.

Quick Start

/mk-youtube-get-channel-latest <channel> [limit] [type]

Parameters

ParameterRequiredDefaultDescription
channelYes-Channel URL, @handle, username, or video URL
limitNo10Number of items (1-50)
typeNoallContent type filter

Type Options

TypeTab URLDescription
allAll tabsFetches from /videos, /shorts, /streams, /podcasts and merges by date
videos/videosRegular videos
live/streamsLivestreams (current, past, upcoming)
shorts/shortsYouTube Shorts
podcasts/podcastsPodcast episodes

Examples

  • /mk-youtube-get-channel-latest @GoogleDevelopers - Latest 10 items from channel
  • /mk-youtube-get-channel-latest @MKBHD 5 videos - Latest 5 regular videos
  • /mk-youtube-get-channel-latest @NASA 10 live - Latest 10 livestreams
  • /mk-youtube-get-channel-latest @shorts 20 shorts - Latest 20 shorts
  • /mk-youtube-get-channel-latest https://www.youtube.com/@TED 3 podcasts - Latest 3 podcast episodes
  • /mk-youtube-get-channel-latest https://www.youtube.com/watch?v=xxx 5 - Get latest from video's channel
  • /mk-youtube-get-channel-latest https://youtu.be/xxx 5 shorts - Get shorts from video's channel

How it Works

  1. Parse channel parameter (URL, @handle, username, or video URL)
  2. If video URL: extract channel URL using yt-dlp
  3. Normalize to channel base URL
  4. Execute: {baseDir}/scripts/channel-latest.sh "<channel>" <limit> <type>
  5. For specific types: fetch from corresponding tab URL
  6. For all type: fetch from all 4 tabs, deduplicate, sort by upload_date, return top N
  7. Return JSON array of content items

Output Format

Success:

[
  {
    "video_id": "dQw4w9WgXcQ",
    "title": "Video Title",
    "url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
    "channel": "Rick Astley",
    "channel_url": "https://www.youtube.com/channel/UC...",
    "duration_string": "3:32",
    "view_count": 1500000000,
    "upload_date": "20091025",
    "live_status": "not_live",
    "description": "First 200 chars of description..."
  }
]

Error:

{
  "status": "error",
  "message": "No content found for this channel"
}

Output Fields

FieldTypeDescription
video_idstringYouTube video ID
titlestringVideo title
urlstringFull YouTube URL
channelstringChannel name
channel_urlstringChannel URL
duration_stringstringHuman-readable duration (e.g., "10:23")
view_countnumberView count (may be null for upcoming)
upload_datestringUpload date in YYYYMMDD format
live_statusstringStatus: not_live, is_live, was_live, is_upcoming
descriptionstringFirst 200 characters of description

Centralized Metadata Store

This skill automatically saves partial metadata for each video to /tmp/monkey_knowledge/youtube/meta/{YYYYMMDD}__{video_id}.meta.json. This metadata can be accessed by downstream skills (caption, audio, transcribe, summary).

Note: This is partial metadata (marked partial: true). Running /mk-youtube-get-info on a specific video will update it with complete metadata.

Notes

  • Auto-downloads yt-dlp and jq on first run
  • Supports video URL input: automatically extracts channel and fetches latest content
  • Uses YouTube's official tab classification for each content type
  • all type fetches from 4 tabs, deduplicates, and sorts by upload date
  • Live status values: not_live, is_live, was_live, is_upcoming
  • Podcasts require the channel to have a podcasts tab enabled
  • For channels without specific content types, returns empty array

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.39%
按下载量换算26

Claude

30.83%
按下载量换算23

Cursor

16.68%
按下载量换算12

Gemini CLI

9.61%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills