Automate Google Sheets + YouTube
The database every team already has open. Long-form content worth repurposing everywhere else. Put an agent between them and the hand-off stops being manual: it reads, decides, acts, and shows its work.
Social Scheduler already works across Google Sheets and YouTube — free, and it runs on your machine.
Automations teams run
These are not field mappings. An agent reads the Google Sheets side, works out what it means, and only then decides what — if anything — should happen in YouTube.
When a row is added or edited in Google Sheets…
…an agent can pull transcripts and stats in YouTube — after reading the context and deciding it should.
When a sheet crosses a threshold in Google Sheets…
…an agent can draft descriptions and chapters in YouTube — after reading the context and deciding it should.
When a schedule fires in Google Sheets…
…an agent can summarise comments in YouTube — after reading the context and deciding it should.
When a video is published in YouTube…
…an agent can append and update rows in Google Sheets — with the reasoning recorded in the run’s receipt.
When a comment arrives in YouTube…
…an agent can read ranges for reporting in Google Sheets — with the reasoning recorded in the run’s receipt.
Copy this Google Sheets → YouTube workflow
Start with the google-sheets-api node and the youtube-api node. Configure the Google Sheets source payload, the agent input, and the YouTube operation. The sequential template does not implement conditional writes or approval by itself.
This is a schema-checked starting point, not an end-to-end tested automation. Replace every CONFIGURE_ value, choose the operations you intend, connect credentials and map source outputs into later inputs. An edge orders steps; it does not supply a condition, an approval gate or a field mapping. Add and test those controls explicitly before any write. Cloud APIs and model providers may receive data. Keep the workflow inactive until tested with fixtures.
{
"id": "f48f8e3b-85b8-4e93-afa4-c17c82579732",
"name": "Google Sheets → YouTube",
"nodes": [
{
"id": "40662271-65a9-4979-a773-7582b036cc8a",
"text": "Watch Google Sheets",
"x": 512,
"y": 144,
"isEditing": false,
"type": "google-sheets-new-row",
"icon": "connect",
"category": "trigger",
"isSelected": false,
"parameters": {
"spreadsheetId": "CONFIGURE_SPREADSHEETID",
"sheetName": "CONFIGURE_SHEETNAME"
},
"description": "Setup template for Google Sheets New Row. Listen for new rows added to a specified Google Sheet and trigger the workflow when a new row is detected. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
},
{
"id": "d8b62311-b8f0-4b98-a8f6-cf7fb83423f4",
"text": "Review source and draft",
"x": 512,
"y": 336,
"isEditing": false,
"type": "agnt-agent",
"icon": "connect",
"category": "action",
"isSelected": false,
"parameters": {
"agentId": "CONFIGURE_AGENTID",
"message": "Read the Google Sheets item. Decide whether it warrants action in YouTube, and explain why.\nSource input: CONFIGURE_SOURCE_INPUT. Produce a reviewable draft only; do not take external actions."
},
"description": "Setup template for Agent Chat. Chat with an AI agent from your agent library. Select an agent and send messages to interact with it within your workflow. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
},
{
"id": "75217881-8bd2-4ebb-a658-69f612af15ca",
"text": "Configure destination in YouTube",
"x": 512,
"y": 528,
"isEditing": false,
"type": "youtube-api",
"icon": "connect",
"category": "action",
"isSelected": false,
"parameters": {
"action": "ADD_VIDEO_TO_PLAYLIST",
"playlistId": "CONFIGURE_PLAYLISTID"
},
"description": "Setup template for YouTube API. Interact with the YouTube API to manage videos, comments, playlists, and more. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
}
],
"edges": [
{
"id": "f8fad45a-a182-4982-ac96-d2b42702998c",
"start": {
"id": "40662271-65a9-4979-a773-7582b036cc8a",
"type": "output"
},
"end": {
"id": "d8b62311-b8f0-4b98-a8f6-cf7fb83423f4",
"type": "input"
},
"startX": 800,
"startY": 168,
"endX": 512,
"endY": 360
},
{
"id": "65e8c736-a17d-48ad-ac57-de0ff42c9ff2",
"start": {
"id": "d8b62311-b8f0-4b98-a8f6-cf7fb83423f4",
"type": "output"
},
"end": {
"id": "75217881-8bd2-4ebb-a658-69f612af15ca",
"type": "input"
},
"startX": 800,
"startY": 360,
"endX": 512,
"endY": 552
}
],
"zoomLevel": 1,
"canvasOffsetX": 0,
"canvasOffsetY": 0,
"isTinyNodeMode": false
}
Configure Google Sheets New Row
Listen for new rows added to a specified Google Sheet and trigger the workflow when a new row is detected.
- spreadsheetId — The ID of the Google Spreadsheet to monitor Current example:
CONFIGURE_SPREADSHEETID. - sheetName — The name of the sheet within the spreadsheet to monitor Current example:
CONFIGURE_SHEETNAME.
Configure YouTube API
Interact with the YouTube API to manage videos, comments, playlists, and more.
- action — The action to perform on YouTube Current example:
ADD_VIDEO_TO_PLAYLIST. - playlistId — The ID of the playlist Current example:
CONFIGURE_PLAYLISTID.
Install Social Scheduler
Social Scheduler already uses both Google Sheets and YouTube, so installing it gives you this exact hand-off wired up — connected, editable, and running on your own machine.
Runs on your own machine · See what it does
Wiring Google Sheets to YouTube
- Get AGNT Community Core. Free, local, no sign-up needed to run a workflow.
- Add both connections to the vault — Google Sheets takes one OAuth sign-in, YouTube takes one OAuth sign-in.
- Configure the nodes above, or start from a marketplace workflow and edit it. The agent in the middle is the part worth spending time on.
- Run it once with an approval gate in place. The receipt tells you what it read, what it concluded, and what it changed in YouTube.
Google Sheets and YouTube — common questions
Can I connect Google Sheets to YouTube without writing code?
Yes. Google Sheets connects with one OAuth sign-in and YouTube with one OAuth sign-in, both from the local credential vault. You then describe the job in plain language — “when a row is added or edited, pull transcripts and stats” — and the agent handles the rest.
How is this different from a field-mapping Google Sheets to YouTube automation?
Mapping tools move data; this reasons about it. Rather than copying a field into YouTube, the agent can weigh what arrived from Google Sheets, classify it against criteria you wrote in prose, draft something new, and act only when it is warranted.
Does my Google Sheets and YouTube data leave my machine?
Your credentials stay in a vault on your own disk rather than in someone else’s cloud. The only calls made are the ones the workflow needs: Google Sheets, YouTube, and your chosen model provider — which can be a local one.
What does a Google Sheets and YouTube run leave behind?
Every run is recorded end to end — the Google Sheets items examined, the decision and its reasoning, the resulting YouTube write. That record is what makes it reasonable to let this run unattended, and what lets you widen its remit on evidence.