graph TD
A[Start: Receive anaglyph-designs-output] -->|Contains image URLs| B[Image Processing Phase]
subgraph Silo 1: Resize & Format
B --> C[Skill #191: Resize Image]
C -->|Process each image| D[Resize to 5400x7200 px]
D -->|Generate| E[Print-ready PNG files]
end
subgraph Silo 2: Summarize Output
E -->|Input URLs| F[Skill #223: Format JSON]
F -->|Structure data| G[Create JSON array]
G -->|Validate| H[Final JSON output]
end
H --> I[End: print-ready-images-output]
style A fill:#f9f,stroke:#333
style I fill:#f9f,stroke:#333
style B fill:#ddf,stroke:#333
style F fill:#ddf,stroke:#333