storeMilestone
Captures and stores project milestones with titles, descriptions, and importance levels for long-term memory retention, enhancing AI assistant recall and decision-making.
Instructions
Stores a project milestone in the long-term memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | Description of the milestone | |
importance | No | Importance level (low, medium, high) | medium |
metadata | No | Optional metadata for the milestone | |
title | Yes | Title of the milestone |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the milestone",
"type": "string"
},
"importance": {
"default": "medium",
"description": "Importance level (low, medium, high)",
"type": "string"
},
"metadata": {
"additionalProperties": true,
"description": "Optional metadata for the milestone",
"type": "object"
},
"title": {
"description": "Title of the milestone",
"type": "string"
}
},
"required": [
"title",
"description"
],
"type": "object"
}