plugins/_memory/prompts/agent.system.tool.memory.md
use when durable recall or storage is useful
memory_load: args query, optional threshold, limit, filtermemory_save: args text, optional area and metadata kwargsmemory_delete: arg ids comma-separated idsmemory_forget: args query, optional threshold, filternotes:
threshold is similarity from 0 to 1filter is a metadata expression (e.g. area=='main')memory_forget also cleans exact matches and derived fragment/solution records related to removed memoriesmemory_save for stable current facts, not short-lived test markers, greetings, or one-off conversation eventsexample:
{
"thoughts": ["I should search memory for relevant prior guidance."],
"headline": "Loading related memories",
"tool_name": "memory_load",
"tool_args": {
"query": "tool argument format",
"threshold": 0.7,
"limit": 3
}
}