storeMilestone
Capture and store project milestones in long-term memory with title, description, and importance level to maintain persistent context awareness across sessions.
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"
}