storeDecision
Save project decisions, including title, content, reasoning, and importance level, to the Cursor10x Memory System for long-term storage and easy retrieval.
Instructions
Stores a project decision in the long-term memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the decision | |
importance | No | Importance level (low, medium, high) | medium |
metadata | No | Optional metadata for the decision | |
reasoning | No | Reasoning behind the decision | |
title | Yes | Title of the decision |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content of the decision",
"type": "string"
},
"importance": {
"default": "medium",
"description": "Importance level (low, medium, high)",
"type": "string"
},
"metadata": {
"additionalProperties": true,
"description": "Optional metadata for the decision",
"type": "object"
},
"reasoning": {
"description": "Reasoning behind the decision",
"type": "string"
},
"title": {
"description": "Title of the decision",
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}