storeRequirement
Store project requirements in long-term memory with title, content, importance level, and optional metadata to maintain persistent context awareness across sessions.
Instructions
Stores a project requirement in the long-term memory
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| content | Yes | Content of the requirement | |
| importance | No | Importance level (low, medium, high) | medium | 
| metadata | No | Optional metadata for the requirement | |
| title | Yes | Title of the requirement | 
Input Schema (JSON Schema)
{
  "properties": {
    "content": {
      "description": "Content of the requirement",
      "type": "string"
    },
    "importance": {
      "default": "medium",
      "description": "Importance level (low, medium, high)",
      "type": "string"
    },
    "metadata": {
      "additionalProperties": true,
      "description": "Optional metadata for the requirement",
      "type": "object"
    },
    "title": {
      "description": "Title of the requirement",
      "type": "string"
    }
  },
  "required": [
    "title",
    "content"
  ],
  "type": "object"
}