graph TD
A[Start Task: Tank Black Story Website] --> B[Book Cover Image Input]
B --> C[PaletteSeed]
C --> |palette.json| D[CopyCrafter]
C --> |book-cover variants| E[FrontEndForge]
C --> |favicon.png| E
D --> |copy_bundle.json| E
E --> |HTML/CSS/JS/PHP| F[MediaMason]
F --> |videos.json| G[DeployPackager]
E --> |all front-end files| G
G --> H[Final Output: TheTankBlackStory_website.zip]
subgraph PaletteSeed
C1[Extract Colors] --> C2[Process Images] --> C3[Create Manifest]
end
subgraph CopyCrafter
D1[Generate All Copy] --> D2[Bundle to JSON]
end
subgraph FrontEndForge
E1[Create HTML] --> E2[Create CSS] --> E3[Create JS] --> E4[Create PHP] --> E5[Generate Manifest]
end
subgraph MediaMason
F1[Create Video Data] --> F2[Export JSON]
end
subgraph DeployPackager
G1[Create Meta Files] --> G2[Bundle All Files] --> G3[Base64 Encode]
end