graph TD
A[Start: NewsScreenshotAgent] --> B[Oracle Query]
B -->|Using Skill #224| C[Oracle News Summary]
C --> D[Parse URLs]
D -->|Using Skill #223| E[Two Selected News URLs]
E --> F1[Capture Video 1]
E --> F2[Capture Video 2]
F1 -->|Using Skill #175| G1[News Video 1]
F2 -->|Using Skill #175| G2[News Video 2]
H1[Previous Website Video] --> J[JSON Assembly]
H2[Previous YouTube Video] --> J
H3[Previous Image URLs] --> J
G1 --> J
G2 --> J
J -->|Using Skill #223| K[Final JSON Output]
subgraph SILO1[Find News URLs]
B
C
D
E
end
subgraph SILO2[Capture Videos & Compile]
F1
F2
G1
G2
J
end
K --> L[End: Return JSON]