Skip to Content
Week 6.1: Content Distribution & Campaigns

Week 6.1: Content Distribution & Campaigns


Week 6.1 Resources: Content Distribution & Campaigns

Required Software & Accounts

In this week, we integrate social media distribution. Ensure you have the following set up:

  • GetLate (Late): The social media scheduling and automation platform used in the video.
    • Visit GetLate.dev 
    • Action: Connect your YouTube and Instagram accounts in the “Connections” tab.
    • Note: For Instagram, you may need to switch your account type to “Creator” or “Business” to use the API.
  • Fal.ai: Required for the image generation tools (reused from Week 5).
  • Python 3.11: The image generation tools used in this video specifically require Python 3.11 (or a compatible environment).
  • Claude Code (Anthropic): The AI agent engine.

Terminal Commands

Common commands used throughout this lesson to manage the agent and git.

Start Claude:

claude

Clear Context:

/clear

Commit Changes:

commit

Class Prompts

You can copy and paste these prompts directly into the Claude Code input bar to replicate the workflows built in the video.

1. Campaign Setup

Create the Campaign Creation Workflow: Note: Ensure you have your video_file and script_file paths ready.

execute @workflows/create_campaign.md

2. Generating & Refining Assets

Generate YouTube Titles (with Research):

with 3 parallel subagents do web research on the following topics - creating effective youtube titles - creating good youtube descriptions - creating effective youtube thumbnails save results 3 different files in docs/

Create the Description Workflow:

READ @workflows/create_youtube_titles.md WRITE @workflows/create_youtube_description.md - only create one description - save to same folder

Generate Thumbnails:

execute @workflows/generate_thumbnails.md

Refining Thumbnails (Image Editing): Use this pattern to edit specific thumbnails generated by the agent.

edit the text of 04 to say "The Dark Truth About Mermaids"

Or purely visual changes:

make her face scarier

3. The Master Workflow & Debugging

Run the Combined Generation & Selection Workflow:

execute @workflows/youtube/generate_and_select_youtube_assets.md

Fixing the “Late MCP” Upload Error: If the Late MCP server fails to upload directly, use this prompt to create a local Python wrapper as a workaround:

create tools/youtube_tools.py with just the upload function. follow patterns of other tool files and add to docs/tools.md

Resume Workflow after Fix:

execute @workflows/youtube/generate_and_select_youtube_assets.md starting from step 9
Last updated on