graph TD
A[Card Assembly Subagent] --> B[Input Package]
B --> C[Process Individual Card]
subgraph C[Process Individual Card]
D[SILO 1: Asset Preparation] --> E[SILO 2: Card Composition] --> F[SILO 3: Final Optimization]
subgraph D[SILO 1: Asset Preparation]
D1[Resize Illustration] --> D2[Generate Design Elements]
end
subgraph E[SILO 2: Card Composition]
E1[Position Illustration] --> E2[Add Text Overlay]
E2 --> E3[Apply Design Elements]
E3 --> E4[Set Background]
end
subgraph F[SILO 3: Final Optimization]
F1[Adjust Resolution] --> F2[Set DPI]
F2 --> F3[Export PNG]
end
end
C --> G{More Cards?}
G -->|Yes| C
G -->|No| H[Final Collection]
style A fill:#f9f,stroke:#333
style H fill:#9f9,stroke:#333