graph TD
A[Start ListingCreator] --> B[Receive Input]
B --> C[extracted-data] & D[trademark-analysis]
C & D --> E[Silo 1: Trademark Interpretation]
E --> F[Use Skill #223]
F --> G[Generate Safe Keywords List]
G --> H[Silo 2: Rewrite Listing]
H --> I[Use Skill #190]
I --> J[Create New Listing Draft]
J --> K[Silo 3: Compliance Check]
K --> L[Use Skill #223]
L --> M[Generate Compliance Note]
M --> N[Silo 4: Combine & Return]
N --> O[Merge Listing Text + Note]
O --> P[Format as JSON]
P --> Q[Return Final Output]
subgraph Input Processing
B --> C
B --> D
end
subgraph Trademark Analysis
E --> F --> G
end
subgraph Content Creation
H --> I --> J
end
subgraph Compliance Verification
K --> L --> M
end
subgraph Output Formation
N --> O --> P --> Q
end