Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

youtube-script-masterYouTube 脚本大师

Agent Skill

youtube-script-master 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

915

周安装

37

GitHub Stars

3

下载量

287
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:youtube-script-master(YouTube 脚本大师)
来源仓库:https://github.com/drshailesh88/integrated_content_os
仓库路径:skills/youtube-script-master
安装命令:
npx skills add https://github.com/drshailesh88/integrated_content_os --skill youtube-script-master
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/drshailesh88/integrated_content_os --skill youtube-script-master

简介

生成或优化 YouTube 视频脚本结构。

  • 适合内容创作者提升脚本可读性与传播效果。
  • 通过 npx skills add 命令安装。
  • 需核对语气风格与平台社区规范。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • youtube-script-master 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

YouTube Script Master

Unified skill for creating data-driven, evidence-based cardiology YouTube scripts in Hinglish.

This skill CONSUMES data from the research-engine Python pipeline. It does NOT replace that pipeline with manual web searches.


CRITICAL: Run Research Pipeline First

Before writing ANY script, the research-engine should have been run to generate:

  • Content calendar with prioritized topics
  • Demand analysis (what people want)
  • Gap analysis (where opportunities are)
  • Narrative analysis (what misinformation to address)
cd "/Users/shaileshsingh/cowriting system/research-engine"
python run_pipeline.py --quick    # Quick mode (~10 min)
python run_pipeline.py            # Full mode (~30 min)

Complete Architecture

┌─────────────────────────────────────────────────────────────────┐
│           PHASE 1: DATA COLLECTION (Weekly - Python Pipeline)   │
├─────────────────────────────────────────────────────────────────┤
│                                                                  │
│  channel_scraper.py ──► Scrapes 35+ channels (no API needed)   │
│                         Competition, inspiration, belief-seeders│
│                                                                  │
│  comment_scraper.py ──► Downloads comments from top videos      │
│                         Extracts questions and pain points      │
│                                                                  │
│  OUTPUT: /data/scraped/latest_scrape.json                       │
│          /data/scraped/latest_comments.json                     │
└─────────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────────┐
│           PHASE 2: ANALYSIS (Python Pipeline)                    │
├─────────────────────────────────────────────────────────────────┤
│                                                                  │
│  demand_signals.py ──► What topics get views/engagement         │
│                        Question themes, demand scoring           │
│                                                                  │
│  narrative_monitor.py ──► Tracks 8 dangerous narratives:        │
│                           1. LDL skepticism                      │
│                           2. Statin fear                         │
│                           3. Insulin primacy                     │
│                           4. Fasting absolutism                  │
│                           5. Supplement superiority              │
│                           6. Seed oil villain                    │
│                           7. Exercise compensation               │
│                           8. Fear mongering                      │
│                                                                  │
│  gap_finder.py ──► Content opportunities                        │
│                    CORRECTION_OPPORTUNITY (misinformation)       │
│                    LANGUAGE_GAP (English→Hindi needed)           │
│                    DEMAND_GAP (questions but no videos)          │
│                    PROVEN_TOPIC (high views in English)          │
│                                                                  │
│  view_predictor.py ──► ML prediction of video performance       │
│                        Ridge regression + TF-IDF on title        │
│                                                                  │
│  OUTPUT: /output/demand_analysis_*.json                          │
│          /output/narrative_analysis_*.json                       │
│          /output/content_gaps_*.json                             │
└─────────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────────┐
│           PHASE 3: PLANNING (Python Pipeline)                    │
├─────────────────────────────────────────────────────────────────┤
│                                                                  │
│  idea_combinator.py ──► Seed ideas (300+) × Modifiers (215+)   │
│                         Filters by pillar, archetype, compat    │
│                         Prioritizes by demand + gap scores       │
│                                                                  │
│  calendar_generator.py ──► 100-day content calendar             │
│                            Mon/Wed/Fri schedule                  │
│                            Balanced by pillar and audience       │
│                                                                  │
│  OUTPUT: /output/calendar.json                                   │
│          /output/100-day-calendar.md (Obsidian-ready)           │
│          /output/idea-briefs/*.md (per-video briefs)            │
└─────────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────────┐
│           PHASE 4: KNOWLEDGE BUILDING (Per Video)                │
├─────────────────────────────────────────────────────────────────┤
│                                                                  │
│  knowledge_pipeline.py ──► RAG + PubMed in parallel             │
│    ├─► RAG: Your textbooks/guidelines (AstraDB)                 │
│    └─► PubMed: Latest research (NCBI API)                       │
│                                                                  │
│  OUTPUT: Knowledge brief with citations                          │
└─────────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────────┐
│           PHASE 5: SCRIPT WRITING (This Skill - Opus)            │
├─────────────────────────────────────────────────────────────────┤
│                                                                  │
│  INPUTS:                                                         │
│  - calendar.json (which topic, why now)                         │
│  - content_gaps.json (opportunity type)                         │
│  - narrative_analysis.json (if debunk: which narrative)         │
│  - knowledge_brief (evidence for claims)                        │
│                                                                  │
│  APPLY:                                                          │
│  - Hinglish rules (70% Hindi / 30% English)                     │
│  - Script structure (hook → body → CTA)                         │
│  - Debunk protocol (if correction opportunity)                  │
│  - 6-point voice check                                          │
│                                                                  │
│  OUTPUT: Complete 15-30 min script in Hinglish                  │
└─────────────────────────────────────────────────────────────────┘

Using Research Engine Outputs

Step 1: Check the Content Calendar

# See next 5 topics to create
python calendar_generator.py --show-next 5

# Or read directly
cat /output/calendar.json | head -100

Each calendar entry includes:

  • seed_idea - The topic
  • modifier - The angle
  • gap_score - Why this is an opportunity
  • recommended_date - When to publish

Step 2: Check If Debunk Needed

# Get threat ranking of narratives
python analyzer/narrative_monitor.py --threats

# Generate debunk ideas
python analyzer/narrative_monitor.py --debunk

# Get response video ideas for high-reach misinformation
python analyzer/narrative_monitor.py --response

Output includes:

  • Which channels are promoting which narratives
  • View counts of misinformation videos
  • Pre-generated Hinglish hooks for debunk content
  • Matched seed ideas for counter-content

Step 3: Check Correction Opportunities

python analyzer/gap_finder.py --corrections

Returns high-reach misinformation videos with:

  • Video title and views
  • Narratives detected
  • Suggested correction format (direct_response, evidence_synthesis, gentle_correction, indian_context)

Step 4: Build Knowledge for Selected Topic

from rag_pipeline.src.knowledge_pipeline import KnowledgePipeline

pipeline = KnowledgePipeline(verbose=True)
brief = pipeline.synthesize_knowledge("Your selected topic")

Step 5: Write Script Using This Skill

With all data ready, apply the rules below.


35+ Tracked Channels (Data Source)

The research-engine tracks these channels in target_channels.json:

Competition (Hindi) - Differentiate/Monitor

  • Dr Navin Agrawal CARDIO CARE (300K+)
  • Cardiac Second Opinion (100K+)
  • SAAOL Heart Center (3.4M) - ANTI-PATTERN

Indian Mega Channels - Monitor/Differentiate

  • Fit Tuber (7M+)
  • Dr Vikas Bangar (1M+)
  • Satvic Movement (1M+)
  • Dr Biswaroop Roy Chowdhury (4M+) - CRITICAL ANTI-PATTERN

Inspiration (English) - Absorb Techniques

  • Peter Attia MD (1.5M+) - PRIMARY MODEL
  • York Cardiology (1M+)
  • Nutrition Made Simple (1.2M+)
  • The Proof with Simon Hill (1M+)
  • Dr Ford Brewer (700K+)
  • Medlife Crisis (1.5M+)

Belief Seeders - HIGH DEBUNK PRIORITY

  • Dr Eric Berg (11M+) - Keto, insulin primacy, statin fear
  • Dr Sten Ekberg (3.5M+) - Insulin, fasting
  • Dr Ken Berry (2.5M+) - Carnivore, LDL skepticism
  • Dr Mark Hyman (3M+) - Functional medicine
  • Dr Jason Fung (1M+) - Fasting
  • Dr Pradip Jamnadas (1M+) - Popular in Indian diaspora

8 Tracked Narratives (For Debunk Content)

The narrative_monitor.py tracks these dangerous beliefs:

NarrativeWhat They ClaimKey Channels
ldl_skepticism"LDL doesn't cause heart disease"Berg, Ekberg, Berry, Low Carb Down Under
statin_fear"Statins are dangerous/unnecessary"Berg, Berry, SAAOL, Satvic
insulin_primacy"Only insulin matters, not LDL"Ekberg, Fung, Jamnadas, Hyman
fasting_absolutism"Fasting cures/reverses everything"Fung, Jamnadas, DeLauer
supplement_superiority"Supplements > medications"Berg, Hyman, Huberman
seed_oil_villain"Seed oils cause heart disease"Berry, Saladino
exercise_compensation"Exercise reverses plaque"Various
fear_mongering"Doctors/pharma hide cures"Dr Biswaroop, SAAOL

When writing debunk content, use the Steelman-Then-Correct Protocol below.


Hinglish Language Rules

Word Choice Matrix

ContextUse HindiUse English
EmotionsDil, zindagi, takleef-
Medical terms-Cholesterol, BP, diabetes, LDL, HDL
ActionsSamjhiye, dekhiye, sochiye-
Data-80%, studies show, evidence
Body parts-Heart, arteries, blood
SeverityKhatarnak, seriousCritical, emergency

Ratio: 70% Hindi / 30% English (technical terms only)

Sentence Patterns

Explanation:

"Cholesterol do type ka hota hai - LDL jo 'bad cholesterol' hai, aur HDL jo 'good cholesterol' hai. LDL zyada ho toh arteries mein jam jaata hai..."

Evidence citation:

"2023 ki ek study, jisme 50,000 Indians the, usme paya gaya ki..."

Practical advice:

"Toh aap kya karein? Simple hai - daily 30 minute walk, dinner 8 baje se pehle, aur sodium kam..."

Transitions (Hindi)

  • Point to point: "Ab doosri baat...", "Teen number...", "Sabse zaroori baat..."
  • Contrast: "Lekin...", "Haan, magar...", "Yahan twist hai..."
  • Emphasis: "Dhyan se suniye...", "Yeh important hai...", "Yeh mat bhooliye..."
  • Story: "Ek patient ka case batata hoon...", "Mere saath kya hua..."

Script Structure (15-30 min videos)

HOOK (0:00 - 0:30)

Stop the scroll, create curiosity gap.

Patterns:

  • Surprising statistic: "80% Indians jo yeh karte hain, unhe heart disease ka risk double hai..."
  • Myth challenge: "Aapne suna hoga ki [belief]. Yeh galat hai. Main batata hoon kyun..."
  • Story open: "Ek patient aaye mere paas, 42 saal ke. Unka case aapki aankhen khol dega..."
  • Direct question: "Kya aap [common thing] karte ho? Yeh aapke dil ke liye kya kar raha hai?"

Rules:

  • NO "Namaste dosto" (boring, skippable)
  • First 5 seconds = most critical
  • Create information gap that MUST be filled

For Debunk Videos, narrative_monitor.py generates Hinglish hooks like:

  • "YouTube pe dekha ki LDL kharab nahi hai? Ek cardiologist ki sachai suniye..."
  • "Statin se darr lagta hai? Main aapka darr samajhta hoon. Ab evidence dekhte hain..."

INTRO + CREDIBILITY (0:30 - 2:00)

Establish authority, set expectations.

"Main Dr. Shailesh, interventional cardiologist. Pichhle 15 saalon mein hazaaron patients dekhe hain. Aaj main aapko woh bataunga jo main apne patients ko clinic mein batata hoon..."

BODY - Main Content (2:00 - 25:00)

Structure Options:

A. Listicle (3-5 points)

Point 1: [Setup → Evidence → Practical takeaway]
Transition: "Ab doosri baat..."
Point 2: [Setup → Evidence → Practical takeaway]
...

B. Story-driven

Patient case introduction
What happened (tension)
Medical explanation (education)
Resolution
Lessons learned

C. Myth-busting (Debunk Format)

State the myth clearly
Steelman: Why people believe it (from narrative_monitor data)
Evidence: What studies actually show (from knowledge_brief)
Nuance: The complete picture
What to do instead

Engagement Beats (every 3-4 minutes):

  • Question to viewer: "Aapko kya lagta hai?"
  • Surprising reveal: "Lekin yahan twist hai..."
  • Relatable moment: "Aap bhi soch rahe honge..."
  • Pattern interrupt: Change pace, tone, or visual cue

SUMMARY + CTA (25:00 - 30:00)

Summary:

  • Recap 3 key points (brief)
  • One sentence takeaway
  • "Agar sirf ek cheez yaad rakhni ho..."

CTA (choose one primary):

  • Subscribe: "Is channel pe aisi videos regularly aati hain..."
  • Comment: "Apna sawaal neeche likhiye, main jawab dunga..."
  • Share: "Kisi apne ko bhejiye jinke kaam aa sake..."

Steelman-Then-Correct Protocol (For Debunk Content)

Step 1: Find the Kernel of Truth

Every popular health belief contains something true. Find it.

BeliefKernel of Truth
"LDL doesn't matter"LDL alone isn't full picture; particle count, inflammation matter
"Statins are poison"Statins do have side effects; not everyone needs them
"Fasting cures everything"Fasting has metabolic benefits; caloric restriction helps
"Insulin is the real problem"Insulin resistance IS important; metabolic health matters

Step 2: Acknowledge Explicitly

Wrong:

"Yeh log galat hain. LDL clearly causes heart disease."

Right:

"Yeh belief kahan se aayi? Actually, ek valid point hai. LDL alone se poori picture nahi milti. ApoB, particle count, inflammation - sab matter karta hai. Lekin iska matlab yeh nahi ki LDL matter hi nahi karta..."

Step 3: Show the Logical Error

  • Oversimplification: "It's not that simple..."
  • Cherry-picking studies: "Jab hum ALL studies dekhte hain..."
  • Anecdote vs evidence: "Kuch logon ka experience aisa hai, but population level pe..."

Tone: Never Say / Instead Say

Never SayInstead Say
"Yeh log galat hain""Is approach mein ek problem hai"
"Bakwaas""Story itni simple nahi hai"
"Aap fool ban rahe ho""Partial truth hai, but..."
"Dangerous misinformation""Evidence kuch aur kehti hai"

6-Point Voice Check

Before delivering ANY script, verify all 6:

#CheckQuestion
1AuthorityWould Topol/Attia/Huberman say this in Hinglish?
2Domain ExpertSounds like cardiologist, NOT wellness guru?
3RigorWould pass as journal review (in English)?
4Accessibility7th grader in Delhi can follow?
5Non-PreachyExplaining, NOT sermonizing?
6Non-JudgmentalEvidence, NOT lifestyle shaming?

See voice-check.md for detailed criteria.


Evidence Citation Protocol

For Studies

"2023 mein European Heart Journal mein ek meta-analysis aayi - 200 studies, 20 lakh logon pe. Finding? [specific finding]..."

For Guidelines

"ESC guidelines - Europe ke top cardiologists - recommend karte hain ki [specific recommendation]. Kyun? Because evidence shows..."

For Clinical Experience

"Mere practice mein pichhle 15 saal mein, maine [X] cases dekhe hain jahan [observation]..."

Quick Reference: Data Files

FileLocationContains
Content calendar/output/calendar.jsonWhat to create and when
Demand analysis/output/demand_analysis_*.jsonWhat audience wants
Gap analysis/output/content_gaps_*.jsonWhere opportunities are
Narrative threats/output/narrative_analysis_*.jsonWhat to debunk
Seed ideas/data/seed-ideas.json300+ topic seeds
Modifiers/data/modifiers.json215+ content angles
Target channels/data/target_channels.json35+ tracked channels

Slash Commands

CommandPurpose
/research-and-script [topic]Full workflow: data → knowledge → script
/show-calendarView content calendar
/debunk-script [narrative]Write correction video
/idea-details [idea-id]Full research on specific idea

Deprecated Skills

This skill supersedes:

  • /.claude/skills/youtube-script-hinglish/skill.md - DEPRECATED
  • /.claude/skills/debunk-script-writer/skill.md - DEPRECATED
  • /.claude/skills/cardiology-youtube-scriptwriter/SKILL.md - DEPRECATED

Use this unified skill instead.


*This skill ensures every YouTube script is DATA-DRIVEN (from research-engine) + EVIDENCE-BASED (from RAG+PubMed) + AUTHENTIC (Hinglish voice with 6-point check).*

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.46%
按下载量换算82

OpenCode

25.29%
按下载量换算73

Antigravity

16.35%
按下载量换算47

Gemini CLI

11.68%
按下载量换算34

Codex

8.71%
按下载量换算25

windsurf

3.28%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills