generate_project_starter
Create a new project using predefined templates like FastAPI or React-Vite; specify a project name and template to generate a structured starter project.
Instructions
Generates a starter project from a template (e.g., 'fastapi', 'react-vite').
Args:
project_name: The name for the new project directory.
template: The project template to use.
Returns:
A summary of the created project structure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_name | Yes | ||
template | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_name": {
"title": "Project Name",
"type": "string"
},
"template": {
"title": "Template",
"type": "string"
}
},
"required": [
"project_name",
"template"
],
"title": "generate_project_starterArguments",
"type": "object"
}