create_phase
Define and initiate a new phase within a structured workflow for LLM-based coding projects, ensuring clear feature identification, detailed documentation, and organized implementation on the Vibe-Coder MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | ||
featureId | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"minLength": 1,
"type": "string"
},
"featureId": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
}
},
"required": [
"featureId",
"name",
"description"
],
"type": "object"
}