원클릭으로
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