Install
openclaw skills install clawlink-youtubeManage YouTube channels, videos, comments, playlists, and creator workflows via the YouTube Data API v3. Use this skill when users want to inspect channel analytics, manage video metadata, moderate comments, or automate publishing workflows.
openclaw skills install clawlink-youtubeAccess YouTube via the YouTube Data API v3 with managed OAuth authentication. Inspect channels, videos, comments, playlists, and manage creator workflows from chat.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure YouTube API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect YouTube |
|---|---|---|
![]() | ![]() | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect YouTube |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ YouTube Data │
│ (User Chat) │ │ (OAuth) │ │ API v3 │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect YouTube │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ YouTube │
│ File │ │ Auth │ │ Console │
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for YouTube again."
# List connected integrations
clawlink_list_integrations
# List YouTube tools
clawlink_list_tools --integration youtube
# Search for a specific tool
clawlink_search_tools --query "channel" --integration youtube
All YouTube tool calls are authenticated automatically by ClawLink using the user's connected Google/YouTube account.
No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every YouTube API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for youtube in the list.
clawlink_list_tools --integration youtube
Response: Returns the live tool catalog for YouTube.
If YouTube tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration youtubeclawlink_list_integrations to confirm YouTube is connected.clawlink_list_tools --integration youtube to see the live catalog.clawlink_search_tools with a short query and integration youtube.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → search → describe → call │
│ │
│ Example: List videos → Get details → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → get → describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute update │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.Tools are available dynamically from the live ClawLink catalog. Call clawlink_list_tools --integration youtube to see the full list.
| Category | Description | Mode |
|---|---|---|
| Channels | Inspect channel metadata, settings, and branding | Read |
| Videos | List, get, search, and manage video metadata | Read/Write |
| Playlists | Manage playlists and playlist items | Read/Write |
| Comments | Read and moderate comments | Read/Write |
| Subscriptions | Manage channel subscriptions | Read/Write |
| Analytics | Retrieve channel and video insights | Read |
clawlink_call_tool --tool "youtube_list_videos" \
--params '{
"channel_id": "YOUR_CHANNEL_ID",
"max_results": 10
}'
clawlink_call_tool --tool "youtube_get_video" \
--params '{
"video_id": "YOUR_VIDEO_ID"
}'
clawlink_call_tool --tool "youtube_search_videos" \
--params '{
"query": "search term",
"max_results": 10
}'
| Status / Error | Meaning |
|---|---|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration youtube. |
| Missing connection | YouTube is not connected. Direct the user to https://claw-link.dev/dashboard?add=youtube. |
notFound | Resource (video, channel, playlist) does not exist. Check the ID. |
forbidden | No permission to access this resource. Verify account access. |
| Quota exceeded | API quota limit reached. Wait or reduce request frequency. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
openclaw plugins list
/new as a standalone message to reload the catalog.openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
/new again and retry.youtube.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
