get_plugin_scaffold_template
Generate a plugin scaffold template for Backstage with specified type, name, and optional features to accelerate plugin development.
Instructions
Generate a plugin scaffold template with specified configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
features | No | Features to include in the plugin | |
pluginName | Yes | Name of the plugin | |
pluginType | Yes | Type of plugin to scaffold |
Input Schema (JSON Schema)
{
"properties": {
"features": {
"description": "Features to include in the plugin",
"items": {
"enum": [
"routing",
"api-client",
"entity-provider",
"scaffolder-action",
"search-collator"
],
"type": "string"
},
"type": "array"
},
"pluginName": {
"description": "Name of the plugin",
"type": "string"
},
"pluginType": {
"description": "Type of plugin to scaffold",
"enum": [
"frontend",
"backend",
"fullstack",
"common"
],
"type": "string"
}
},
"required": [
"pluginType",
"pluginName"
],
"type": "object"
}