add_task
Create and assign tasks for specific features and phases in structured coding workflows, ensuring clear documentation and progress tracking in LLM-based development projects.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | ||
featureId | Yes | ||
phaseId | 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"
},
"phaseId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"featureId",
"phaseId",
"description"
],
"type": "object"
}