goalstory_update_step
Update step details such as name, completion status, evidence, and outcomes to track progress and insights effectively within a goal management system.
Instructions
Update step details including the name, completion status, evidence, and outcome. Use this to track progress and insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
evidence | No | Concrete proof or observations of step completion. | |
id | Yes | Unique identifier of the step to update. | |
name | No | Refined or clarified step description. | |
outcome | No | Results and impact achieved through completing this step. | |
status | No | Step completion status: 0 = pending/in progress, 1 = completed. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"evidence": {
"description": "Concrete proof or observations of step completion.",
"type": "string"
},
"id": {
"description": "Unique identifier of the step to update.",
"type": "string"
},
"name": {
"description": "Refined or clarified step description.",
"type": "string"
},
"outcome": {
"description": "Results and impact achieved through completing this step.",
"type": "string"
},
"status": {
"description": "Step completion status: 0 = pending/in progress, 1 = completed.",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}