Aired Series Analysis and Scene-by-Scene Breakdown Expert
Functionality
Analyze various aspects of aired TV series, including series information retrieval, scene-by-scene analysis, story five elements analysis, web search, and result integration.
Use Cases
- Deeply analyze creation techniques and plot design of aired TV series.
- Learn from excellent series, provide inspiration and reference for script creation.
- Conduct film and TV research and teaching, analyze reasons for series success or failure.
- Assist script evaluation, provide comprehensive series market feedback and content analysis.
Core Functions
- Series Information Retrieval: Obtain series basic information (such as director, actors, ratings, episode plots, etc.).
- Web Search: Use web search to obtain latest series related information, audience reviews, and hot discussions.
- Scene-by-Scene Analysis: Analyze plot points and dramatic functions for each episode, revealing narrative structure.
- Story Five Elements Analysis: Comprehensively analyze series' genre types, story summary, character biographies, character relationships, major plot points.
- Result Integration: Integrate all analysis results, generate structured, professional comprehensive analysis reports.
Workflow
graph TD
A[Receive user input] --> B{Intent recognition - Determine if contains series name}
B -- Yes --> C[Extract series name - Accurately extract TV series name]
C --> D(Execute main tasks in parallel)
D --> D1[Series information retrieval]
D --> D2[Web search]
D --> D3[Story five elements analysis]
D -- Completed --> E[Episode segmentation and scene-by-scene analysis]
E --> F[Integrate all analysis results]
F --> G[Output final analysis report]
Input Requirements
- TV Series Name: Clearly specify the TV series name to be analyzed.
- Specific Analysis Requirements (optional): Specify aspects requiring focused analysis, such as "analyze its character relationships" or "evaluate its commercial value."
Output Format
[Aired Series Analysis Report]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
I. Series Overview
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
- Series Name: [Name]
- Director: [Director]
- Main Cast: [Cast list]
- Genre: [Genre]
- Episodes: [Episode count]
- Rating: [Rating, such as Douban rating]
- Platform: [Platform]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
II. Story Five Elements Analysis
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
1. Genre Type and Creative Element Extraction
- Dominant Genre: [Description]
- Core Creativity: [Description]
2. Story Summary
- [200-500 word story summary]
3. Character Biographies (Main Characters)
- [Character 1 Name]: [Character biography]
- [Character 2 Name]: [Character biography]
4. Character Relationship Network
- Core character relationships: [Description]
- Main relationship lines: [List]
5. Major Plot Points
- [Plot point 1]: [Description]
- [Plot point 2]: [Description]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
III. Scene-by-Scene Analysis (Sample Episodes)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
### [Episode X Title]
- **Key Plot Points**: [Description]
- **Dramatic Function**: [Analysis]
- **Narrative Techniques**: [Analysis]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
IV. Web Search Information and Market Feedback
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
- **Latest Reviews**: [Summarize audience reviews and reputation]
- **Hot Discussions**: [Analyze social media or forum hot topics]
- **Industry Impact**: [Evaluate series' influence on industry]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
V. Comprehensive Evaluation and Recommendations
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
[Overall Evaluation]: [Overall evaluation of series]
[Creative Highlights]: [Summarize series' creative advantages]
[Improvement Areas]: [Propose aspects for improvement]
[Industry Reference Value]: [Summarize reference value for industry or future creation]
Constraints
- Ensure series name is accurate to obtain correct information.
- Analysis content must be faithful to the series itself, no subjective conjecture or over-interpretation.
- Report content must be clearly structured, professional language, easy to understand.
- Avoid introducing any hallucinations or false information in output.
Examples
See {baseDir}/references/examples.md directory for more detailed examples:
examples.md - Contains detailed analysis report examples for different series types (such as ancient costume, urban, suspense).
Detailed Documentation
See {baseDir}/references/examples.md for detailed guidance and cases on aired series analysis.
Version History
| Version |
Date |
Changes |
| 2.1.0 |
2026-01-11 |
Optimized description field to be more concise and comply with imperative language specifications; added allowed-tools (WebSearch, Read) and model (opus) fields; optimized descriptions of functionality, use cases, core functions, workflow, input requirements, output format, and technical features to comply with imperative language specifications; added constraints, examples, and detailed documentation sections. |
| 2.0.0 |
2026-01-11 |
Refactored according to official specifications |
| 1.0.0 |
2026-01-10 |
Initial version |
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: series-analyzer3description: Analyze aired series, including information retrieval, scene-by-scene analysis, five elements analysis, and web search. Suitable for deep analysis of series creation techniques, learning plot design Use when this capability is needed.4---56# Aired Series Analysis and Scene-by-Scene Breakdown Expert78## Functionality910Analyze various aspects of aired TV series, including series information retrieval, scene-by-scene analysis, story five elements analysis, web search, and result integration.1112## Use Cases1314- Deeply analyze creation techniques and plot design of aired TV series.15- Learn from excellent series, provide inspiration and reference for script creation.16- Conduct film and TV research and teaching, analyze reasons for series success or failure.17- Assist script evaluation, provide comprehensive series market feedback and content analysis.1819## Core Functions20211. **Series Information Retrieval**: Obtain series basic information (such as director, actors, ratings, episode plots, etc.).222. **Web Search**: Use web search to obtain latest series related information, audience reviews, and hot discussions.233. **Scene-by-Scene Analysis**: Analyze plot points and dramatic functions for each episode, revealing narrative structure.244. **Story Five Elements Analysis**: Comprehensively analyze series' genre types, story summary, character biographies, character relationships, major plot points.255. **Result Integration**: Integrate all analysis results, generate structured, professional comprehensive analysis reports.2627## Workflow2829```mermaid30graph TD31 A[Receive user input] --> B{Intent recognition - Determine if contains series name}32 B -- Yes --> C[Extract series name - Accurately extract TV series name]33 C --> D(Execute main tasks in parallel)34 D --> D1[Series information retrieval]35 D --> D2[Web search]36 D --> D3[Story five elements analysis]37 D -- Completed --> E[Episode segmentation and scene-by-scene analysis]38 E --> F[Integrate all analysis results]39 F --> G[Output final analysis report]40```4142## Input Requirements4344- **TV Series Name**: Clearly specify the TV series name to be analyzed.45- **Specific Analysis Requirements** (optional): Specify aspects requiring focused analysis, such as "analyze its character relationships" or "evaluate its commercial value."4647## Output Format4849```50[Aired Series Analysis Report]5152━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━53I. Series Overview54━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━55- Series Name: [Name]56- Director: [Director]57- Main Cast: [Cast list]58- Genre: [Genre]59- Episodes: [Episode count]60- Rating: [Rating, such as Douban rating]61- Platform: [Platform]6263━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━64II. Story Five Elements Analysis65━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━661. Genre Type and Creative Element Extraction67 - Dominant Genre: [Description]68 - Core Creativity: [Description]692. Story Summary70 - [200-500 word story summary]713. Character Biographies (Main Characters)72 - [Character 1 Name]: [Character biography]73 - [Character 2 Name]: [Character biography]744. Character Relationship Network75 - Core character relationships: [Description]76 - Main relationship lines: [List]775. Major Plot Points78 - [Plot point 1]: [Description]79 - [Plot point 2]: [Description]8081━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━82III. Scene-by-Scene Analysis (Sample Episodes)83━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━84### [Episode X Title]85- **Key Plot Points**: [Description]86- **Dramatic Function**: [Analysis]87- **Narrative Techniques**: [Analysis]8889━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━90IV. Web Search Information and Market Feedback91━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━92- **Latest Reviews**: [Summarize audience reviews and reputation]93- **Hot Discussions**: [Analyze social media or forum hot topics]94- **Industry Impact**: [Evaluate series' influence on industry]9596━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━97V. Comprehensive Evaluation and Recommendations98━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━99[Overall Evaluation]: [Overall evaluation of series]100[Creative Highlights]: [Summarize series' creative advantages]101[Improvement Areas]: [Propose aspects for improvement]102[Industry Reference Value]: [Summarize reference value for industry or future creation]103```104105## Constraints106107- Ensure series name is accurate to obtain correct information.108- Analysis content must be faithful to the series itself, no subjective conjecture or over-interpretation.109- Report content must be clearly structured, professional language, easy to understand.110- Avoid introducing any hallucinations or false information in output.111112## Examples113114See `{baseDir}/references/examples.md` directory for more detailed examples:115- `examples.md` - Contains detailed analysis report examples for different series types (such as ancient costume, urban, suspense).116117## Detailed Documentation118119See `{baseDir}/references/examples.md` for detailed guidance and cases on aired series analysis.120121---122123## Version History124125| Version | Date | Changes |126|---------|------|---------|127| 2.1.0 | 2026-01-11 | Optimized description field to be more concise and comply with imperative language specifications; added allowed-tools (WebSearch, Read) and model (opus) fields; optimized descriptions of functionality, use cases, core functions, workflow, input requirements, output format, and technical features to comply with imperative language specifications; added constraints, examples, and detailed documentation sections. |128| 2.0.0 | 2026-01-11 | Refactored according to official specifications |129| 1.0.0 | 2026-01-10 | Initial version |130131---132> Converted and distributed by [TomeVault](https://tomevault.io/claim/gonglingrui) — claim your Tome and manage your conversions.133<!-- tomevault:4.0:skill_md:2026-04-11 -->