graph TD
A[Start] --> B[Chatbot Configurator]
B --> C[Product Data Compiler]
C --> D[Personality Mapping Builder]
D --> E[Affiliate Integration Agent]
E --> F[Final Chatbot]
subgraph Product Data Compiler
C1[Research Keto Merch] --> C2[Compile Product List]
C2 --> C3[Format JSON Data]
C3 --> C4[Generate keto_merch_data.json]
end
subgraph Chatbot Configurator
B1[Define Conversation Flow] --> B2[Set Greeting Logic]
B2 --> B3[Create Quiz Structure]
B3 --> B4[Set Response Rules]
B4 --> B5[Generate chatbot-config.json]
end
subgraph Personality Mapping Builder
D1[Define Personality Types] --> D2[Create Product Mappings]
D2 --> D3[Link Quiz Outcomes]
D3 --> D4[Generate personality_mapping.json]
end
subgraph Affiliate Integration Agent
E1[Load Config Files] --> E2[Insert Affiliate Link]
E2 --> E3[Update Flow Logic]
E3 --> E4[Generate Final Config]
end