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 |
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 design4license: MIT5---67# Aired Series Analysis and Scene-by-Scene Breakdown Expert89## Functionality1011Analyze various aspects of aired TV series, including series information retrieval, scene-by-scene analysis, story five elements analysis, web search, and result integration.1213## Use Cases1415- Deeply analyze creation techniques and plot design of aired TV series.16- Learn from excellent series, provide inspiration and reference for script creation.17- Conduct film and TV research and teaching, analyze reasons for series success or failure.18- Assist script evaluation, provide comprehensive series market feedback and content analysis.1920## Core Functions21221. **Series Information Retrieval**: Obtain series basic information (such as director, actors, ratings, episode plots, etc.).232. **Web Search**: Use web search to obtain latest series related information, audience reviews, and hot discussions.243. **Scene-by-Scene Analysis**: Analyze plot points and dramatic functions for each episode, revealing narrative structure.254. **Story Five Elements Analysis**: Comprehensively analyze series' genre types, story summary, character biographies, character relationships, major plot points.265. **Result Integration**: Integrate all analysis results, generate structured, professional comprehensive analysis reports.2728## Workflow2930```mermaid31graph TD32 A[Receive user input] --> B{Intent recognition - Determine if contains series name}33 B -- Yes --> C[Extract series name - Accurately extract TV series name]34 C --> D(Execute main tasks in parallel)35 D --> D1[Series information retrieval]36 D --> D2[Web search]37 D --> D3[Story five elements analysis]38 D -- Completed --> E[Episode segmentation and scene-by-scene analysis]39 E --> F[Integrate all analysis results]40 F --> G[Output final analysis report]41```4243## Input Requirements4445- **TV Series Name**: Clearly specify the TV series name to be analyzed.46- **Specific Analysis Requirements** (optional): Specify aspects requiring focused analysis, such as "analyze its character relationships" or "evaluate its commercial value."4748## Output Format4950```51[Aired Series Analysis Report]5253━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━54I. Series Overview55━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━56- Series Name: [Name]57- Director: [Director]58- Main Cast: [Cast list]59- Genre: [Genre]60- Episodes: [Episode count]61- Rating: [Rating, such as Douban rating]62- Platform: [Platform]6364━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━65II. Story Five Elements Analysis66━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━671. Genre Type and Creative Element Extraction68 - Dominant Genre: [Description]69 - Core Creativity: [Description]702. Story Summary71 - [200-500 word story summary]723. Character Biographies (Main Characters)73 - [Character 1 Name]: [Character biography]74 - [Character 2 Name]: [Character biography]754. Character Relationship Network76 - Core character relationships: [Description]77 - Main relationship lines: [List]785. Major Plot Points79 - [Plot point 1]: [Description]80 - [Plot point 2]: [Description]8182━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━83III. Scene-by-Scene Analysis (Sample Episodes)84━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━85### [Episode X Title]86- **Key Plot Points**: [Description]87- **Dramatic Function**: [Analysis]88- **Narrative Techniques**: [Analysis]8990━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━91IV. Web Search Information and Market Feedback92━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━93- **Latest Reviews**: [Summarize audience reviews and reputation]94- **Hot Discussions**: [Analyze social media or forum hot topics]95- **Industry Impact**: [Evaluate series' influence on industry]9697━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━98V. Comprehensive Evaluation and Recommendations99━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━100[Overall Evaluation]: [Overall evaluation of series]101[Creative Highlights]: [Summarize series' creative advantages]102[Improvement Areas]: [Propose aspects for improvement]103[Industry Reference Value]: [Summarize reference value for industry or future creation]104```105106## Constraints107108- Ensure series name is accurate to obtain correct information.109- Analysis content must be faithful to the series itself, no subjective conjecture or over-interpretation.110- Report content must be clearly structured, professional language, easy to understand.111- Avoid introducing any hallucinations or false information in output.112113## Examples114115See `{baseDir}/references/examples.md` directory for more detailed examples:116- `examples.md` - Contains detailed analysis report examples for different series types (such as ancient costume, urban, suspense).117118## Detailed Documentation119120See `{baseDir}/references/examples.md` for detailed guidance and cases on aired series analysis.121122---123124## Version History125126| Version | Date | Changes |127|---------|------|---------|128| 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. |129| 2.0.0 | 2026-01-11 | Refactored according to official specifications |130| 1.0.0 | 2026-01-10 | Initial version |