Add blog section: 2x2 grid with search, pagination, and 8 sample posts
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
<link rel="canonical" href="https://derez.ai/blog/posts/video-script-automation-agent.html" />
|
||||
<title>AI Agent Script: Automating YouTube Content Research — Derez.ai Blog</title>
|
||||
<meta name="description" content="Full walkthrough of a video script agent that researches topics, outlines episodes, and writes drafts." />
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://derez.ai/blog/posts/video-script-automation-agent.html" />
|
||||
<meta property="og:title" content="AI Agent Script: Automating YouTube Content Research" />
|
||||
<meta property="og:description" content="Full walkthrough of a video script agent that researches topics, outlines episodes, and writes drafts." />
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta name="twitter:title" content="AI Agent Script: Automating YouTube Content Research" />
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&display=swap" rel="stylesheet" />
|
||||
<style>
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
body {
|
||||
background: #08080c;
|
||||
color: #e8e8f0;
|
||||
font-family: 'Inter', sans-serif;
|
||||
line-height: 1.7;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
.container { max-width: 720px; margin: 0 auto; }
|
||||
a { color: #00f5ff; text-decoration: none; }
|
||||
a:hover { text-decoration: underline; }
|
||||
.back { margin-bottom: 32px; display: inline-block; font-size: 0.9rem; color: #888; }
|
||||
.back:hover { color: #00f5ff; }
|
||||
h1 { font-size: 1.9rem; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
|
||||
.meta { font-size: 0.85rem; color: #888; margin-bottom: 40px; display: flex; gap: 12px; align-items: center; }
|
||||
.area-tag {
|
||||
display: inline-block;
|
||||
background: rgba(0,245,255,0.1);
|
||||
color: #00f5ff;
|
||||
font-size: 0.75rem;
|
||||
padding: 2px 10px;
|
||||
border-radius: 20px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
h2 { font-size: 1.3rem; font-weight: 600; margin: 36px 0 12px; color: #f0f0ff; }
|
||||
p { margin-bottom: 16px; color: #c8c8d8; }
|
||||
code { background: #0e0e14; padding: 2px 6px; border-radius: 4px; font-size: 0.9em; color: #00f5ff; }
|
||||
strong { color: #f0f0ff; }
|
||||
@media (max-width: 600px) {
|
||||
body { padding: 24px 16px; }
|
||||
h1 { font-size: 1.5rem; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<a class="back" href="https://derez.ai/#blog">← Back to Blog</a>
|
||||
<h1>AI Agent Script: Automating YouTube Content Research</h1>
|
||||
<div class="meta">
|
||||
<span>May 25, 2026</span>
|
||||
<span class="area-tag">video-scripts</span>
|
||||
</div>
|
||||
<h2>Content Research at Scale</h2>
|
||||
<p>If you create YouTube content, you know research takes as long as recording. An AI agent can automate the prep work: find trending topics, analyze competitor videos, outline episodes, and draft scripts.</p>
|
||||
<h2>Agent Workflow</h2>
|
||||
<p>Prompt your Hermes Agent with: <em>"Research the topic [X]. Find 3 popular videos on YouTube about this topic, summarize their angle, identify what's missing, and outline a 10-minute video that fills the gap."</em></p>
|
||||
<h2>Adding YouTube Transcripts</h2>
|
||||
<p>Hermes Agent can pull YouTube transcripts via its tools. Have it analyze the top-performing videos' transcripts, extract the hooks, pacing, and key points. Use that analysis to structure your own script.</p>
|
||||
<h2>From Outline to Draft</h2>
|
||||
<p>Once the outline is ready, tell the agent to write the full script in your voice. Include style notes in the prompt: <em>"Write in a conversational tone, use short sentences, include 3 callbacks to earlier points, and end with a CTA."</em></p>
|
||||
<h2>Results</h2>
|
||||
<p>What used to take 2 hours of research + 1 hour of writing takes 20 minutes of prompting + editing. The agent handles the first pass; you handle the polish. Repeatable for every episode.</p>
|
||||
|
||||
<p style="margin-top:48px;padding-top:24px;border-top:1px solid #1a1a24;font-size:0.85rem;color:#666;">
|
||||
<a href="https://derez.ai" style="color:#00f5ff">Derez.ai</a> — Deploy your AI agent in 5 minutes.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user