graph TD A[DeploymentPreparer Start] --> B[Collect Input Requirements] B --> C[Package.json Generation] B --> D[README.md Generation] B --> E[netlify.toml Generation] C --> F[Process Dependencies] C --> G[Configure Scripts] C --> H[Set Metadata] F & G & H --> I[Generate package.json] D --> J[Write Setup Steps] D --> K[Document Build Process] D --> L[Add Deployment Guide] J & K & L --> M[Generate README.md] E --> N[Define Build Settings] E --> O[Set Environment Variables] E --> P[Configure Deploy Context] N & O & P --> Q[Generate netlify.toml] I --> R[Validate package.json] M --> S[Validate README.md] Q --> T[Validate netlify.toml] R & S & T --> U[Combine Config Files] U --> V[Final deployment-config Bundle] style A fill:#f9f,stroke:#333 style V fill:#9f9,stroke:#333