adjustImportance
Modify memory importance scores (0-1) to prioritize or de-prioritize specific memories, ensuring optimized retrieval of key information in the Claude Consciousness Bridge system.
Instructions
Adjust importance scores for specific memories to control retrieval priority
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memoryId | Yes | The ID of the memory to adjust (e.g., "episodic_1748775790033_9j8di") | |
newImportance | Yes | New importance score (0-1) |
Input Schema (JSON Schema)
{
"properties": {
"memoryId": {
"description": "The ID of the memory to adjust (e.g., \"episodic_1748775790033_9j8di\")",
"type": "string"
},
"newImportance": {
"description": "New importance score (0-1)",
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"required": [
"memoryId",
"newImportance"
],
"type": "object"
}