name: query-memory description: 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.
Query Memory
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.
Input Contract
Read:
- the current question, claim, subgoal, or branch decision
- the specific type of prior artifact you want to recover
- the most relevant channel list, chosen from:
immediate_conclusionstoy_examplescounterexamplesfailed_pathsbranch_states
Procedure
- Form a concrete natural-language query describing the information you want to recover.
- Choose the smallest relevant list of channels instead of searching everything by default.
- Call
memory_search(problem_id, query, channels=..., limit_per_channel=...). - Inspect the top hits in each requested channel.
- Summarize the useful retrieved items and explain how they affect the current proof state.
- If no useful item is found, say that clearly and then switch to another appropriate skill.
Output Contract
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"
}
MCP Tools
memory_searchmemory_append
Failure Logging
If the retrieval is not useful, append an events record with:
event_type="query_memory_stalled"- the attempted query
- the channels searched
- the reason the retrieved items were not useful