skills/youtube-discovery/SKILL.md
YouTube Discovery: Search and inspect public YouTube data. Use when an agent needs youtube discovery, search youtube videos by topic keyword and advanced filters, discover trending videos by country and category, vet channels by subscriber and view statistics, research competitor content and posting cadence, get channel details, channel id, channel handle through AgentPMT-hosted remote tool calls. Discovery terms: youtube discovery, search youtube videos by topic keyword and advanced filters.
npx skillsauth add AgentPMT/agent-skills youtube-discoveryInstall 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.
Last updated: 2026-07-04.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
Tap into the full world of public YouTube data straight from your agent. Search billions of videos, channels, and playlists by topic, keyword, channel, date, language, region, livestream status, captions, duration, and license, then pull rich metadata and statistics like view counts, like counts, comment counts, subscriber counts, durations, tags, and topics. Track trending videos by country and category, browse the contents of any public playlist, and read public comment threads to gauge audience sentiment. Ideal for content research, competitive analysis, SEO and keyword discovery, influencer and channel vetting, brand and media monitoring, and trend spotting.
Search and inspect public YouTube data: videos, channels, playlists, comment threads, categories, languages, and regions. Returns public metadata only (no media downloads, no private owner data).
searchFind videos, channels, and/or playlists. Provide at least one selector: query, channel_id, topic_id, video_category_id, location (with location_radius), or event_type.
Common inputs:
resource_types: array of video / channel / playlist (default ["video"])max_results: 1-50 (default 10)order: relevance | date | rating | viewCount | title | videoCountpage_token: cursor from a prior pagepublished_after / published_before: RFC3339, e.g. 2026-01-01T00:00:00Zregion_code (ISO 3166-1 alpha-2), relevance_language (ISO 639-1), safe_search (none|moderate|strict)include_video_details: true to enrich video results with stats, duration, license, captions, tags, and topicsVideo-only filters (require resource_types:["video"]): event_type, location + location_radius, video_caption, video_category_id, video_definition, video_dimension, video_duration, video_embeddable, video_license, video_paid_product_placement, video_syndicated, video_type. channel_type requires resource_types:["channel"].
get_video_detailsRequired: video_ids (array, 1-50) of 11-character video IDs.
get_trending_videosOptional: region_code, video_category_id, max_results (1-50), page_token, hl.
get_channel_detailsExactly one of: channel_id, channel_handle (e.g. @name), channel_username (legacy).
list_channel_playlistsRequired: channel_id. Optional: max_results (1-50), page_token, hl.
list_playlist_itemsRequired: playlist_id. Optional: max_results (1-50), page_token.
list_public_commentsExactly one of: video_id, channel_id, thread_ids (array). Optional: include_replies, text_format (plainText|html), comment_order (time|relevance), search_terms, max_results (1-100), page_token.
list_video_categoriesExactly one of: region_code, category_ids (array). Optional: hl.
list_supported_languages / list_supported_regionsOptional: hl.
{"action":"search","query":"home espresso","resource_types":["video"],"order":"viewCount","max_results":5,"include_video_details":true}
{"action":"get_video_details","video_ids":["dQw4w9WgXcQ","9bZkp7q19f0"]}
{"action":"get_trending_videos","region_code":"US","video_category_id":"10","max_results":10}
{"action":"get_channel_details","channel_handle":"@jameshoffmann"}
{"action":"list_public_comments","video_id":"dQw4w9WgXcQ","comment_order":"relevance","max_results":20}
Responses include next_page_token / prev_page_token when more pages exist. Pass it back as page_token. One page is fetched per call.
Each action returns its collection (results, videos, channels, playlists, playlist_items, comment_threads, categories, languages, or regions) plus page_info. Items use snake_case fields and include a ready-to-open youtube_url. Video items expose view_count, like_count, comment_count, duration, tags, category_id, topic_categories, caption availability, and live details; channels expose subscriber_count, video_count, view_count, and uploads_playlist_id (pass it to list_playlist_items to page a channel's full upload history).
Public metadata only. Cannot download audio, video, captions, or thumbnails; cannot read private channel-owner analytics; cannot create, edit, delete, upload, or moderate content.
YouTube Discovery on AgentPMT.get_channel_details, get_trending_videos, get_video_details, list_channel_playlists, list_playlist_items, list_public_comments, list_supported_languages, list_supported_regions, list_video_categories, search.No categories or industry tags are published for this tool.
Complete generated action schema: ./schema.md.
Supported action count: 10.
x402 action routes are enabled and listed in ./schema.md.
get_channel_details (action slug: get-channel-details): Retrieve one public channel by channel id, handle, or legacy username. Price: 5 credits. Parameters: channel_handle, channel_id, channel_username.get_trending_videos (action slug: get-trending-videos): Retrieve public trending videos by region or category. Price: 5 credits. Parameters: hl, max_results, page_token, region_code, video_category_id.get_video_details (action slug: get-video-details): Retrieve public metadata and statistics for up to 50 videos. Price: 5 credits. Parameters: video_ids.list_channel_playlists (action slug: list-channel-playlists): List public playlists for a channel. Price: 5 credits. Parameters: channel_id, hl, max_results, page_token.list_playlist_items (action slug: list-playlist-items): List public items in a playlist. Price: 5 credits. Parameters: max_results, page_token, playlist_id.list_public_comments (action slug: list-public-comments): List public comment threads for a video, channel, or explicit thread ids. Price: 5 credits. Parameters: channel_id, comment_order, include_replies, max_results, page_token, search_terms, text_format, thread_ids, plus 1 more.list_supported_languages (action slug: list-supported-languages): List supported YouTube interface languages. Price: 5 credits. Parameters: hl.list_supported_regions (action slug: list-supported-regions): List supported YouTube regions. Price: 5 credits. Parameters: hl.list_video_categories (action slug: list-video-categories): List public YouTube video categories by region or explicit ids. Price: 5 credits. Parameters: category_ids, hl, region_code.search (action slug: search): Search public YouTube videos, channels, or playlists with filters and pagination. Price: 5 credits. Parameters: channel_id, channel_type, event_type, include_video_details, location, location_radius, max_results, order, plus 19 more.Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "youtube-discovery".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "youtube-discovery", or call this product with action: "get_instructions" when the product tool is already selected.MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "youtube-discovery"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "youtube-discovery"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "youtube-discovery"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "youtube-discovery"
}
}
Product slug: youtube-discovery
Marketplace page: https://www.agentpmt.com/marketplace/youtube-discovery
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.../agentpmt-no-account-agentaddress-x402 for the canonical payment and wallet setup instructions.../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
openclaw skills install what-is-agentpmtnpx skills add AgentPMT/agent-skills --skill what-is-agentpmtopenclaw skills install agentpmt-account-mcp-rest-api-setupnpx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setupopenclaw skills install agentpmt-no-account-agentaddress-x402npx skills add AgentPMT/agent-skills --skill agentpmt-no-account-agentaddress-x402skills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
npx skills add AgentPMT/agent-skills --skill agentpmt-no-account-agentaddress-x402
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "YouTube-Discovery",
"arguments": {
"action": "get_channel_details",
"channel_handle": "example channel handle",
"channel_id": "example channel id",
"channel_username": "example channel username"
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "youtube-discovery",
"parameters": {
"action": "get_channel_details",
"channel_handle": "example channel handle",
"channel_id": "example channel id",
"channel_username": "example channel username"
}
}
Use the setup skill for the account connection details before making REST calls.
passed or success-style boolean, use it as the workflow gate.get_schema or get_instructions before retrying.get_channel_details fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.what-is-agentpmt, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: npx skills add AgentPMT/agent-skills --skill what-is-agentpmt)agentpmt-account-mcp-rest-api-setup, page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup)agentpmt-no-account-agentaddress-x402, page: https://clawhub.ai/agentpmt/agentpmt-no-account-agentaddress-x402; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-no-account-agentaddress-x402)tools
Plaud Transcripts Corrected With Your Own Terminology Glossary: Fixes the words your transcription keeps getting wrong, by giving the pipeline your vocabulary instead of hoping a bigger model guesses right. Every speech model mangles terms it has never seen: cell line and reagent names, drug and device names, case and matter numbers, part numbers, local spelling and number conventions, team and client names. Swapping to a different model does not fix this, because none of them have your terms e.
tools
Plaud Spoken Field Notes to a Structured Sheet: Turns a spoken site visit into a filled-in spreadsheet row, so measurements and specs never get typed up twice. Built for anyone who dictates structured details on the job rather than writing them down: window and flooring measurements, equipment specs, inspection findings, punch lists, service call notes. Say the details out loud in the same order each visit (client, room, width, drop, colour, notes) and the workflow reads each new Plaud recordin.
development
Plaud Recordings to Google Calendar Events: Puts the meetings you agree to out loud straight onto your Google Calendar, without Zapier in the middle. Plaud's own app has no Calendar integration, so this closes that gap directly: each new recording is scanned, the transcript pulled, and any genuine scheduling commitment spoken in it ("let's do Tuesday at 3", "I'll come back out Thursday morning") is extracted with the relative date resolved against the recording's own date and your timezone. Eac.
development
One Plaud Recording, Several Differently Formatted Summaries: Gets you past the one-template-per-recording ceiling. The Plaud app applies a single AutoFlow template to a recording, so if you want a short recap for yourself, a decisions-only version for the people who missed it, and a clean action list for your task manager, you are re-running or rewriting by hand. This workflow reads the transcript once and produces every format you have defined in a single pass: you list the output formats you.