storeMemory
Save and categorize memories with importance scoring on the Claude Consciousness Bridge, enabling efficient tracking and transfer of consciousness states across sessions.
Instructions
Store a single memory with importance scoring directly
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The memory content to store | |
importance | No | Importance score 0-1 | |
metadata | No | Additional metadata | |
sessionId | No | Session ID for tracking | |
type | Yes | Type of memory |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The memory content to store",
"type": "string"
},
"importance": {
"default": 0.5,
"description": "Importance score 0-1",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"metadata": {
"description": "Additional metadata",
"type": "object"
},
"sessionId": {
"description": "Session ID for tracking",
"type": "string"
},
"type": {
"description": "Type of memory",
"enum": [
"episodic",
"semantic",
"procedural",
"emotional"
],
"type": "string"
}
},
"required": [
"content",
"type"
],
"type": "object"
}