start-clarification
Initiate project clarification by defining the project name and initial description to streamline the development process within the VibeCoding System.
Instructions
Start a project clarification process
Input Schema
Name | Required | Description | Default |
---|---|---|---|
initialDescription | No | Initial description of the project | |
projectName | Yes | The name of the project |
Input Schema (JSON Schema)
{
"properties": {
"initialDescription": {
"description": "Initial description of the project",
"type": "string"
},
"projectName": {
"description": "The name of the project",
"type": "string"
}
},
"required": [
"projectName"
],
"type": "object"
}