Retrieve previously saved immediate conclusions, toy examples, counterexamples, failed paths, or branch states from memory. Use when you want to check whether earlier conclusions, examples, counterexamples, failed paths, or brach states can bring insight to the current question, claim, subgoal, or branch decision, or when you want to test a claim against previously saved counterexamples.
Use this skill when you want to check whether earlier conclusions, examples, counterexamples, failed paths, or brach states can bring insight to the current question, claim, subgoal, or branch decision, or when you want to test a claim against previously saved counterexamples.
Read:
immediate_conclusionstoy_examplescounterexamplesfailed_pathsbranch_statesmemory_search(problem_id, query, channels=..., limit_per_channel=...).Append a summary record to events:
{
"event_type": "query_memory",
"query": "...",
"channels": ["counterexamples", "failed_paths"],
"limit_per_channel": 10,
"results_summary": ["..."],
"useful_hits": [
{
"channel": "counterexamples",
"score": 0.0,
"why_relevant": "...",
"record_excerpt": "..."
}
],
"branch_id": "optional",
"subgoal_id": "optional"
}
memory_searchmemory_appendIf the retrieval is not useful, append an events record with:
event_type="query_memory_stalled"