script-writer

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Script Writer

脚本撰写Skill

Overview

概述

This skill transforms Claude into a professional YouTube scriptwriter that understands your unique style and generates complete, engaging video scripts optimized for viewer retention and engagement.
该Skill可将Claude转变为专业的YouTube脚本作者,它能理解你的独特风格,生成完整、引人入胜的视频脚本,优化观众留存率和参与度。

When to Use This Skill

适用场景

Invoke this skill for YouTube scriptwriting tasks:
  • Writing complete video scripts
  • Creating hooks and introductions
  • Structuring content for engagement
  • Adapting scripts to different formats
  • Maintaining consistent voice and style
  • Generating multiple script variations
在以下YouTube脚本撰写任务中调用该Skill:
  • 撰写完整的视频脚本
  • 创建钩子和开场白
  • 构建提升参与度的内容结构
  • 调整脚本以适配不同格式
  • 保持一致的语气和风格
  • 生成多个脚本版本

Workflow

工作流程

Step 1: Check for Existing Preferences

步骤1:检查是否存在已保存的偏好设置

bash
python3 scripts/script_db.py is_initialized
If "false", proceed to Step 2. If "true", proceed to Step 3.
bash
python3 scripts/script_db.py is_initialized
如果返回"false",则进入步骤2;如果返回"true",则进入步骤3。

Step 2: Initial Preference Collection

步骤2:初始偏好收集

Collect comprehensive scriptwriting preferences:
Script Types (can select multiple):
  • Educational/Tutorial
  • Listicle/Top X
  • Story/Narrative
  • Review
  • Vlog style
  • Commentary/Opinion
  • How-to
  • Explainer
  • Entertainment
Tone:
  • Professional/Authoritative
  • Casual/Friendly
  • Energetic/Enthusiastic
  • Educational/Patient
  • Inspirational/Motivational
  • Humorous/Entertaining
  • Conversational
Target Audience:
  • Age range (teens, 20s-30s, 35-50, 50+)
  • Knowledge level (beginners, intermediate, expert)
  • Demographics
  • Interests
  • Pain points
Style Preferences:
  • Wording style: Simple/Direct, Descriptive/Vivid, Technical/Precise, Storytelling
  • Sentence length: Short/punchy, Medium, Long/flowing
  • Paragraph structure: Quick cuts, Balanced, Longer sections
  • Use of rhetorical questions: Yes/No/Sometimes
  • Use of statistics/data: Heavy, Moderate, Light, None
Video Length Preference:
  • Short form (3-5 minutes, ~450-750 words)
  • Medium form (7-12 minutes, ~1,050-1,800 words)
  • Long form (15-30 minutes, ~2,250-4,500 words)
Hook Style:
  • Question-based
  • Bold statement
  • Conflict/Problem
  • Promise/Benefit
  • Shock value
  • Story opening
Personality:
  • Energetic and animated
  • Calm and measured
  • Witty and humorous
  • Serious and thoughtful
  • Passionate and intense
  • Relatable and down-to-earth
Additional Preferences:
  • Use humor: Yes/No/Sparingly
  • Include statistics: Always/When relevant/Rarely
  • Storytelling approach: Heavy/Moderate/Light
  • Call-to-action preference: Direct/Soft/Minimal
  • Personal anecdotes: Frequently/Occasionally/Rarely
  • Channel niche/focus
Saving Preferences:
python
import sys
sys.path.append('[SKILL_DIR]/scripts')
from script_db import save_preferences

preferences = {
    "script_types": ["educational", "listicle"],
    "tone": "casual-friendly",
    "target_audience": {
        "age_range": "20s-30s",
        "knowledge_level": "beginner-intermediate",
        "interests": ["productivity", "technology"]
    },
    "style": {
        "wording": "simple-direct",
        "sentence_length": "short-punchy",
        "use_questions": True,
        "use_statistics": "moderate"
    },
    "video_length": "medium",
    "hook_style": "question-problem",
    "personality": "relatable-energetic",
    "use_humor": True,
    "storytelling_approach": "moderate",
    "call_to_action_preference": "direct",
    "channel_niche": "productivity tips"
}

save_preferences(preferences)
收集全面的脚本撰写偏好:
脚本类型(可多选):
  • 教育/教程类
  • 清单/Top X类
  • 故事/叙事类
  • 评测类
  • Vlog风格
  • 评论/观点类
  • 操作指南类
  • 科普讲解类
  • 娱乐类
语气:
  • 专业/权威
  • 随意/友好
  • 活力/热情
  • 教学/耐心
  • 励志/鼓舞
  • 幽默/趣味
  • 口语化
目标受众:
  • 年龄范围(青少年、20-30岁、35-50岁、50岁以上)
  • 知识水平(初学者、中级、专家)
  • 人口统计特征
  • 兴趣爱好
  • 痛点需求
风格偏好:
  • 措辞风格:简洁直接、生动描述、技术精准、叙事性
  • 句子长度:短小有力、中等长度、长篇流畅
  • 段落结构:快速切换、均衡分布、长篇段落
  • 反问句使用:是/否/偶尔
  • 数据/统计使用:大量、适量、少量、不使用
视频时长偏好:
  • 短视频(3-5分钟,约450-750词)
  • 中视频(7-12分钟,约1050-1800词)
  • 长视频(15-30分钟,约2250-4500词)
钩子风格:
  • 问题引导型
  • 大胆陈述型
  • 冲突/问题型
  • 承诺/利益型
  • 震撼型
  • 故事开场型
人设:
  • 活力四射
  • 沉稳理性
  • 诙谐幽默
  • 严肃深思
  • 充满激情
  • 接地气、有共鸣
额外偏好:
  • 是否使用幽默:是/否/少量使用
  • 是否包含统计数据:总是/相关时使用/很少
  • 叙事方式:大量/适量/少量
  • 行动号召偏好:直接/温和/极简
  • 个人轶事:频繁/偶尔/很少
  • 频道细分领域/重点方向
保存偏好设置:
python
import sys
sys.path.append('[SKILL_DIR]/scripts')
from script_db import save_preferences

preferences = {
    "script_types": ["educational", "listicle"],
    "tone": "casual-friendly",
    "target_audience": {
        "age_range": "20s-30s",
        "knowledge_level": "beginner-intermediate",
        "interests": ["productivity", "technology"]
    },
    "style": {
        "wording": "simple-direct",
        "sentence_length": "short-punchy",
        "use_questions": True,
        "use_statistics": "moderate"
    },
    "video_length": "medium",
    "hook_style": "question-problem",
    "personality": "relatable-energetic",
    "use_humor": True,
    "storytelling_approach": "moderate",
    "call_to_action_preference": "direct",
    "channel_niche": "productivity tips"
}

save_preferences(preferences)

Step 3: Generate Script for Topic

步骤3:针对指定主题生成脚本

When user requests a script, gather:
Essential Information:
  1. Topic/Title: What the video is about
  2. Key Points: Main things to cover (3-5 points)
  3. Video Length: Specific duration or use preference
  4. Special Requirements: Anything specific to include/avoid
  5. Target Keywords: For SEO (optional)
Example Request:
User: "Write a script about '5 Productivity Apps That Changed My Life'"

Gather:
- Video length: 10 minutes (medium form)
- Key apps to cover: 5 specific apps
- Angle: Personal experience + practical benefits
- CTA: Link to full app list in description
当用户请求脚本时,收集以下信息:
核心信息:
  1. 主题/标题: 视频的核心内容
  2. 关键点: 需要覆盖的主要内容(3-5个)
  3. 视频时长: 具体时长或使用已保存的偏好设置
  4. 特殊要求: 需要包含或避免的内容
  5. 目标关键词: 用于SEO(可选)
请求示例:
用户:"撰写一篇关于'5款改变我生活的生产力应用'的脚本"

收集信息:
- 视频时长:10分钟(中视频)
- 需要覆盖的应用:5款特定应用
- 视角:个人体验+实用价值
- 行动号召:引导查看简介中的完整应用列表

Step 4: Structure the Script

步骤4:构建脚本结构

Based on preferences and
references/script_formats.md
, create structure:
Standard YouTube Script Structure:
[HOOK - 0:00-0:10]
Opening line that stops the scroll

[INTRO - 0:10-0:45]
- Quick greeting
- What video is about
- Why viewer should watch
- What they'll learn
- Personal credibility/context

[MAIN CONTENT - 0:45-8:30]
Section 1: [Point 1]
- Introduction to point
- Explanation
- Example/Story
- Benefit/Application
- Transition

Section 2: [Point 2]
- Introduction to point
- Explanation
- Example/Story
- Benefit/Application
- Transition

[Continue for each main point]

[CONCLUSION - 8:30-9:30]
- Recap of main points
- Key takeaway
- Final thought
- Setup for CTA

[CALL TO ACTION - 9:30-10:00]
- Primary CTA (subscribe, like, comment)
- Secondary CTA (links, next video)
- Sign-off
根据偏好设置和
references/script_formats.md
,创建脚本结构:
标准YouTube脚本结构:
[钩子 - 0:00-0:10]
能够留住观众的开场台词

[引言 - 0:10-0:45]
- 简短问候
- 视频主题介绍
- 观众观看的理由
- 观众将学到的内容
- 个人可信度/背景介绍

[主体内容 - 0:45-8:30]
章节1:[要点1]
- 要点介绍
- 详细解释
- 示例/故事
- 价值/应用场景
- 过渡语

章节2:[要点2]
- 要点介绍
- 详细解释
- 示例/故事
- 价值/应用场景
- 过渡语

[按此结构继续覆盖所有要点]

[结论 - 8:30-9:30]
- 要点回顾
- 核心收获
- 最终思考
- 行动号召铺垫

[行动号召 - 9:30-10:00]
- 主要行动号召(订阅、点赞、评论)
- 次要行动号召(链接、下一个视频)
- 结束语

Step 5: Write Complete Script

步骤5:撰写完整脚本

Generate full script following structure with user's style preferences:
Example Script Output:
===================================
YOUTUBE SCRIPT
===================================

Title: 5 Productivity Apps That Changed My Life
Duration: ~10 minutes (~1,500 words)
Style: Casual-Friendly, Educational

===================================

[HOOK - 0:00-0:10]

"I used to waste 3 hours every day on useless tasks until I found these 5 apps.
And no, I'm not talking about the ones everyone already knows about."

[INTRO - 0:10-0:45]

"Hey everyone! If you're like me, you've downloaded dozens of productivity apps
only to abandon them after a week. But these 5? They've actually stuck. In fact,
they've saved me over 15 hours every single week for the past 6 months.

Today, I'm sharing the exact apps I use daily, why they work, and how you can
implement them right now. And stick around because app number 5 is so simple,
you'll wonder why you haven't been using it already.

Let's dive in."

[MAIN CONTENT - 0:45-8:30]

[Section 1: App #1 - 1:00-2:30]

"App number one is Notion – but not how you think.

I know, I know – everyone talks about Notion. But here's the thing: most people
overcomplicate it. I used to spend hours building elaborate databases until I
realized I was being productive about being productive, which is just... not
productive.

[Visual cue: Show simple Notion setup]

Here's what changed everything: I now use Notion for exactly THREE things:
- My daily dashboard (shows tasks, goals, and notes)
- A simple content calendar
- Quick capture for random ideas

That's it. No complex databases. No elaborate systems. Just these three pages,
and suddenly Notion became actually useful instead of another project to maintain.

The key? Start simple. You can always add complexity later, but start with one
page and build from there.

Moving on to something completely different..."

[Section 2: App #2 - 2:30-4:00]

"App number two is Sunsama, and this one's all about time blocking done right.

If you've ever written a to-do list and then just... stared at it, paralyzed
about where to start – Sunsama solves that. It's like a calendar and task
manager had a baby.

[Visual cue: Show Sunsama interface]

Every morning, I spend 10 minutes in Sunsama planning my day. I drag tasks into
specific time slots, and it shows me if I'm overcommitting. Game changer.

Before Sunsama, I'd have 20 tasks and no idea how to fit them in. Now? I can see
I only have time for 7 tasks today, so I prioritize accordingly. It's honestly
changed how I approach my entire day.

The best part? At the end of the day, it shows you what you actually completed
versus what you planned. That feedback loop has made me SO much better at
estimating how long things actually take.

Fair warning: it's a paid app. But for me, the $20/month has been worth every
penny in time saved and stress reduced."

[Continue for Apps 3, 4, and 5...]

[CONCLUSION - 8:30-9:30]

"So there you have it – the 5 apps that transformed my productivity:
1. Notion for simple organization
2. Sunsama for time blocking
3. [App 3] for [benefit]
4. [App 4] for [benefit]
5. [App 5] for [benefit]

The most important thing? Don't try to implement all 5 at once. Pick ONE, master
it for a week, then add another. That's how these actually stick.

I've been using this exact setup for 6 months now, and I genuinely can't imagine
going back to my old chaotic system."

[CALL TO ACTION - 9:30-10:00]

"If you found this helpful, smash that subscribe button because I post a new
productivity video every Tuesday.

Also, I've got a full breakdown of all 5 apps with links, pricing, and my exact
setup in the description below – grab that, it's free.

Let me know in the comments which app you're going to try first, and if you have
any productivity apps I should know about, drop those too.

Thanks for watching, and I'll see you in the next one!"

===================================
[END OF SCRIPT]

Word Count: ~1,500 words
Estimated Duration: 10 minutes
Target Audience: 20s-30s productivity enthusiasts
Tone: Casual, friendly, relatable
Key Hooks: Personal transformation, practical tips, simple implementation

Production Notes:
- Need B-roll of all 5 apps in use
- Show simple vs complex Notion setups
- Include time-lapse of daily planning routine
- End screen: Subscribe button + Next video suggestion
===================================
遵循结构和用户风格偏好生成完整脚本:
脚本输出示例:
===================================
YOUTUBE脚本
===================================

标题:5款改变我生活的生产力应用
时长:约10分钟(约1500词)
风格:随意友好、教育性

===================================

[钩子 - 0:00-0:10]

"我曾经每天浪费3小时在无用的任务上,直到我发现了这5款应用。
而且,我要说的可不是那些大家都已经知道的应用。"

[引言 - 0:10-0:45]

"大家好!如果你和我一样,你可能已经下载过几十款生产力应用,
但一周后就弃用了。但这5款?我一直用到现在。事实上,在过去的6个月里,
它们每周为我节省了超过15小时的时间。

今天,我将分享我日常使用的这几款应用,它们为何有效,以及你现在就可以如何使用它们。看到最后,第5款应用非常简单,
你会好奇自己之前为什么没有用它。

让我们开始吧。"

[主体内容 - 0:45-8:30]

[章节1:应用1 - 1:00-2:30]

"第一款应用是Notion——但用法和你想的不一样。

我知道,大家都在谈论Notion。但问题是:大多数人把它复杂化了。我曾经花几个小时构建复杂的数据库,
直到我意识到自己只是在为了'高效'而'高效',这根本算不上高效。

[视觉提示:展示简单的Notion设置]

改变一切的关键是:我现在只用Notion做三件事:
- 我的每日仪表盘(显示任务、目标和笔记)
- 简单的内容日历
- 快速记录随机想法

就这些。没有复杂的数据库,没有繁琐的系统。只有这三个页面,
Notion突然变得真正有用,而不是另一个需要维护的项目。

核心要点:从简单开始。以后可以再增加复杂性,但先从一个页面开始,逐步构建。

接下来是完全不同的一款应用..."

[章节2:应用2 - 2:30-4:00]

"第二款应用是Sunsama,它完美解决了时间块规划的问题。

如果你曾经写过待办清单,然后只是...盯着它,不知道从哪里开始——Sunsama可以解决这个问题。它就像日历和任务管理器的结合体。

[视觉提示:展示Sunsama界面]

每天早上,我会花10分钟在Sunsama中规划我的一天。我把任务拖到特定的时间段,它会显示我是否安排得太满。这真的改变了游戏规则。

在使用Sunsama之前,我有20个任务,不知道如何安排。现在?我可以看到我今天只有时间完成7个任务,所以我会优先处理最重要的。它真的改变了我处理一天事务的方式。

最棒的是:在一天结束时,它会显示你实际完成的任务与计划的任务对比。这个反馈循环让我更擅长估算完成任务的实际时间。

温馨提示:这是一款付费应用。但对我来说,每月20美元的费用在节省的时间和减少的压力方面完全值得。"

[继续撰写应用3、4、5...]

[结论 - 8:30-9:30]

"以上就是改变我生产力的5款应用:
1. Notion:用于简单组织
2. Sunsama:用于时间块规划
3. [应用3]:用于[价值]
4. [应用4]:用于[价值]
5. [应用5]:用于[价值]

最重要的一点?不要试图同时使用这5款应用。选一款,用一周时间掌握它,然后再添加下一款。这样才能真正坚持使用。

我已经使用这个设置6个月了,真的无法想象回到以前混乱的系统。"

[行动号召 - 9:30-10:00]

"如果你觉得这个视频有帮助,那就点击订阅按钮,因为我每周二都会发布新的生产力视频。

另外,我在简介中准备了这5款应用的完整介绍,包括链接、定价和我的具体设置——免费领取。

在评论区告诉我你打算先尝试哪款应用,如果你有任何我应该了解的生产力应用,也请分享出来。

感谢观看,我们下一个视频见!"

===================================
[脚本结束]

词数:约1500词
预计时长:10分钟
目标受众:20-30岁生产力爱好者
语气:随意、友好、有共鸣
核心钩子:个人转变、实用技巧、简单易上手

制作说明:
- 需要所有5款应用的使用B-roll素材
- 展示Notion的简单设置与复杂设置对比
- 包含每日规划流程的延时摄影
- 结尾画面:订阅按钮+下一个视频推荐
===================================

Step 6: Refine Based on Feedback

步骤6:根据反馈优化脚本

After presenting script:
Offer Adjustments:
  • Make hook stronger
  • Adjust length (trim or expand)
  • Change tone (more/less formal)
  • Add/remove humor
  • Include more statistics
  • Simplify language
  • Add storytelling elements
  • Strengthen CTA
Save Final Version:
python
from script_db import add_script

script = {
    "title": "5 Productivity Apps That Changed My Life",
    "type": "listicle-educational",
    "tone": "casual-friendly",
    "word_count": 1500,
    "duration_minutes": 10,
    "content": "[full script text]",
    "notes": "Strong personal angle, relatable examples"
}

add_script(script)
提交脚本后:
提供调整选项:
  • 强化钩子
  • 调整时长(精简或扩展)
  • 改变语气(更正式或更随意)
  • 添加/减少幽默元素
  • 包含更多统计数据
  • 简化语言
  • 添加叙事元素
  • 强化行动号召
保存最终版本:
python
from script_db import add_script

script = {
    "title": "5 Productivity Apps That Changed My Life",
    "type": "listicle-educational",
    "tone": "casual-friendly",
    "word_count": 1500,
    "duration_minutes": 10,
    "content": "[完整脚本文本]",
    "notes": "强烈的个人视角,有共鸣的示例"
}

add_script(script)

Best Practices

最佳实践

1. Hook Creation

1. 钩子创作

  • First 5 seconds are crucial
  • Make a promise
  • Create curiosity
  • Address a pain point
  • Use pattern interrupts
  • 前5秒至关重要
  • 做出承诺
  • 引发好奇心
  • 解决痛点
  • 使用打破常规的方式

2. Pacing

2. 节奏把控

  • Vary sentence length
  • Mix short and long paragraphs
  • Build momentum
  • Strategic pauses
  • Energy shifts
  • 变换句子长度
  • 混合长短段落
  • 逐步推进节奏
  • 战略性停顿
  • 能量起伏

3. Engagement Techniques

3. 互动技巧

  • Direct questions to viewer
  • Personal stories
  • Relatable examples
  • Anticipated objections
  • Social proof
  • 直接向观众提问
  • 分享个人故事
  • 使用有共鸣的示例
  • 提前预判异议
  • 提供社交证明

4. Retention Optimization

4. 留存率优化

  • Tease what's coming
  • Use callback references
  • Pattern interrupts every 30-60 seconds
  • Strategic information gaps
  • Payoff promises made
  • 预告后续内容
  • 使用回调参考
  • 每30-60秒打破常规
  • 战略性留白
  • 兑现承诺的价值

5. Call to Action

5. 行动号召

  • One primary CTA
  • Explain the benefit
  • Make it specific
  • Create light urgency
  • Natural integration
  • 一个主要行动号召
  • 解释价值
  • 明确具体
  • 制造轻微紧迫感
  • 自然融入

Script Templates

脚本模板

Educational Tutorial Template

教育教程模板

[HOOK] Problem statement + Promise of solution
[INTRO] Personal context + What you'll learn + Why it matters
[SECTION 1] Concept explanation
  - What it is
  - Why it matters
  - Common mistakes
[SECTION 2] Step-by-step process
  - Step 1 with visuals
  - Step 2 with examples
  - Step 3 with tips
[SECTION 3] Common pitfalls
  - What to avoid
  - Troubleshooting
[CONCLUSION] Recap + Key takeaway + Next steps
[CTA] Subscribe + Resources + Comment prompt
[钩子] 问题陈述+解决方案承诺
[引言] 个人背景+学习内容+重要性
[章节1] 概念解释
  - 定义
  - 重要性
  - 常见错误
[章节2] 分步流程
  - 步骤1(带视觉提示)
  - 步骤2(带示例)
  - 步骤3(带技巧)
[章节3] 常见陷阱
  - 避免事项
  - 故障排除
[结论] 要点回顾+核心收获+下一步行动
[行动号召] 订阅+资源+评论提示

Listicle Template

清单类模板

[HOOK] Number tease + Unexpected angle
[INTRO] Context + Why this list matters
[ITEM 5] (Build suspense with countdown)
  - What it is
  - Why it works
  - How to use it
[ITEM 4] Repeat structure
[ITEM 3] Repeat structure
[ITEM 2] Repeat structure
[ITEM 1] (Most important/surprising)
  - Extra emphasis
  - Best benefit
[CONCLUSION] Recap numbers + Ultimate takeaway
[CTA] Strong directive + Resource mention
[钩子] 数量预告+意外视角
[引言] 背景+清单重要性
[条目5](通过倒数制造悬念)
  - 定义
  - 优势
  - 使用方法
[条目4] 重复结构
[条目3] 重复结构
[条目2] 重复结构
[条目1](最重要/最意外)
  - 重点强调
  - 核心价值
[结论] 条目回顾+最终收获
[行动号召] 明确指令+资源提及

Story/Narrative Template

故事/叙事类模板

[HOOK] Compelling story opening
[INTRO] Setup the story context
[SECTION 1] The problem/conflict
  - Build tension
  - Show stakes
  - Make it relatable
[SECTION 2] The journey
  - Challenges faced
  - Attempts and failures
  - Learning moments
[SECTION 3] The resolution
  - How it worked out
  - The transformation
[CONCLUSION] Lesson learned + How viewers can apply
[CTA] Invite similar stories + Subscribe
[钩子] 引人入胜的故事开场
[引言] 故事背景铺垫
[章节1] 问题/冲突
  - 制造紧张感
  - 展示 stakes
  - 引发共鸣
[章节2] 旅程
  - 面临的挑战
  - 尝试与失败
  - 学习时刻
[章节3] 解决方案
  - 结果如何
  - 转变过程
[结论] 学到的教训+观众如何应用
[行动号召] 邀请分享类似故事+订阅

Tone Examples

语气示例

Casual-Friendly

随意友好

"Hey everyone! So, funny story – I completely messed this up last week.
Like, embarrassingly bad. But here's what I learned..."
"大家好!跟你们说个有趣的事——上周我把这件事搞砸了。
真的很尴尬。但我学到了..."

Professional-Authoritative

专业权威

"In today's video, we're examining the three core principles that drive
successful implementation. Based on 5 years of data and research..."
"在今天的视频中,我们将探讨推动成功实施的三个核心原则。基于5年的数据和研究..."

Energetic-Enthusiastic

活力热情

"Okay, THIS is insane! I just discovered something that's going to blow
your mind. Are you ready? Because once you see this..."
"哇,这太疯狂了!我刚刚发现了一个会让你大吃一惊的东西。准备好了吗?因为一旦你看到这个..."

Educational-Patient

教学耐心

"Let's break this down step by step. Don't worry if it seems complicated
at first – by the end of this video, it'll make perfect sense. First..."
"让我们一步步分解。一开始觉得复杂没关系——到视频结束时,你就会完全明白。首先..."

Common Mistakes to Avoid

常见错误避免

  1. Weak hooks - Get to the point in 5 seconds
  2. Long intros - Don't ramble before value
  3. No structure - Viewers need signposts
  4. Monotone delivery - Vary energy and pace
  5. Information overload - Focus on key points
  6. Forgetting the audience - Speak to them directly
  7. Buried CTA - Make it clear and actionable
  8. No personality - Let your unique voice show
  9. Too formal - YouTube is conversational
  10. No visual cues - Include filming notes
  1. 钩子薄弱 - 5秒内切入正题
  2. 引言过长 - 不要在提供价值前喋喋不休
  3. 结构混乱 - 观众需要清晰的指引
  4. 语气单调 - 变换能量和节奏
  5. 信息过载 - 聚焦关键点
  6. 忽略受众 - 直接与他们对话
  7. 行动号召不明显 - 清晰且可执行
  8. 缺乏个性 - 展现你的独特风格
  9. 过于正式 - YouTube是口语化的平台
  10. 无视觉提示 - 包含拍摄说明

Example Interaction

互动示例

User: "Write me a script about passive income ideas"

Claude: [Checks preferences - finds casual-friendly tone, medium length, question hooks]

Perfect! Based on your style, I'll write a 10-minute script with your casual,
relatable tone. A few quick questions:

1. How many passive income ideas should I cover? (3-5 works well for 10 minutes)
2. Any specific angle? (beginner-friendly, high-earning, low startup cost?)
3. Personal experience or research-based approach?

User: "5 ideas, beginner-friendly, mix of both personal experience and research"

Claude: [Generates complete script]

Here's your complete script for "5 Passive Income Ideas for Beginners":

[Full formatted script with hook, intro, 5 ideas with personal stories and data,
conclusion, and CTA – all in user's casual-friendly style]

The script is 1,450 words (~10 minutes) with:
✓ Question-based hook about financial freedom
✓ Personal story in intro about your first passive income
✓ Each idea includes: what it is, startup cost, time investment, real example
✓ Mix of your experience and statistics
✓ Natural humor in transitions
✓ Direct CTA about free passive income guide

Want me to adjust anything? I can make it more personal, add more data, or
change the energy level.
用户:"帮我写一篇关于被动收入想法的脚本"

Claude:[检查偏好设置 - 发现随意友好的语气、中视频时长、问题型钩子]

完美!根据你的风格,我将撰写一篇10分钟的脚本,采用你那种随意、有共鸣的语气。我有几个小问题:

1. 我应该涵盖多少个被动收入想法?(10分钟的话3-5个最合适)
2. 有没有特定的视角?(适合初学者、高收入、低启动成本?)
3. 采用个人体验还是研究视角?

用户:"5个想法,适合初学者,结合个人体验和研究"

Claude:[生成完整脚本]

这是你的《5个适合初学者的被动收入想法》完整脚本:

[包含钩子、引言、5个结合个人故事和数据的想法、结论和行动号召的完整格式化脚本——全部采用你那种随意友好的风格]

脚本约1450词(约10分钟),包含:
✓ 关于财务自由的问题型钩子
✓ 引言中关于你第一笔被动收入的个人故事
✓ 每个想法包含:定义、启动成本、时间投入、真实示例
✓ 个人体验与数据的结合
✓ 过渡中的自然幽默
✓ 引导领取免费被动收入指南的直接行动号召

需要我调整什么吗?我可以让它更个性化、添加更多数据,或者改变能量水平。

Technical Notes

技术说明

Data Storage:
  • Location:
    ~/.claude/script_writer.json
  • Preferences saved persistently
  • Script history maintained
CLI Commands:
bash
python3 scripts/script_db.py is_initialized
python3 scripts/script_db.py get_preferences
python3 scripts/script_db.py get_scripts
python3 scripts/script_db.py stats
Word Count Guidelines:
  • Speaking pace: ~150 words per minute
  • Short form (3-5 min): 450-750 words
  • Medium form (7-12 min): 1,050-1,800 words
  • Long form (15-30 min): 2,250-4,500 words
数据存储:
  • 位置:
    ~/.claude/script_writer.json
  • 偏好设置持久保存
  • 脚本历史记录可追溯
CLI命令:
bash
python3 scripts/script_db.py is_initialized
python3 scripts/script_db.py get_preferences
python3 scripts/script_db.py get_scripts
python3 scripts/script_db.py stats
词数指南:
  • 语速:约150词/分钟
  • 短视频(3-5分钟):450-750词
  • 中视频(7-12分钟):1050-1800词
  • 长视频(15-30分钟):2250-4500词

Resources

资源

scripts/script_db.py

scripts/script_db.py

Database management for preferences, scripts, and templates.
用于管理偏好设置、脚本和模板的数据库工具。

references/script_formats.md

references/script_formats.md

Comprehensive guide covering:
  • Common YouTube video types and structures
  • Script component breakdowns (hook, intro, content, conclusion, CTA)
  • Tone guidelines for different styles
  • Timing guidelines by video length
  • Engagement techniques
  • Common mistakes to avoid
  • Visual cues for scripts
  • Audience-specific adjustments
  • Platform-specific considerations
全面指南,涵盖:
  • 常见YouTube视频类型和结构
  • 脚本组件分解(钩子、引言、内容、结论、行动号召)
  • 不同风格的语气指南
  • 按视频时长划分的时间指南
  • 互动技巧
  • 常见错误避免
  • 脚本视觉提示
  • 针对特定受众的调整
  • 平台特定注意事项