ワンクリックで
youtube-api
Access YouTube Data API for search, channel insights, and video stats; use yt-dlp for approved downloads.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Access YouTube Data API for search, channel insights, and video stats; use yt-dlp for approved downloads.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Maintain Rick's control plane: approvals, dependency gaps, scoreboard, and morning briefs. Use when Rick needs to rank work, ask the founder for something, summarize operating status, or keep the CEO loop coherent.
Production hardening patterns for AI agents running on OpenClaw. Adds destructive command safety (trash > rm), session rotation protocol, context window discipline, tool pre-flight checks, heartbeat batching with state-file gating, and memory trimming workflow. Battle-tested by Rick (meetrick.ai) over 30+ days of autonomous production operation. Use when setting up a new agent for production, auditing an existing deployment, or after experiencing context degradation, token waste, or operational drift.
Diagnose stuck agents, restart failed processes, manage tmux sessions, run health checks, and resolve common operational failures.
Connect to 100+ APIs (Google Workspace, Microsoft 365, GitHub, Notion, Slack, Airtable, HubSpot, etc.) with managed OAuth. Use this skill when users want to interact with external services. Security: The MATON_API_KEY authenticates with Maton.ai but grants NO access to third-party services by itself. Each service requires explicit OAuth authorization by the user through Maton's connect flow. Access is strictly scoped to connections the user has authorized. Provided by Maton (https://maton.ai).
Run long-lived AI coding agents (Codex, Claude Code) in persistent tmux sessions with Ralph retry loops and completion hooks. Use when running multi-step coding tasks, PRD-based workflows, or any programming agent that needs to survive restarts, retry on failure, and notify on completion.
Run long-lived AI coding agents (Codex CLI, Claude Code, Ralph loops) in persistent tmux sessions with completion hooks and automatic monitoring. Use when launching coding agents for multi-step tasks, managing background programming sessions, running Ralph loops with PRD validation, or needing coding work that survives process restarts.
| name | youtube-api |
| description | Access YouTube Data API for search, channel insights, and video stats; use yt-dlp for approved downloads. |
Use this skill for YouTube discovery, analytics lookups, or media retrieval.
~/.config/youtube/api_key or exported as YOUTUBE_API_KEYjqyt-dlpmkdir -p ~/.config/youtube
printf '%s\n' 'YOUR_YOUTUBE_API_KEY' > ~/.config/youtube/api_key
chmod 600 ~/.config/youtube/api_key
YT_KEY="${YOUTUBE_API_KEY:-$(cat ~/.config/youtube/api_key)}"
BASE="https://www.googleapis.com/youtube/v3"
curl -s "$BASE/search?part=snippet&type=video&maxResults=10&q=autonomous+agents&key=$YT_KEY" | jq
curl -s "$BASE/channels?part=snippet,statistics&id=<CHANNEL_ID>&key=$YT_KEY" | jq
curl -s "$BASE/videos?part=snippet,statistics,contentDetails&id=<VIDEO_ID>&key=$YT_KEY" | jq
Use downloads only when policy and rights allow.
yt-dlp --skip-download --print "%(_type)s | %(id)s | %(title)s" "https://www.youtube.com/watch?v=<VIDEO_ID>"
429 or 5xx