graph TD
A[Start] --> B[Initialize Workflow]
B --> C[GreetingComposerAgent]
B --> D[FactFinderAgent]
B --> E[ObjectionAndCloseAgent]
C --> F[Generate Greeting]
F --> G[Add Name Reference]
G --> H[Add Day Acknowledgment]
H --> I[Format Greeting Snippet]
D --> J[Create Fact-Finding Questions]
J --> K[Add Value Statements]
K --> L[Format Questions Snippet]
E --> M[List Common Objections]
M --> N[Generate Responses]
N --> O[Create Closing Statement]
O --> P[Format Objections Snippet]
I --> Q[ScriptAssemblerAgent]
L --> Q
P --> Q
Q --> R[Combine All Snippets]
R --> S[Add Natural Language Elements]
S --> T[Format Final Script]
T --> U[Output max_system_prompt.txt]
U --> V[End]