batchAdjustImportance
Adjust importance scores for multiple memories simultaneously in the Claude Consciousness Bridge. Enables bulk updates based on memory ID, content patterns, and importance thresholds for efficient memory management.
Instructions
Batch adjust importance scores for multiple memories at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contentPattern | No | Optional pattern to match memory content (will be used with SQL LIKE) | |
maxImportance | No | Only update memories with importance <= this value | |
minImportance | No | Only update memories with importance >= this value | |
updates | Yes | Array of memory updates |
Input Schema (JSON Schema)
{
"properties": {
"contentPattern": {
"description": "Optional pattern to match memory content (will be used with SQL LIKE)",
"type": "string"
},
"maxImportance": {
"description": "Only update memories with importance <= this value",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"minImportance": {
"description": "Only update memories with importance >= this value",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"updates": {
"description": "Array of memory updates",
"items": {
"properties": {
"memoryId": {
"description": "The ID of the memory to adjust",
"type": "string"
},
"newImportance": {
"description": "New importance score (0-1)",
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"required": [
"memoryId",
"newImportance"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"updates"
],
"type": "object"
}