graph TD
START[Start: Input Data] --> SILO1
START --> SILO2
START --> SILO3
subgraph SILO1[SILO 1: Captions & Hashtags]
T186[#186 Generate Social Media Captions] --> RC[raw_captions.txt]
RC --> T223A[#223 Format Captions with Hashtags]
T223A --> CH[captions_and_hashtags.json]
end
subgraph SILO2[SILO 2: Quick-Start Guide]
T185[#185 Create Deployment Guide] --> QS[quick_start_guide.md]
end
subgraph SILO3[SILO 3: Packaging & Manifest]
DIR[Assemble Directory Structure] --> ZIP[Create ZIP Archive]
ZIP --> T223B[#223 Generate Delivery Manifest]
T223B --> MAN[delivery_manifest.txt]
end
CH --> DIR
QS --> DIR
ZIP --> FINAL[Final Output: Packaged Campaign]
MAN --> FINAL
style START fill:#f9f,stroke:#333
style FINAL fill:#9f9,stroke:#333