graph TD
A[Start: 30-Day Real Estate Content Pack Task]
B[CaptionCrafter]
C[ImageForge]
D[CopyMaster]
E[VideoSmith]
F[PackagerPro]
Z[Final ZIP Output]
A --> B
A --> C
A --> D
A --> E
B -->|Captions_and_Keywords.csv| F
C -->|30 PNGs + manifest| F
C -->|Selected Images| E
D -->|copy_bundle.yaml| F
E -->|Video Assets + manifest| F
F --> Z
subgraph CaptionCrafter Process
B1[GPT-4.1: Generate 30 Captions]
B2[Save CSV File]
B1 --> B2
end
subgraph ImageForge Process
C1[Leonardo: Generate 30 Images]
C2[Create Image Manifest]
C1 --> C2
end
subgraph CopyMaster Process
D1[GPT-4.1: Generate Copy Bundle]
D2[Save YAML File]
D1 --> D2
end
subgraph VideoSmith Process
E1[GPT-4.1: Write Script]
E2[Generate Voice-Over]
E3[Create Video]
E4[Create Video Manifest]
E1 --> E2
E2 --> E3
E3 --> E4
end
subgraph PackagerPro Process
F1[Create ReadMe]
F2[Build PDF Guide]
F3[Split Copy Bundle]
F4[Assemble Directory]
F5[Create Final ZIP]
F1 --> F4
F2 --> F4
F3 --> F4
F4 --> F5
end