Install
$ agentstack add skill-jdwit-ytstudio-cli-ytstudio ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
ytstudio
ytstudio is a command-line tool over the official YouTube Data and Analytics APIs. It exists to do at scale what YouTube Studio's web UI makes you click through one item at a time: bulk metadata edits, batch uploads, scripted analytics, comment moderation, live broadcast control, and playlist operations.
This skill teaches you to drive it. It is harness-agnostic: every instruction is a shell command.
Two things to know first
These two rules apply to almost every command and prevent the most common mistakes:
- Ask for JSON. Read commands print a human table by default. Pass
-o json (alias for --output json) to get parseable output. Some commands also support -o csv. The auth/setup commands (init, login, status) have no JSON mode.
- Most mutations are dry-run by default. Commands with
--execute
(videos update/search-replace/upload, livestreams schedule/update, and playlist writes) preview what they would do and change nothing until you re-run the exact command with --execute. Always preview first, show the user the preview when consequential, then re-run with --execute.
Some writes execute immediately because they have no --execute: comment moderation/replies (comments publish, comments reject, comments reply) and livestream transitions (livestreams start, livestreams stop). Treat these as high-risk: confirm intent before running them.
Treat write operations as costly and irreversible-ish: they consume API quota (see [Quota](#quota-awareness)) and act on a real, public channel.
Prerequisites
Install
ytstudio is on PyPI and needs Python 3.12+. Prefer an isolated install:
uv tool install ytstudio-cli # recommended
# or: pipx install ytstudio-cli
# or: pip install --user ytstudio-cli
The CLI installs as ytstudio; yts is a short alias for the same entry point. Verify with ytstudio --version.
One-time OAuth setup
The user brings their own Google OAuth client (a "Desktop app" client created in the Google Cloud Console with the YouTube Data API v3 and YouTube Analytics API enabled). With the downloaded client-secrets JSON:
ytstudio init --client-secrets path/to/client_secret.json
ytstudio login # opens a browser to authorize
ytstudio status # confirms the authenticated channel
On a headless box, use ytstudio login --headless: it prints a URL to open in any browser, then you paste the failed 127.0.0.1 redirect URL back in.
If ytstudio login fails with access_denied:
- Sign in with the Google account that owns the channel.
- If the OAuth app is still in "Testing", add that account under Google Cloud
Console -> APIs & Services -> OAuth consent screen -> Test users.
- Click through the "Google hasn't verified this app" warning via Advanced ->
Continue.
- Approve all requested (read-only) scopes; do not close the tab until it
reports success.
Credentials live owner-only under ~/.config/ytstudio-cli/. This step is one-shot per channel; do not re-run it unless auth is actually broken.
If ytstudio status reports no authenticated channel, stop and ask the user to complete OAuth setup; you cannot do the browser consent for them.
Multiple channels (profiles)
One install can hold several channels, each a named profile. Commands act on the active profile unless overridden:
ytstudio profile list # active profile is marked
ytstudio profile use work # switch active profile
YTSTUDIO_PROFILE=work ytstudio videos list # override for one command (scripting)
Use the YTSTUDIO_PROFILE= env override when scripting so you never mutate the wrong channel by relying on global state.
Command groups
Below is the minimum to operate each area. For the complete flag surface of any command, read [references/reference.md](references/reference.md) on demand rather than guessing - or run ytstudio --help.
videos - the core use case
ytstudio videos list -n 100 -o json # recent uploads, parseable
ytstudio videos list --sort views -n 100 -o json # fetched videos sorted by lifetime views
ytstudio videos list --sort likes -n 100 -o json # fetched videos sorted by lifetime likes
ytstudio videos list --scheduled # only future-dated publishes
ytstudio videos show -o json # full metadata for one video
ytstudio videos categories # category ids assignable on upload
# Single-video edit (dry-run, then --execute)
ytstudio videos update --title "New title"
ytstudio videos update --tags one,two,three --execute
# Bulk search-replace across the channel (dry-run, then --execute)
ytstudio videos search-replace -s "2024" -r "2025" -f title
ytstudio videos search-replace -s 'season \d' -r 'season X' -f title --regex --execute
videos list --sort views|likes sorts the fetched uploads by lifetime Data API statistics, so raise -n when you need broader channel coverage; use analytics query -d video for exact period-specific rankings. videos show -o json returns a flat object with fields such as title, published_at, views, likes, comments, privacy, tags, localizations, and scheduled_publish_at.
search-replace requires -s/--search, -r/--replace, and -f/--field (title or description); --limit caps how many matches it acts on (default 10). Preview the dry-run, confirm the match set is what the user intended, then add --execute.
videos upload - batch upload from YAML sidecars
ytstudio videos upload pairs each video file with a sibling YAML sidecar of the same basename, validates everything, and uploads. Dry-run by default. See [assets/upload-sidecar.example.yaml](assets/upload-sidecar.example.yaml) for the sidecar schema (title, description, privacy, tags, category_id (required), languages, made_for_kids, optional publish_at).
ytstudio videos upload ./outbox # validate + preview
ytstudio videos upload ./outbox --execute --max 3 # upload, capped for quota
Uploads are resumable: after each success the sidecar is patched with video_id and uploaded_at, so re-running only retries sidecars that lack a video_id. Use --max to bound a run because uploads are quota-heavy (~1600 units each).
analytics - reporting (read-only)
ytstudio analytics overview -d 28 -o json # channel overview, last 28 days
ytstudio analytics video -o json # per-video analytics
ytstudio analytics metrics # discoverable metric names
ytstudio analytics dimensions # discoverable dimension names
# Custom query straight against the Analytics API reports.query endpoint:
ytstudio analytics query -m views,likes -d day --days 7 -o json
ytstudio analytics query -m views -d country --sort -views -n 10 -o json
ytstudio analytics query -m views -d video --days 180 --sort -views -n 10 --resolve -o json
ytstudio analytics query -m views -d insightTrafficSourceType -f video== -o json
analytics query needs -m/--metrics; -d/--dimensions, -f/--filter (key==value, repeatable), --sort (prefix - for descending), -n/--limit, and date range (--days or -s/-e start/end) are optional. -d video and -d playlist return IDs; add --resolve to include videoTitle / playlistTitle columns in table, JSON, or CSV output. When unsure which metric or dimension exists, list them first with analytics metrics / analytics dimensions instead of guessing names.
For -d month (and -d week), the CLI snaps -s/-e down to the boundary the YouTube Analytics API requires (first of the month), so --days and arbitrary dates just work. The range is inclusive on both ends, so the end month is the last month you want, not the month after.
# 12 months, Jun 2025 through May 2026:
ytstudio analytics query -m views -d month -s 2025-06-01 -e 2026-05-01
comments - moderation
ytstudio comments list -o json # recent comments across the channel
ytstudio comments list --status held -o json # the moderation queue
ytstudio comments list --status spam -o json # likely spam comments
ytstudio comments list --sort time -o json # channel-wide newest first
ytstudio comments list -v --sort relevance -n 50 -o json
ytstudio comments publish [ ...] # approve held; executes immediately
ytstudio comments reject --ban # reject (+ optional ban); executes immediately
ytstudio comments reply -t "Thanks!" # executes immediately
comments list without -v/--video is channel-wide. Use --status spam for spam review. Channel-wide listing supports --sort time; --sort relevance requires -v/--video because of a YouTube API limitation. publish/reject take one or more comment ids and execute immediately (no --execute dry-run). reply also posts immediately. Confirm the exact comment ids/text first. --ban on reject also bans the author - only use it when the user explicitly asks to ban.
livestreams - broadcast lifecycle
ytstudio livestreams list -s upcoming -o json
ytstudio livestreams show --ingest -o json # ingest URL; key redacted
ytstudio livestreams schedule -t "Title" --scheduled-start 2026-07-01T19:00:00+02:00 --execute
ytstudio livestreams start --to testing # executes immediately; or --to live
ytstudio livestreams stop # executes immediately
ytstudio livestreams update --privacy unlisted --execute
schedule/update are dry-run until --execute, but start/stop execute immediately. livestreams show --show-key reveals the stream key - treat any such output as a secret and never echo it into logs or chat. start --to live publishes to viewers; prefer --to testing unless the user wants to go live immediately.
playlists - bulk operations
ytstudio playlists list -o json
ytstudio playlists items -o json
ytstudio playlists create -t "Title" --privacy unlisted --execute
ytstudio playlists add --from-search "topic" -n 20 --execute # search costs 100 units/call
ytstudio playlists add -v -v --execute
ytstudio playlists reorder --by views --order desc --execute
ytstudio playlists remove -v --execute
ytstudio playlists delete --execute -y # -y skips the prompt
All playlist writes are dry-run until --execute. delete also prompts for confirmation unless -y/--yes is passed; only add -y when running non-interactively and the user has confirmed the deletion.
Quota awareness
The YouTube Data API has a default budget of 10,000 units/day per project, resetting at midnight Pacific. Rough costs:
| Operation | Cost | |---|---| | Read (list/show videos, comments, playlists; analytics) | ~1 unit | | Write (update video, moderate comment, playlist insert/reorder, schedule broadcast) | ~50 units | | Search (playlists add --from-search) | ~100 units/call | | Upload (videos upload) | ~1600 units |
Before kicking off a large bulk run (e.g. search-replace over hundreds of videos, or several uploads), estimate the cost and warn the user if it could exhaust the daily quota. A quotaExceeded response (HTTP 403) means the budget is spent until the next reset; long-running jobs (videos upload) stop cleanly and report how many succeeded so they can be resumed later.
Recommended workflow for an agent
- Confirm setup once with
ytstudio status(andprofile listif multiple
channels may be in play). Select the channel with YTSTUDIO_PROFILE= when scripting.
- Gather state with read commands using
-o jsonand parse the result. - For any change, run the command without
--executefirst, inspect the
preview, and surface it to the user when the change is consequential or bulk.
- Re-run the identical command with
--executeto apply. - Mind the quota for bulk and upload operations.
When a flag or behavior is unclear, consult [references/reference.md](references/reference.md) or --help rather than assuming.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: jdwit
- Source: jdwit/ytstudio-cli
- License: MIT
- Homepage: https://jdwit.github.io/ytstudio-cli/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.