clawbus-youtube-unified-api

AdvisoryAudited by Static analysis on May 8, 2026.

Overview

No suspicious patterns detected.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

An agent with the API key could delete videos, upload/publish content, update resources, or perform moderation actions if it chooses the wrong endpoint or misinterprets a request.

Why it was flagged

The reference docs expose destructive and public-content-changing YouTube operations. The skill does not document confirmation gates, endpoint allowlists, or rollback guidance for these high-impact actions.

Skill content
DELETE /youtube_api/youtube/v3/videos ... Deletes a resource ... POST /youtube_api/upload/youtube/v3/videos ... [Media upload] Inserts a new resource.
Recommendation

Only use this with explicit user confirmation for every write/delete/moderation action, and prefer read-only or narrowly scoped credentials where possible.

What this means

Sharing the key may allow the proxy-backed workflow to access or change YouTube account data beyond a single read-only request.

Why it was flagged

The user-provided key delegates YouTube OAuth-backed account access to the hosted proxy. The artifacts do not clearly state OAuth scopes, revocation expectations, or boundaries for private/account-mutating operations.

Skill content
Every request **must** include the `X-API-KEY` header with your **Mybrandmetrics API-KEY**... The proxy exchanges this key for a YouTube OAuth token internally.
Recommendation

Verify the proxy provider, understand the key’s scopes and revocation process, and avoid granting write-capable access unless needed.

What this means

Private channel data, analytics, reporting results, and account actions may be visible to or mediated by the proxy service.

Why it was flagged

All YouTube API calls, credentials, request parameters, and returned data pass through the hosted proxy. This is disclosed and purpose-aligned, but it is a sensitive data boundary users should understand.

Skill content
Call hosted routes: `https://mcp.imagineapp.co/youtube_api/...` - Required header: `X-API-KEY` - Do not provide your own YouTube bearer token; proxy handles token exchange.
Recommendation

Use the skill only if you trust the hosted proxy and are comfortable routing YouTube account data through it.