build_from_blueprint
Generate a complete WPZylos plugin from a blueprint specification, producing all files: models, migrations, controllers, routes, providers, views, and config.
Instructions
Generate an ENTIRE WPZylos plugin from a comprehensive blueprint specification. Produces all files: entry, bootstrap, PluginContext, models, controllers, migrations, routes, providers, views, and config. The ultimate one-shot generation tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Plugin name (e.g., "WP Contact Manager") | |
| slug | Yes | Plugin slug (e.g., "wp-contact-manager") | |
| namespace | Yes | Root PHP namespace (e.g., "WPContactManager") | |
| prefix | Yes | Hook/option prefix (e.g., "wpcm") | |
| textDomain | Yes | Text domain (e.g., "wp-contact-manager") | |
| description | No | Plugin description | |
| author | No | Author name | |
| models | No | Database models to generate | |
| migrations | No | Database migrations to generate | |
| controllers | No | Controllers to generate | |
| providers | No | Service provider names (e.g., ["AppServiceProvider", "RouteServiceProvider"]) | |
| routes | No | Route definitions | |
| adminPages | No | Admin pages to register |