import sys
sys.path.insert(0, 'agent_recipes/templates/ai-script-writer')
from tools import write_youtube_script, write_short_script, write_thread
# YouTube long-form script
script = write_youtube_script(
topic="AI agents are changing software development",
target_length=300,
key_points=["automation", "productivity", "future"]
)
# YouTube Short script
short = write_short_script("AI agents", duration=30)
# X thread
thread = write_thread("AI agents", num_tweets=5)