graph TD
A[Start WP Plugin Builder] --> B[SILO 1: Prepare Prompt]
B --> C1[Gather Plugin Metadata]
B --> C2[Collect File References]
B --> C3[Define Integration Method]
C1 --> |plugin name| D[Compile Prompt]
C1 --> |version| D
C1 --> |author| D
C1 --> |description| D
C2 --> |chatbot.js path| D
C2 --> |chatbot.css path| D
C2 --> |config.json path| D
C3 --> |footer/shortcode| D
D --> E[SILO 2: Generate plugin.php]
E --> F[Call Skill #223]
F --> G[Generate Plugin Header]
F --> H[Create Asset Enqueue]
F --> I[Add Container Logic]
G --> J[SILO 3: Return Final File]
H --> J
I --> J
J --> K[Output plugin.php]
K --> L[End WP Plugin Builder]