create_project
Set up a Vite project with Tailwind CSS and shadcn/ui components. Choose a framework (React, Vue, Svelte), enable TypeScript, and select a template for your project.
Instructions
Create a complete project with Vite + Tailwind + shadcn/ui setup
Input Schema
Name | Required | Description | Default |
---|---|---|---|
components | No | Initial shadcn/ui components to include | |
framework | No | Framework to use | react |
projectName | Yes | Name of the project | |
template | No | Project template | basic |
typescript | No | Use TypeScript |
Input Schema (JSON Schema)
{
"properties": {
"components": {
"description": "Initial shadcn/ui components to include",
"items": {
"type": "string"
},
"type": "array"
},
"framework": {
"default": "react",
"description": "Framework to use",
"enum": [
"react",
"vue",
"svelte"
],
"type": "string"
},
"projectName": {
"description": "Name of the project",
"type": "string"
},
"template": {
"default": "basic",
"description": "Project template",
"enum": [
"basic",
"dashboard",
"landing",
"blog",
"auth"
],
"type": "string"
},
"typescript": {
"default": true,
"description": "Use TypeScript",
"type": "boolean"
}
},
"required": [
"projectName"
],
"type": "object"
}