get_next_phase_action
Determines the next step in the coding workflow by analyzing the current feature, enabling structured development and progress tracking for LLM-based projects.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
featureId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"featureId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"featureId"
],
"type": "object"
}