promote_memory
Move high-value or frequently used memories to permanent long-term storage like Obsidian vaults, with options for automatic detection and preview mode.
Instructions
Promote high-value memories to long-term storage.
Memories with high scores or frequent usage are promoted to the Obsidian
vault (or other long-term storage) where they become permanent.
Args:
memory_id: Specific memory ID to promote.
auto_detect: Automatically detect promotion candidates.
dry_run: Preview what would be promoted without promoting.
target: Target for promotion (default: "obsidian").
force: Force promotion even if criteria not met.
Returns:
List of promoted memories and promotion statistics.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
auto_detect | No | ||
dry_run | No | ||
force | No | ||
memory_id | No | ||
target | No | obsidian |
Input Schema (JSON Schema)
{
"properties": {
"auto_detect": {
"default": false,
"title": "Auto Detect",
"type": "boolean"
},
"dry_run": {
"default": false,
"title": "Dry Run",
"type": "boolean"
},
"force": {
"default": false,
"title": "Force",
"type": "boolean"
},
"memory_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Memory Id"
},
"target": {
"default": "obsidian",
"title": "Target",
"type": "string"
}
},
"type": "object"
}